|
@@ -8,6 +8,7 @@ use Exception;
|
|
|
use think\App;
|
|
|
use think\facade\Db;
|
|
|
use app\admin\model\ActionLog;
|
|
|
+use think\facade\Validate;
|
|
|
|
|
|
//销售单
|
|
|
class Sale extends Base
|
|
@@ -69,7 +70,7 @@ class Sale extends Base
|
|
|
$workNo =isset($this->post['workNo'])&&$this->post['workNo']!=""? trim($this->post['workNo']):"";
|
|
|
// $poNo =isset($this->post['poNo'])&&$this->post['poNo']!=""? trim($this->post['poNo']):"";
|
|
|
$ct = Db::name('good_platform')->alias('a')->join('good b', 'b.spuCode=a.spuCode', 'left')
|
|
|
- ->where(['a.skuCode' => $good_code])->find();
|
|
|
+ ->where(['a.skuCode' => $good_code])->field("b.*,a.skuCode,a.platform_code,a.plat_code")->find();
|
|
|
if ($ct == false) {
|
|
|
return error_show(1002, "未找到商品数据");
|
|
|
}
|
|
@@ -141,6 +142,8 @@ class Sale extends Base
|
|
|
"good_num"=>$good_num,
|
|
|
"good_type"=>$goodtype,
|
|
|
"order_type"=>$is_stock==1?1:2,
|
|
|
+ "createrid"=>$ct['createrid'],
|
|
|
+ "creater"=>$ct['creater'],
|
|
|
'send_way'=>2
|
|
|
|
|
|
];
|
|
@@ -213,7 +216,7 @@ class Sale extends Base
|
|
|
$bol=$this->createCgd($cgd);
|
|
|
if($bol==false){
|
|
|
Db::rollback();
|
|
|
- return error_show(1002,"咨询订单创建失败");
|
|
|
+ return error_show(1002,"订单创建失败");
|
|
|
}
|
|
|
}else{
|
|
|
$dd=[
|
|
@@ -328,6 +331,21 @@ class Sale extends Base
|
|
|
if ($ou == false) {
|
|
|
Db::rollback();
|
|
|
return error_show(1002, "发货地址添加创建失败");
|
|
|
+ }else{
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "status" => 0,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "create"//新建create,编辑edit,更改状态status
|
|
|
+ ], "CKD", 0, $out);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'CKD',
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "order_id" => 0,
|
|
|
+ "order_status" => 0
|
|
|
+ ]);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -419,8 +437,24 @@ class Sale extends Base
|
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
|
"updatetime"=>date("Y-m-d H:i:s")
|
|
|
];
|
|
|
- $up =Db::name("purchease_order")->insert($cg);
|
|
|
+ $up =Db::name("purchease_order")->insert($cg,true);
|
|
|
if($up){
|
|
|
+
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $cg['cgdNo'],//销售单code
|
|
|
+ "status" => 0,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "create"//新建create,编辑edit,更改状态status
|
|
|
+ ], "CGD", $cg['status'], $cg);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'CGD',
|
|
|
+ "order_code" => $cg['cgdNo'],//销售单code
|
|
|
+ "order_id" => $up,
|
|
|
+ "order_status" => $cg['status']
|
|
|
+ ]);
|
|
|
+
|
|
|
$rela=[
|
|
|
"orderCode"=>$data['orderCode'],
|
|
|
"cgdNo"=>$cgdCode,
|
|
@@ -451,11 +485,12 @@ class Sale extends Base
|
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
|
"updatetime"=>date("Y-m-d H:i:s")
|
|
|
];
|
|
|
+ $stoc= Db::name("good_stock")->save($stokc);
|
|
|
+ if($stoc==false){
|
|
|
+ return false;
|
|
|
+ }
|
|
|
}
|
|
|
- $stoc= Db::name("good_stock")->save($stokc);
|
|
|
- if($stoc==false){
|
|
|
- return false;
|
|
|
- }
|
|
|
+
|
|
|
return true;
|
|
|
}
|
|
|
}else{
|
|
@@ -581,10 +616,25 @@ class Sale extends Base
|
|
|
if($ou==false){
|
|
|
Db::rollback();
|
|
|
return error_show(1002,"发货地址添加创建失败");
|
|
|
+ }else{
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "status" => 0,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "create"//新建create,编辑edit,更改状态status
|
|
|
+ ], "CKD", 0, $out);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'CKD',
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "order_id" => 0,
|
|
|
+ "order_status" => 0
|
|
|
+ ]);
|
|
|
}
|
|
|
|
|
|
//维护商品所在仓库的库存 --- start
|
|
|
- $temp = Db::name('wsm_good_stock')
|
|
|
+ $temp = Db::name('good_stock')
|
|
|
->field('id,usable_stock,wait_out_stock')
|
|
|
->where(['spuCode' => $val['spuCode'], 'wsm_code' => $cgdinfo['wsm_code']])
|
|
|
->find();
|
|
@@ -598,7 +648,7 @@ class Sale extends Base
|
|
|
return error_show(1004, '库存不足');
|
|
|
}
|
|
|
|
|
|
- $up =Db::name('wsm_good_stock')
|
|
|
+ $up =Db::name('good_stock')
|
|
|
->where('id', $temp['id'])
|
|
|
->update([
|
|
|
'usable_stock' => $temp['usable_stock'] - $ornum,
|
|
@@ -611,7 +661,6 @@ class Sale extends Base
|
|
|
}
|
|
|
//维护商品所在仓库的库存 --- end
|
|
|
|
|
|
-
|
|
|
if($num==0){
|
|
|
break;
|
|
|
}
|
|
@@ -669,6 +718,9 @@ class Sale extends Base
|
|
|
if($sendtype==""){
|
|
|
return error_show(1003,"参数sendtype不能为空");
|
|
|
}
|
|
|
+
|
|
|
+ $remark = isset($this->post['remark'])&&$this->post['remark']!="" ? trim($this->post['remark']):"";
|
|
|
+
|
|
|
$orderCode = makeNo("QR");
|
|
|
$spuCode = $zxinfo['spuCode'];
|
|
|
$skuCode = "";
|
|
@@ -689,6 +741,8 @@ class Sale extends Base
|
|
|
"mark_fee"=>$zxinfo['mark_fee'],
|
|
|
"demo_fee"=>$zxinfo['demo_fee'],
|
|
|
"good_num"=>$good_num,
|
|
|
+ "createrid"=>$zxinfo['createrid'],
|
|
|
+ "creater"=>$zxinfo['creater'],
|
|
|
"good_type"=>1,
|
|
|
"is_diff"=>$zxinfo['is_diff'],
|
|
|
"order_type"=>3,
|
|
@@ -741,7 +795,7 @@ class Sale extends Base
|
|
|
"zxNo"=>$bidNo,
|
|
|
"platform_order"=>"",
|
|
|
"platform_id"=>0,
|
|
|
- "remark"=>"",
|
|
|
+ "remark"=>$remark,
|
|
|
"arrive_time"=>$arrtime,
|
|
|
"is_stock"=>0,
|
|
|
"is_activity"=>0,
|
|
@@ -753,12 +807,28 @@ class Sale extends Base
|
|
|
];
|
|
|
$datainfo = Db::name('sale')->insert($data, true);
|
|
|
if($datainfo>0){
|
|
|
+ $old_zx_status = $zx['status'];
|
|
|
$zx['status']=5;
|
|
|
$zx['updatetime']=date("Y-m-d H:i:s");
|
|
|
$sa=Db::name("consult_info")->save($zx);
|
|
|
if($sa==false){
|
|
|
Db::rollback();
|
|
|
return error_show(1002,"咨询单修改失败");
|
|
|
+ }else{
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $zx['infoNo'],//咨询单详情编号
|
|
|
+ "status" => $old_zx_status,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "status"//新建create,编辑edit,更改状态status
|
|
|
+ ], "ZXD", 5, $zx);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'ZXD',
|
|
|
+ "order_code" => $zx['infoNo'],//咨询单详情编号
|
|
|
+ "order_id" => $zx['id'],
|
|
|
+ "order_status" => 5
|
|
|
+ ]);
|
|
|
}
|
|
|
$bol=$this->createCgd($cgd);
|
|
|
if($bol==false){
|
|
@@ -797,8 +867,8 @@ class Sale extends Base
|
|
|
"send_way"=>$zxinfo['send_way'],
|
|
|
"status"=>1,
|
|
|
"is_del"=>0,
|
|
|
- "createrid"=>$rm,
|
|
|
- "creater"=>$ri,
|
|
|
+ "createrid"=>$zxinfo['createrid'],
|
|
|
+ "creater"=>$zxinfo['creater'],
|
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
|
"updatetime"=>date("Y-m-d H:i:s")
|
|
|
];
|
|
@@ -863,6 +933,21 @@ class Sale extends Base
|
|
|
if($ou==false){
|
|
|
Db::rollback();
|
|
|
return error_show(1002,"发货地址添加创建失败");
|
|
|
+ }else{
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "status" => 0,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "create"//新建create,编辑edit,更改状态status
|
|
|
+ ], "CKD", 0, $out);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'CKD',
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "order_id" => 0,
|
|
|
+ "order_status" => 0
|
|
|
+ ]);
|
|
|
}
|
|
|
$order['send_num']+=$value['receipt_quantity'];
|
|
|
$order['wsend_num']-=$value['receipt_quantity'];
|
|
@@ -995,20 +1080,46 @@ class Sale extends Base
|
|
|
return error_show(1002, "项目订单生成失败");
|
|
|
}
|
|
|
}
|
|
|
+ $old_plan_status = $plan['status'];
|
|
|
$plan['status']=2;
|
|
|
$plan['updatetime']=date("Y-m-d H:i:s");
|
|
|
$in =Db::name("project_plan")->save($plan);
|
|
|
if($in==false){
|
|
|
Db::rollback();
|
|
|
return error_show(1002, "项目订单生成失败");
|
|
|
+ }else{
|
|
|
+ //修改状态,添加待办,只记录动作
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $planNo,//编码
|
|
|
+ "status" => $old_plan_status,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "edit"//新建create,编辑edit,更改状态status
|
|
|
+ ], "PRO", 2, $plan);
|
|
|
}
|
|
|
+ $old_project_status = $project["status"];
|
|
|
$project["status"]=6;
|
|
|
$project['updatetime']=date("Y-m-d H:i:s");
|
|
|
$pr =Db::name("project")->save($project);
|
|
|
if($pr==false){
|
|
|
Db::rollback();
|
|
|
return error_show(1002, "项目订单生成失败");
|
|
|
+ }else{
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $project['projectNo'],//项目编码
|
|
|
+ "status" => $old_project_status,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "status"//新建create,编辑edit,更改状态status
|
|
|
+ ], "PRO", 6, $project);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'PRO',
|
|
|
+ "order_code" => $project['projectNo'],
|
|
|
+ "order_id" => $project['id'],
|
|
|
+ "order_status" => 6
|
|
|
+ ]);
|
|
|
}
|
|
|
+
|
|
|
Db::commit();
|
|
|
return app_show(0, "咨询订单生成成功");
|
|
|
}catch (\Exception $e){
|
|
@@ -1049,6 +1160,8 @@ class Sale extends Base
|
|
|
"mark_fee"=>$goodinfo['mark_fee'],
|
|
|
"demo_fee"=>$goodinfo['demo_fee'],
|
|
|
"good_num"=>$data['good_num'],
|
|
|
+ "createrid"=>$goodinfo['createrid'],
|
|
|
+ "creater"=>$goodinfo['creater'],
|
|
|
"good_type"=>1,
|
|
|
"order_type"=>4,
|
|
|
"send_way"=>$goodinfo['send_way'],
|
|
@@ -1134,8 +1247,8 @@ class Sale extends Base
|
|
|
"send_way"=>$goodinfo['send_way'],
|
|
|
"status"=>1,
|
|
|
"is_del"=>0,
|
|
|
- "createrid"=>0,
|
|
|
- "creater"=>'',
|
|
|
+ "createrid"=>$goodinfo['createrid'],
|
|
|
+ "creater"=>$goodinfo['creater'],
|
|
|
"addtime"=>date("Y-m-d H:i:s"),
|
|
|
"updatetime"=>date("Y-m-d H:i:s")
|
|
|
];
|
|
@@ -1236,7 +1349,8 @@ class Sale extends Base
|
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
|
*/
|
|
|
public function project_good($data){
|
|
|
- $good=Db::name('good')->alias("a")->leftJoin("good_platform b","a.spuCode=b.spuCode")->where(["b.skuCode"=>$data['skuCode'],"a.is_del"=>0,"b.is_del"=>0])->find();
|
|
|
+ $good=Db::name('good')->alias("a")->leftJoin("good_platform b","a.spuCode=b.spuCode")
|
|
|
+ ->where(["b.skuCode"=>$data['skuCode'],"a.is_del"=>0,"b.is_del"=>0])->field("b.*,a.skuCode,a.platform_code,a.plat_code")->find();
|
|
|
if($good==false){
|
|
|
return false;
|
|
|
}
|
|
@@ -1305,6 +1419,8 @@ class Sale extends Base
|
|
|
"demo_fee"=>$good['demo_fee'],
|
|
|
"good_num"=>$data['good_num'],
|
|
|
"good_type"=>1,
|
|
|
+ "createrid"=>$good['createrid'],
|
|
|
+ "creater"=>$good['creater'],
|
|
|
"order_type"=>$good['is_stock']==1?1:2,
|
|
|
'send_way'=>2
|
|
|
];
|
|
@@ -1897,7 +2013,7 @@ class Sale extends Base
|
|
|
"cgdNo" => $cgd,
|
|
|
"bkcode" => $dio['orderCode'],
|
|
|
"wsm_code" => $wsm['wsm_code'],
|
|
|
- "cgder_id" => "0",
|
|
|
+ "cgder_id" => Db::name('depart_user')->where('nickname',$zxinfo['saler'])->value('uid')??0,//重名以及多个账号的话…………
|
|
|
"cgder" => $zxinfo['saler'],
|
|
|
"good_code" => "GD-" . $zxinfo['cpNo'],
|
|
|
"good_name" => $zxinfo['cpName'],
|
|
@@ -1964,6 +2080,21 @@ class Sale extends Base
|
|
|
ActionLog::logAdd($this->post['token'],$sti,"xsd",0,$sti);
|
|
|
Db::rollback();
|
|
|
return error_show(1003, "创建失败");
|
|
|
+ }else{
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "status" => 0,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "create"//新建create,编辑edit,更改状态status
|
|
|
+ ], "CKD", 0, $data);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'CKD',
|
|
|
+ "order_code" => $outCode,//出库单号
|
|
|
+ "order_id" => 0,
|
|
|
+ "order_status" => 0
|
|
|
+ ]);
|
|
|
}
|
|
|
}
|
|
|
$wsm_in_code = makeNo("CF");
|
|
@@ -2197,8 +2328,9 @@ class Sale extends Base
|
|
|
Db::rollback();
|
|
|
return error_show(1002, "状态更新失败");
|
|
|
}
|
|
|
- $good_data[]= ["stock_id"=>$str['id'],"type"=>2,'stock'=>$send_num,"stock_name"=>"wait_out_stock"];
|
|
|
- $good_data[]= ["stock_id"=>$str['id'],"type"=>1,'stock'=>$send_num,"stock_name"=>"intra_stock"];
|
|
|
+ //商品变动日志表,good_log_code字段存储采购单号
|
|
|
+ $good_data[] = ['good_log_code' => $outCode, "stock_id" => $str['id'], "type" => 2, 'stock' => $send_num, "stock_name" => "wait_out_stock"];
|
|
|
+ $good_data[] = ['good_log_code' => $outCode, "stock_id" => $str['id'], "type" => 1, 'stock' => $send_num, "stock_name" => "intra_stock"];
|
|
|
GoodLog::LogAdd($this->post['token'],$good_data,$der['order_type'] != 1?"ZXQRD":"XSQRD");
|
|
|
}
|
|
|
|
|
@@ -2285,8 +2417,10 @@ class Sale extends Base
|
|
|
$dr);
|
|
|
$order=["order_type"=>$dr['order_type'] == 2?"ZXQRD":"XSQRD","order_code"=>$dr['orderCode'],"order_id"=>$dr['id'],"order_status"=>$dr['status']];
|
|
|
ProcessOrder::AddProcess($this->post['token'],$order);
|
|
|
- $good_data[]= ["stock_id"=>$stoc['id'],"type"=>1,'stock'=>$codeinfo['send_num'],"stock_name"=>"wait_out_stock"];
|
|
|
- $good_data[]= ["stock_id"=>$stoc['id'],"type"=>2,'stock'=>$codeinfo['send_num'],"stock_name"=>"usable_stock"];
|
|
|
+
|
|
|
+ //商品变动日志表,good_log_code字段存储销售订单编号
|
|
|
+ $good_data[] = ['good_log_code' => $outCode, "stock_id" => $stoc['id'], "type" => 1, 'stock' => $codeinfo['send_num'], "stock_name" => "wait_out_stock"];
|
|
|
+ $good_data[] = ['good_log_code' => $outCode, "stock_id" => $stoc['id'], "type" => 2, 'stock' => $codeinfo['send_num'], "stock_name" => "usable_stock"];
|
|
|
GoodLog::LogAdd($this->post['token'],$good_data,'CKD');
|
|
|
}
|
|
|
if ($status == 3) {
|
|
@@ -2302,7 +2436,9 @@ class Sale extends Base
|
|
|
$var['intra_stock'] -= $codeinfo['send_num'];
|
|
|
$var['updatetime'] = date("Y-m-d H:i:s");
|
|
|
$stre = Db::name('good_stock')->save($var);
|
|
|
- $good_data[]= ["stock_id"=>$var['id'],"type"=>2,'stock'=>$codeinfo['send_num'],"stock_name"=>"intra_stock"];
|
|
|
+
|
|
|
+ //商品变动日志表,good_log_code字段存储销售订单编号
|
|
|
+ $good_data[] = ['good_log_code' => $outCode, "stock_id" => $var['id'], "type" => 2, 'stock' => $codeinfo['send_num'], "stock_name" => "intra_stock"];
|
|
|
GoodLog::LogAdd($this->post['token'],$good_data,$codeinfo['order_type'] == 2?"ZXCKD":"CKD");
|
|
|
if ($stre == false) {
|
|
|
Db::rollback();
|
|
@@ -2818,6 +2954,24 @@ class Sale extends Base
|
|
|
}
|
|
|
$datainfo = Db::name('order_out')->insertAll($data);
|
|
|
if($datainfo>0){
|
|
|
+
|
|
|
+ foreach ($data as $k => $v_data) {
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $v_data['outCode'],//出库单号
|
|
|
+ "status" => $v_data['status'],//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "create"//新建create,编辑edit,更改状态status
|
|
|
+ ], "CKD", $v_data['status'], $v_data);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'CKD',
|
|
|
+ "order_code" => $v_data['outCode'],//出库单号
|
|
|
+ "order_id" => 0,
|
|
|
+ "order_status" => $v_data['status']
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+
|
|
|
Db::commit();
|
|
|
return app_show(0,"出库单新建成功");
|
|
|
}
|
|
@@ -2861,6 +3015,7 @@ class Sale extends Base
|
|
|
$outinfo['post_code'] = $post_code;
|
|
|
$outinfo['post_fee'] = $post_fee;
|
|
|
$outinfo['sendtime'] = date("Y-m-d H:i:s");
|
|
|
+ $old_outinfo_status = $outinfo['status'];
|
|
|
$outinfo['status'] = 2;
|
|
|
$outinfo['updatetime'] = date("Y-m-d H:i:s");
|
|
|
|
|
@@ -2868,6 +3023,22 @@ class Sale extends Base
|
|
|
try{
|
|
|
$up =Db::name("order_out")->save($outinfo);
|
|
|
if($up){
|
|
|
+
|
|
|
+ //修改状态,添加待办
|
|
|
+ ActionLog::logAdd($this->post['token'], [
|
|
|
+ "order_code" => $outinfo['outCode'],//出库单号
|
|
|
+ "status" => $old_outinfo_status,//这里的status是之前的值
|
|
|
+ "action_remark" => '',//备注
|
|
|
+ "action_type" => "edit"//新建create,编辑edit,更改状态status
|
|
|
+ ], "CKD", $outinfo['status'], $outinfo);
|
|
|
+
|
|
|
+ ProcessOrder::AddProcess($this->post['token'], [
|
|
|
+ "order_type" => 'CKD',
|
|
|
+ "order_code" => $outinfo['outCode'],//出库单号
|
|
|
+ "order_id" => $outinfo['id'],
|
|
|
+ "order_status" => $outinfo['status']
|
|
|
+ ]);
|
|
|
+
|
|
|
$stokc =Db::name("good_stock")->where(['spuCode'=>$einfo['good_code'],"wsm_code"=>$outinfo['wsm_code'],"is_del"=>0])->find();
|
|
|
if($stokc==false){
|
|
|
Db::rollback();
|
|
@@ -3163,4 +3334,51 @@ class Sale extends Base
|
|
|
$order["noble_weight"] = isset($order['weight'])?$order['weight']:0;
|
|
|
return app_show(0,"获取成功",$order);
|
|
|
}
|
|
|
+
|
|
|
+ //获取采反商品详情,当数据不在good_zixun中,模仿goodzxinfo
|
|
|
+ public function getGoodZxInfoByNotZixun(){
|
|
|
+
|
|
|
+ $param=$this->request->only(['spuCode'],'post','trim');
|
|
|
+
|
|
|
+ $val=Validate::rule(['spuCode'=>'require']);
|
|
|
+
|
|
|
+ if(!$val->check($param)) return error_show(1004,$val->getError());
|
|
|
+
|
|
|
+ $order = Db::name('consult_bids')
|
|
|
+ ->field(true)
|
|
|
+ ->where(['spuCode'=>$param['spuCode'],'is_del'=>0])
|
|
|
+ ->find();
|
|
|
+
|
|
|
+// $orderCode= isset($this->post['spuCode'])&&$this->post['spuCode']!=''?trim($this->post['spuCode']):"";
|
|
|
+// if($orderCode==""){
|
|
|
+// return error_show(1003,"参数spuCode不能为空");
|
|
|
+// }
|
|
|
+// $order= Db::name("good_zixun")->where(["spuCode"=>$orderCode,"is_del"=>0])->find();
|
|
|
+// if(empty($order)){
|
|
|
+// return error_show(1003,"订单数据未找到");
|
|
|
+// }
|
|
|
+ $unit =Db::name("unit")->where(["id"=>$order['unit_id']])->find();
|
|
|
+ if($order['brand_id']!=0){
|
|
|
+ $brand=Db::name("brand")->where(["id"=>$order['brand_id']])->find();
|
|
|
+ $order["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
|
|
|
+ }else{
|
|
|
+ $order["brand_name"]="";
|
|
|
+ $order["brand_id"]="";
|
|
|
+ }
|
|
|
+ $order['specinfo']=json_decode($order['specinfo'],true);
|
|
|
+ $order['unit'] = isset($unit['unit'])?$unit['unit']:'';
|
|
|
+ $order['cat_info'] = made($order['cat_id'],[]);
|
|
|
+ $order['noble_name']=isset($order['noble_metal'])&&$order['noble_metal']!=0?$this->noble[$order['noble_metal']] :"";
|
|
|
+ if($order['is_gold_price']==1){
|
|
|
+ $price=Db::name("gold_price1")->where(["type"=>$order['noble_metal'],"status"=>1,"is_del"=>0])->order("addtime desc")->find();
|
|
|
+
|
|
|
+ }
|
|
|
+ $supplier = Db::name("supplier")->where(["code"=>$order['supplierNo']])->find();
|
|
|
+ $order['supplier_name'] = isset($supplier['name']) ? $supplier['name']:"";
|
|
|
+// $palt =Db::name("platform")->where(["id"=>$order['platform_id']])->find();
|
|
|
+// $order['platform_name']=isset($palt['platform_name']) ? $palt['platform_name']:"";
|
|
|
+ $order["gold_price"] = isset($price['price'])?$price['price']:0;
|
|
|
+ $order["noble_weight"] = isset($order['weight'])?$order['weight']:0;
|
|
|
+ return app_show(0,"获取成功",$order);
|
|
|
+ }
|
|
|
}
|