|
@@ -138,7 +138,6 @@ class Timedtask
|
|
|
set_time_limit(0);
|
|
|
$member = Db::name('store_member')
|
|
|
->where('is_pid','>',0)
|
|
|
- ->where('spoofing', '=', 0)
|
|
|
->where('accountName', 'neq', 18888888888)
|
|
|
//->whereNull('wallet_address')
|
|
|
->field('id,is_pid')
|
|
@@ -166,7 +165,7 @@ class Timedtask
|
|
|
->limit(1000)
|
|
|
->select();
|
|
|
foreach ($member as &$v) {
|
|
|
- Db::name('store_ceshi')->where('id', $v['id'])->update(['spoofing' => 666]);
|
|
|
+ Db::name('store_member')->where('id', $v['id'])->update(['spoofing' => 666]);
|
|
|
if (Db::name('store_order_info')->where('mid', $v['id'])->where('is_destruction', '=', 1)->count()) {
|
|
|
if ($v['is_pid'] > 0) {
|
|
|
Db::name('store_member')->where('id', $v['id'])
|
|
@@ -468,5 +467,41 @@ class Timedtask
|
|
|
echo $e->getErrorMessage() . PHP_EOL;
|
|
|
}
|
|
|
}
|
|
|
+ public function texts(){
|
|
|
+ $input = input();
|
|
|
+ $cailiao1 = Db::name('store_order_info')
|
|
|
+ ->where('c_id',8)
|
|
|
+ ->where('mid',$input['id'])
|
|
|
+ ->where('status','neq',2)
|
|
|
+ ->where('is_destruction',0)
|
|
|
+ ->limit(9)
|
|
|
+ ->order('id asc')
|
|
|
+ ->field('id')
|
|
|
+ ->select();
|
|
|
+ foreach ($cailiao1 as $k=>$v){
|
|
|
+ Db::name('store_order_info')->where('id',$cailiao1[$k]['id'])->update(['is_destruction'=>1]);
|
|
|
+ }
|
|
|
+ $cailiao2 = Db::name('store_order_info')
|
|
|
+ ->where('c_id',6)
|
|
|
+ ->where('mid',$input['id'])
|
|
|
+ ->where('status','neq',2)
|
|
|
+ ->where('is_destruction',0)
|
|
|
+ ->limit(1)
|
|
|
+ ->order('id asc')
|
|
|
+ ->field('id')
|
|
|
+ ->find();
|
|
|
+ Db::name('store_order_info')->where('id',$cailiao2['id'])->update(['is_destruction'=>1]);
|
|
|
+
|
|
|
+ print_r($cailiao1);print_r('分割');print_r($cailiao2);
|
|
|
+ }
|
|
|
+ public function chongzhi(){
|
|
|
+ $db = Db::name('sun_money')->where('status',1)->limit(100)->select();
|
|
|
+ foreach ($db as $k=>$v){
|
|
|
+ $db[$k]['name']=Db::name('store_member')->where('phone',$db[$k]['phone'])->value('id');
|
|
|
+ memberMoneyChange($db[$k]['money'],3,$db[$k]['name'],'平台奖励',1,0,['order_id'=>0,'source'=>2]);
|
|
|
+ Db::name('sun_money')->where('id', $db[$k]['id'])->update(['status'=>2]);
|
|
|
+ }
|
|
|
+ print_r($db);
|
|
|
+ }
|
|
|
|
|
|
}
|