This commit is contained in:
mkm 2024-05-18 18:01:24 +08:00
parent 720a1eb32a
commit 781f26224b
2 changed files with 3 additions and 1 deletions

View File

@ -214,6 +214,7 @@ class OpurchaseclassLogic extends BaseLogic
$goods_offer[] = [ $goods_offer[] = [
'supplier_id' => $v['id'], 'supplier_id' => $v['id'],
'goods_id' => $goods['goods'], 'goods_id' => $goods['goods'],
'order_id' => $goods['pid'],
'price' => 0, 'price' => 0,
'need_num' => $goods['nums'] 'need_num' => $goods['nums']
]; ];
@ -222,7 +223,7 @@ class OpurchaseclassLogic extends BaseLogic
$res = OpurchaseGoodsOffer::insertAll($goods_offer); $res = OpurchaseGoodsOffer::insertAll($goods_offer);
if ($res) { if ($res) {
Opurchaseinfo::where('id',$goods['id'])->update(['is_push'=>1]); Opurchaseinfo::where('id',$goods['id'])->update(['is_push'=>1]);
return true; return $goods_offer;
} }
} }
} catch (\Exception $e) { } catch (\Exception $e) {

View File

@ -8,6 +8,7 @@ use Webman\RedisQueue\Consumer;
use Webman\Push\Api; use Webman\Push\Api;
use support\exception\BusinessException; use support\exception\BusinessException;
use support\Log; use support\Log;
use think\facade\Db;
class PushSupplierProductsSend implements Consumer class PushSupplierProductsSend implements Consumer
{ {