|
@@ -127,16 +127,14 @@ class Goods extends Controller
|
|
|
$data['date'] = date('Y-m-d',strtotime($data['sell_time']));
|
|
|
if (isset($data['id'])){
|
|
|
$buy_count = Db::name('store_order_info')
|
|
|
- ->whereIn('status','1,2')
|
|
|
+ ->whereIn('status','1,3')
|
|
|
->where('c_id',$data['id'])
|
|
|
->count();
|
|
|
- echo Db::name('store_order_info')->getLastSql();die;
|
|
|
}else{
|
|
|
$buy_count = 0;
|
|
|
}
|
|
|
|
|
|
$data['now_inventory'] = $data['inventory']-$buy_count;
|
|
|
- dump($data);die;
|
|
|
}else{
|
|
|
if (!empty($data)){
|
|
|
$data['covers'] = $data['cover'];
|