更新商品
This commit is contained in:
parent
43f9c6fb06
commit
7d7747ec11
@ -58,6 +58,9 @@ class SpuDao extends BaseDao
|
||||
->when(isset($where['mer_id']) && $where['mer_id'] !== '',function($query)use($where){
|
||||
$query->where('P.mer_id',$where['mer_id']);
|
||||
})
|
||||
->when(isset($where['mer_array_id']),function($query)use($where){
|
||||
$query->whereIn('P.mer_id',$where['mer_array_id']);
|
||||
})
|
||||
->when(isset($where['mer_ids']) && $where['mer_ids'] !== '',function($query)use($where){
|
||||
$query->whereIn('P.mer_id',$where['mer_ids']);
|
||||
})
|
||||
|
@ -144,6 +144,7 @@ class StoreSpu extends BaseController
|
||||
if ($where['action']) unset($where['product_type']);
|
||||
$currentMerchant = Db::name('merchant')->where('mer_id',$id)->field('category_id,street_id')->find();
|
||||
$typeTownSupplyChainId = Db::name('MerchantType')->where('type_code', Merchant::TypeCode['TypeTownSupplyChain'])->value('mer_type_id');
|
||||
$where['mer_array_id'][] = $id;
|
||||
$mer_id = Db::name('merchant')
|
||||
->where('street_id',$currentMerchant['street_id'])
|
||||
->where('mer_state',1)
|
||||
@ -151,10 +152,10 @@ class StoreSpu extends BaseController
|
||||
->where('category_id',$currentMerchant['category_id'])
|
||||
->where('type_id', $typeTownSupplyChainId)
|
||||
->value('mer_id');
|
||||
if (!$mer_id) {
|
||||
return app('json')->success(['count'=>0,'list'=>[]]);
|
||||
if ($mer_id) {
|
||||
$where['mer_array_id'][] = $mer_id;
|
||||
}
|
||||
$where['mer_id'] = $mer_id;
|
||||
// $where['mer_id'] = $mer_id;
|
||||
$where['entry_mer_id'] = $id;
|
||||
$where['is_gift_bag'] = 0;
|
||||
$where['order'] = $where['order'] ? $where['order'] : 'sort';
|
||||
|
Loading…
x
Reference in New Issue
Block a user