|
@@ -27,7 +27,7 @@ class Order extends Base
|
|
|
$count =Db::name("order_info")->where($where)->count();
|
|
|
$total = ceil($count/$size);
|
|
|
$page = $page>$total?$total:$page;
|
|
|
- $list = Db::name("order_info")->where($where)->page($page,$size)->field("id,order_sn,order_num,order_time,delivery_time,post_code,post_name,status")
|
|
|
+ $list = Db::name("order_info")->where($where)->page($page,$size)->field("id,order_sn,order_num,order_time,delivery_time,post_code,post_name,status,unit,unit_weight")
|
|
|
->select();
|
|
|
return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
|
|
|
}
|
|
@@ -35,13 +35,14 @@ class Order extends Base
|
|
|
/**
|
|
|
* @param id 订单id
|
|
|
*/
|
|
|
+
|
|
|
public function info(){
|
|
|
$id = isset($this->post['id'])&&$this->post['id']!="" ? intval($this->post['id']):"";
|
|
|
if($id==""){
|
|
|
return error_show(1004,"参数id 不能为空");
|
|
|
}
|
|
|
$order = Db::name("order_info")->where(["is_del"=>0,"accountid"=>$this->userinfo['id'],"id"=>$id])->field("id,
|
|
|
- order_sn,order_num,order_time,delivery_time,status, post_code,post_name,provice_name,city_name,area_name,addr,contector,contector_mobile,nickname")->find();
|
|
|
+ order_sn,order_num,order_time,delivery_time,status, post_code,post_name,provice_name,city_name,area_name,addr,contector,contector_mobile,nickname,unit,unit_weight")->find();
|
|
|
if(empty($order)){
|
|
|
return error_show(1005,"未找到订单数据");
|
|
|
}
|
|
@@ -52,17 +53,35 @@ class Order extends Base
|
|
|
* @param num
|
|
|
* @param addrid
|
|
|
*/
|
|
|
+ public function ist(){
|
|
|
+ $ist = Db::name('unit')->where(["is_del" => 0,"status"=>1])->field("id,name,weight")->select();
|
|
|
+ return app_show(0,"获取成功",["list"=>$ist]);
|
|
|
+ }
|
|
|
public function add(){
|
|
|
$num = isset($this->post['num'])&&$this->post['num']!="" ? intval($this->post['num']):"";
|
|
|
if($num==""){
|
|
|
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")->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,"购买数量不能为空");
|
|
|
+ }
|
|
|
$addrid = isset($this->post['addrid'])&&$this->post['addrid']!="" ? intval($this->post['addrid']):"";
|
|
|
if($addrid==""){
|
|
|
return error_show(1004,"参数addrid 不能为空");
|
|
|
}
|
|
|
$stock = Db::name("account_stock")->where(['is_del'=>0,"accountid"=>$this->userinfo['id']])->find();
|
|
|
- if(empty($stock) || $stock['stock_balance']<$num){
|
|
|
+ if(empty($stock) || $stock['stock_balance']<$count){
|
|
|
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'],
|
|
@@ -77,6 +96,8 @@ class Order extends Base
|
|
|
"order_sn"=>$ordersn,
|
|
|
"accountid"=>$this->userinfo['id'],
|
|
|
"order_num"=>$num,
|
|
|
+ "unit"=>$kg['name'],
|
|
|
+ "unit_weight"=>$kg['weight'],
|
|
|
"is_del"=>0,
|
|
|
"status"=>1,
|
|
|
"addtime"=>date("Y-m-d H:i:s"),
|