|
@@ -128,36 +128,36 @@ class Order extends Base
|
|
if($num==""){
|
|
if($num==""){
|
|
return error_show(1004,"参数num 不能为空或0");
|
|
return error_show(1004,"参数num 不能为空或0");
|
|
}
|
|
}
|
|
- $id = isset($this->post['unit_id'])&&$this->post['unit_id']!=""? intval($this->post['unit_id']): "";
|
|
|
|
- if($id==""){
|
|
|
|
- return error_show(1004,"unit_id不能为空");
|
|
|
|
- }
|
|
|
|
- $kg= Db::name('unit')->where(["is_del" => 0,"id"=>$id,"status"=>1])->field("id,name,weight,limit_num")->find();
|
|
|
|
- // var_dump(Db::name('unit')->where(["is_del" => 0,"id"=>$id,"status"=>1])->getLastSql());
|
|
|
|
- if(empty($kg)){
|
|
|
|
- return error_show(1004,"单位不能为空");
|
|
|
|
- }
|
|
|
|
- $count=$num*$kg['weight'];
|
|
|
|
- if($count==""){
|
|
|
|
- return error_show(1004,"购买数量不能为空");
|
|
|
|
- }
|
|
|
|
- if($kg['limit_num']>0){
|
|
|
|
- $zl = Db::name('order_log')->where(["unit_id"=>$id,"accountid"=>$this->userinfo['id']])->sum('num');
|
|
|
|
- // var_dump(Db::name('order_log')->getLastSql());
|
|
|
|
-
|
|
|
|
- if($zl+$num>$kg['limit_num']){
|
|
|
|
- $jf = $kg['limit_num']>=$zl ?$kg['limit_num']-$zl :0;
|
|
|
|
- return error_show(1004,"购买数量超过限额,可购数量{$jf}{$kg['name']}");
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
|
|
+// $id = isset($this->post['unit_id'])&&$this->post['unit_id']!=""? intval($this->post['unit_id']): "";
|
|
|
|
+// if($id==""){
|
|
|
|
+// return error_show(1004,"unit_id不能为空");
|
|
|
|
+// }
|
|
|
|
+// $kg= Db::name('unit')->where(["is_del" => 0,"id"=>$id,"status"=>1])->field("id,name,weight,limit_num")->find();
|
|
|
|
+// // var_dump(Db::name('unit')->where(["is_del" => 0,"id"=>$id,"status"=>1])->getLastSql());
|
|
|
|
+// if(empty($kg)){
|
|
|
|
+// return error_show(1004,"单位不能为空");
|
|
|
|
+// }
|
|
|
|
+// $count=$num*$kg['weight'];
|
|
|
|
+// if($count==""){
|
|
|
|
+// return error_show(1004,"购买数量不能为空");
|
|
|
|
+// }
|
|
|
|
+// if($kg['limit_num']>0){
|
|
|
|
+// $zl = Db::name('order_log')->where(["unit_id"=>$id,"accountid"=>$this->userinfo['id']])->sum('num');
|
|
|
|
+// // var_dump(Db::name('order_log')->getLastSql());
|
|
|
|
+//
|
|
|
|
+// if($zl+$num>$kg['limit_num']){
|
|
|
|
+// $jf = $kg['limit_num']>=$zl ?$kg['limit_num']-$zl :0;
|
|
|
|
+// return error_show(1004,"购买数量超过限额,可购数量{$jf}{$kg['name']}");
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
|
|
$addrid = isset($this->post['addrid'])&&$this->post['addrid']!="" ? intval($this->post['addrid']):"";
|
|
$addrid = isset($this->post['addrid'])&&$this->post['addrid']!="" ? intval($this->post['addrid']):"";
|
|
if($addrid==""){
|
|
if($addrid==""){
|
|
return error_show(1004,"参数addrid 不能为空");
|
|
return error_show(1004,"参数addrid 不能为空");
|
|
}
|
|
}
|
|
$stock = Db::name("account_stock")->where(['is_del'=>0,"accountid"=>$this->userinfo['id']])->find();
|
|
$stock = Db::name("account_stock")->where(['is_del'=>0,"accountid"=>$this->userinfo['id']])->find();
|
|
- if(empty($stock) || $stock['stock_balance']<$count){
|
|
|
|
|
|
+ if(empty($stock) || $stock['stock_balance']<$num){
|
|
return error_show(1004,"库存数量不足");
|
|
return error_show(1004,"库存数量不足");
|
|
}
|
|
}
|
|
$addr =Db::name("rela_addr")->alias('a')->join("addr b","a.addrid=b.id","left")->where(["a.accountid"=>$this->userinfo['id'],
|
|
$addr =Db::name("rela_addr")->alias('a')->join("addr b","a.addrid=b.id","left")->where(["a.accountid"=>$this->userinfo['id'],
|
|
@@ -172,8 +172,6 @@ class Order extends Base
|
|
"order_sn"=>$ordersn,
|
|
"order_sn"=>$ordersn,
|
|
"accountid"=>$this->userinfo['id'],
|
|
"accountid"=>$this->userinfo['id'],
|
|
"order_num"=>$num,
|
|
"order_num"=>$num,
|
|
- "unit"=>$kg['name'],
|
|
|
|
- "unit_weight"=>$kg['weight'],
|
|
|
|
"is_del"=>0,
|
|
"is_del"=>0,
|
|
"status"=>1,
|
|
"status"=>1,
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
@@ -196,29 +194,24 @@ class Order extends Base
|
|
$orderpost=Db::name("order_post")->insert($post);
|
|
$orderpost=Db::name("order_post")->insert($post);
|
|
if($orderpost){
|
|
if($orderpost){
|
|
$updatestock= Db::name("account_stock")->where($stock)->update
|
|
$updatestock= Db::name("account_stock")->where($stock)->update
|
|
- (['stock_balance'=>$stock['stock_balance']-$count,
|
|
|
|
- "stock_delivery"=>$stock['stock_delivery']+$count,"updatetime"=>date("Y-m-d H:i:s")]);
|
|
|
|
|
|
+ (['stock_balance'=>$stock['stock_balance']-$num,
|
|
|
|
+ "stock_delivery"=>$stock['stock_delivery']+$num,"updatetime"=>date("Y-m-d H:i:s")]);
|
|
if($updatestock){
|
|
if($updatestock){
|
|
$log=[
|
|
$log=[
|
|
"accountid"=>$this->userinfo['id'],
|
|
"accountid"=>$this->userinfo['id'],
|
|
- "run_stock"=>$count,
|
|
|
|
|
|
+ "run_stock"=>$num,
|
|
"type"=>3,
|
|
"type"=>3,
|
|
- "after_stock"=>$stock['stock_balance']-$count,
|
|
|
|
|
|
+ "after_stock"=>$stock['stock_balance']-$num,
|
|
"before_stock"=>$stock['stock_balance'],
|
|
"before_stock"=>$stock['stock_balance'],
|
|
"action_uid"=>$this->userinfo['id'],
|
|
"action_uid"=>$this->userinfo['id'],
|
|
"action_name"=>$this->userinfo['nickname'],
|
|
"action_name"=>$this->userinfo['nickname'],
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
-
|
|
|
|
];
|
|
];
|
|
$stocklog =Db::name("stock_log")->insert($log);
|
|
$stocklog =Db::name("stock_log")->insert($log);
|
|
$log=[
|
|
$log=[
|
|
"accountid"=>$this->userinfo['id'],
|
|
"accountid"=>$this->userinfo['id'],
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
- "unit"=>$kg['name'],
|
|
|
|
- "unit_weight"=>$kg['weight'],
|
|
|
|
"num"=>$num,
|
|
"num"=>$num,
|
|
- "total_weight"=>$num*$kg['weight'],
|
|
|
|
- "unit_id"=>$kg['id']
|
|
|
|
];
|
|
];
|
|
$st =Db::name("order_log")->insert($log);
|
|
$st =Db::name("order_log")->insert($log);
|
|
if($stocklog && $st){
|
|
if($stocklog && $st){
|
|
@@ -240,21 +233,6 @@ class Order extends Base
|
|
$stock = Db::name("account_stock")->where(["accountid"=>$this->userinfo['id'],'is_del'=>0])->find();
|
|
$stock = Db::name("account_stock")->where(["accountid"=>$this->userinfo['id'],'is_del'=>0])->find();
|
|
$data=[];
|
|
$data=[];
|
|
$data['stock'] = isset($stock['stock_balance']) ? $stock['stock_balance']:0;
|
|
$data['stock'] = isset($stock['stock_balance']) ? $stock['stock_balance']:0;
|
|
- $unit = Db::name('unit')->where(['is_del'=>0,'status'=>1])->field("id,name,weight,limit_num")->select();
|
|
|
|
- $limit=[];
|
|
|
|
- foreach ($unit as $value){
|
|
|
|
- $zl =0;
|
|
|
|
- $num = intval($data['stock']/$value['weight']);
|
|
|
|
- if($value['limit_num']>0){
|
|
|
|
- $zl = Db::name('order_log')->where(["unit_id"=>$value['id'],"accountid"=>$this->userinfo['id']])->sum('num');
|
|
|
|
- $value['limit_num']>$zl?$value['limit_num'] -= $zl:$value['limit_num']=0;
|
|
|
|
- $value['limit_num'] = $value['limit_num']>$num ? $num : $value['limit_num'];
|
|
|
|
- }else{
|
|
|
|
- $value['limit_num'] = $num ;
|
|
|
|
- }
|
|
|
|
- $limit[]=$value;
|
|
|
|
- }
|
|
|
|
- $data['limit']=$limit;
|
|
|
|
return app_show(0,"获取成功",$data);
|
|
return app_show(0,"获取成功",$data);
|
|
}
|
|
}
|
|
}
|
|
}
|