更新
This commit is contained in:
parent
f31d3548db
commit
8bbf70a96c
@ -32,10 +32,6 @@ class Demo extends BaseController
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$merchant = Db::name('merchant')->where('mer_id','>=',39)->where('long','<>','')->where('status',1)->select();
|
||||
foreach($merchant as $k=>$v){
|
||||
Db::name('store_spu')->where('mer_id',$v['mer_id'])->update(['long'=>$v['long'],'lat'=>$v['lat']]);
|
||||
}
|
||||
return app('json')->success('修改成功');
|
||||
//[31,32,118,39,167,236,237,238,239]
|
||||
// return app('json')->success('修改成功');>whereIn('mer_id',[110,116,149,227,226,35,117,148,156,104,137,151,136,183,140,229,79,133,235])->
|
||||
|
@ -123,11 +123,13 @@ class StoreCart extends BaseController
|
||||
//更新购物车
|
||||
$cart_id = $cart['cart_id'];
|
||||
$cart_num = ['cart_num' => ($cart['cart_num'] + $data['cart_num'])];
|
||||
if ($entryMerId && $entryMerId != $result['product']['mer_id']) {
|
||||
$cart_num['source_id'] = $entryMerId;
|
||||
$cart_num['source'] = StoreCartDao::SOURCE_STORE_CLOUD;
|
||||
if( $cart_num['source'] !=105){
|
||||
if ($entryMerId && $entryMerId != $result['product']['mer_id']) {
|
||||
$cart_num['source_id'] = $entryMerId;
|
||||
$cart_num['source'] = StoreCartDao::SOURCE_STORE_CLOUD;
|
||||
}
|
||||
$storeCart = $this->repository->update($cart_id,$cart_num);
|
||||
}
|
||||
$storeCart = $this->repository->update($cart_id,$cart_num);
|
||||
} else {
|
||||
//添加购物车
|
||||
$data['uid'] = $this->request->uid();
|
||||
|
Loading…
x
Reference in New Issue
Block a user