|
|
@ -48,19 +48,9 @@ class ProductSaved implements ShouldQueue |
|
|
public function handle() |
|
|
public function handle() |
|
|
{ |
|
|
{ |
|
|
$product = $this->product; |
|
|
$product = $this->product; |
|
|
/** 同步信息到代理商产品 START */ |
|
|
|
|
|
AgentProduct::query() |
|
|
|
|
|
->where(['type' => 0, 'product_id' => $product->id]) |
|
|
|
|
|
->update([ |
|
|
|
|
|
'title' => $product->title, |
|
|
|
|
|
'know' => $product->know, |
|
|
|
|
|
'content' => $product->content, |
|
|
|
|
|
'pictures' => $product->pictures, |
|
|
|
|
|
]); |
|
|
|
|
|
/** 同步信息到代理商产品 END */ |
|
|
|
|
|
|
|
|
|
|
|
/** 自动上架 START */ |
|
|
/** 自动上架 START */ |
|
|
Agent::query()->where([ |
|
|
|
|
|
|
|
|
Agent::where([ |
|
|
['id', '>', 1], //1是总管理员,不处理
|
|
|
['id', '>', 1], //1是总管理员,不处理
|
|
|
['type', '<>', AgentType::OPERATOR], |
|
|
['type', '<>', AgentType::OPERATOR], |
|
|
['status', '=', UserStatus::NORMAL] |
|
|
['status', '=', UserStatus::NORMAL] |
|
|
|