123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260 |
- <?php
- namespace app\abutment\controller;
- use app\admin\common\User;
- use app\admin\model\ActionLog;
- use app\admin\model\ProcessOrder;
- use think\facade\Db;
- use think\facade\Validate;
- class Consult extends HomeBaseController
- {
- private $noble = ['0' => '', '1' => '18K', '2' => '24K', '3' => '白银'];
- //招标工作台列表
- public function crontablist()
- {
- $this->post = $this->request->filter('trim')->post();
- $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
- $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
- //过滤贵金属相关的记录
- $where = [['a.is_del', "=", 0], ['b.is_del', "=", 0], ['a.cat_id', "not in", [6, 65, 88, 396, 718, 719, 819]]];
- $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
- if ($zxNo !== "") $where[] = ['a.zxNo', '=', $zxNo];
- $salesman = isset($this->post['salesman']) && $this->post['salesman'] !== "" ? trim($this->post['salesman']) : "";
- if ($salesman !== "") $where[] = ["b.salesman", 'like', "%$salesman%"];
- $cpName = isset($this->post['cpName']) && $this->post['cpName'] !== "" ? trim($this->post['cpName']) : "";
- if ($cpName !== "") $where[] = ["a.good_Name", 'like', "%$cpName%"];
- $khNo = isset($this->post['khNo']) && $this->post['khNo'] !== "" ? trim($this->post['khNo']) : "";
- if ($khNo !== "") $where[] = ["b.khNo", 'like', "%$khNo%"];
- $start = isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start'] : "";
- if ($start != "") $where[] = ["a.addtime", '>=', $start];
- $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] : "";
- if ($end != "") $where[] = ["a.addtime", '<=', $end];
- $status = isset($this->post['status']) && $this->post['status'] !== "" ? trim($this->post['status']) : "";
- if ($status !== "") $where[] = ["a.status", '=', $status];
- $count = Db::name('consult_info')
- ->alias("a")
- ->leftJoin("consult_order b", "a.zxNo=b.zxNo")
- ->where($where)
- ->count();
- $total = ceil($count / $size);
- $page = $page >= $total ? $total : $page;
- $list = Db::name('consult_info')
- ->alias("a")
- ->leftJoin("consult_order b", "a.zxNo=b.zxNo")
- ->where($where)
- ->page($page, $size)
- ->field("a.*,b.createrid,b.creater,b.is_project,b.projectNo,b.khNo,b.endtime,b.platform_code,b.saleid,b.salesman,b.depart")
- ->select()
- ->toArray();
- $data = [];
- $all_cat = Db::name('cat')
- ->whereIn('id', array_column($list, 'cat_id'))
- ->column('order_rate', 'id');
- $all_brand = Db::name('brand')
- ->whereIn('id', array_column($list, 'brand_id'))
- ->column('brand_name', 'id');
- $userCommon = new User();
- $customer = $userCommon->handle('getCodeAndName',['code'=>array_column($list,'khNo')]);
- foreach ($list as $value) {
- $value['can'] = isset($value['cat_id']) && $value['cat_id'] != 0 ? made($value['cat_id']) : [];
- // $cat = Db::name("cat")->where(["id" => $value['cat_id']])->find();
- $budget = isset($all_cat[$value['cat_id']]) ? $all_cat[$value['cat_id']] : 0;
- $value['original_price'] = sprintf("%.2f", $value['budget_price'] * (1 - $budget / 100));
- // $brand = Db::name("brand")->where(['id' => $value['brand_id']])->find();
- $value['brand_name'] = isset($all_brand[$value['brand_id']]) && $all_brand[$value['brand_id']] != '' ? $all_brand[$value['brand_id']] : "";
- $value['khname'] = "";
- $value['specinfo'] = isset($value['specinfo']) && $value['specinfo'] != "" ? json_decode($value['specinfo'], true) : [];
- if ($value['khNo'] !== "") {
- // $kh = Db::name("customer_info")
- // ->where(['companyNo' => $value['khNo']])
- // ->find();
- $value['khname'] = $customer['data'][$value['khNo']]??'';//isset($kh['companyName']) ? $kh['companyName'] : "";
- }
- $consult = Db::name("consult_bids")
- ->where(["infoNo" => $value['infoNo'], "createrid" => $this->request->user['uid'], "is_del" => 0])
- ->find();
- $consults = Db::name("consult_bids")
- ->where(["infoNo" => $value['infoNo'], "is_del" => 0])
- ->find();
- $value['is_feed'] = $consult == false ? 0 : 1;
- $value['is_all_feed'] = $consults == false ? 0 : 1;
- $value['metal_name'] = isset($value['metal_id']) && $value['metal_id'] != 0 ? $this->noble[$value['metal_id']] : "";
- $data[] = $value;
- }
- return json_show(0, "获取成功", ['count' => $count, 'list' => $data]);
- }
- //招标工作台详情
- public function zxinfo()
- {
- $this->post = $this->request->filter('trim')->post();
- $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] != "" ? trim($this->post['infoNo']) : "";
- if ($infoNo == "") {
- return json_show(1004, "参数infoNo不能为空");
- }
- $zxinfo = Db::name("consult_info")->where(["infoNo" => $infoNo, "is_del" => 0])->find();
- if ($zxinfo == false) {
- return json_show(1004, "未找到信息数据");
- }
- $zxorder = Db::name("consult_order")->where(["zxNo" => $zxinfo['zxNo'], "is_del" => 0])->find();
- if ($zxorder == false) {
- return json_show(1004, "未找到咨询信息数据");
- }
- $cat = Db::name("cat")->where(["id" => $zxinfo['cat_id']])->find();
- $budget = isset($cat['order_rate']) ? $cat['order_rate'] : 0;
- $zxinfo['can'] = isset($zxinfo['cat_id']) && $zxinfo['cat_id'] != 0 ? made($zxinfo['cat_id'], []) : [];
- $zxinfo['khname'] = "";
- $zxinfo['original_price'] = sprintf("%.2f", $zxinfo['budget_price'] * (1 - $budget / 100));
- $zxinfo['khNo'] = "";
- $zxinfo['brand_id'] = $zxinfo['brand_id'] == 0 ? "" : $zxinfo['brand_id'];
- $zxinfo['brand'] = "";
- $zxinfo['companyNo'] = isset($zxorder['companyNo']) ? $zxorder['companyNo'] : "";
- $zxinfo['projectNo'] = isset($zxorder['projectNo']) ? $zxorder['projectNo'] : "";
- $zxinfo['is_project'] = isset($zxorder['is_project']) ? $zxorder['is_project'] : "";
- $zxinfo['company'] = "";
- $zxinfo['endtime'] = isset($zxorder['endtime']) ? $zxorder['endtime'] : "";
- $zxinfo['platform_code'] = isset($zxorder['platform_code']) ? $zxorder['platform_code'] : "";
- $zxinfo['salesman'] = isset($zxorder['salesman']) ? $zxorder['salesman'] : "";
- $zxinfo['saleid'] = isset($zxorder['saleid']) ? $zxorder['saleid'] : "";
- $zxinfo['depart'] = isset($zxorder['depart']) ? $zxorder['depart'] : "";
- $zxinfo['project_name'] = "";
- $zxinfo['budget_total'] = "";
- $zxinfo['departinfo'] = [];
- $zxinfo['unit_name'] = "";
- $zxinfo['metal_name'] = isset($zxinfo['metal_id']) && $zxinfo['metal_id'] != 0 ? $this->noble[$zxinfo['metal_id']] : "";
- $zxinfo['specinfo'] = json_decode($zxinfo['specinfo'], true);
- $codes=[];
- if ($zxorder['khNo'] !== "") $codes[]=$zxorder['khNo'];
- // $kh = Db::name("customer_info")->where(['companyNo' => $zxorder['khNo']])->find();
- // $zxinfo['khname'] = isset($kh['companyName']) ? $kh['companyName'] : "";
- // $zxinfo['khNo'] = $zxorder['khNo'];
- // }
- if ($zxinfo['unit'] !== "") {
- $unit = Db::name("unit")->where(['id' => $zxinfo['unit']])->find();
- $zxinfo['unit_name'] = isset($unit['unit']) ? $unit['unit'] : "";
- }
- if ($zxinfo['brand_id'] !== "") {
- $unit = Db::name("brand")->where(['id' => $zxinfo['brand_id']])->find();
- $zxinfo['brand'] = isset($unit['brand_name']) ? $unit['brand_name'] : "";
- }
- if ($zxorder['companyNo'] !== "") $codes[]=$zxorder['companyNo'];
- // $kh = Db::name("business")->where(['companyNo' => $zxorder['companyNo']])->find();
- // $zxinfo['company'] = isset($kh['company']) ? $kh['company'] : "";
- // }
- if ($zxorder['is_project'] == 1 && $zxorder['projectNo'] !== "") {
- $project = Db::name("project")->where(["projectNo" => $zxorder['projectNo'], "is_del" => 0])->find();
- $zxinfo['project_name'] = isset($project['project_name']) ? $project['project_name'] : "";
- $zxinfo['budget_total'] = isset($project['budget_total']) ? $project['budget_total'] : "";
- $zxinfo['project_use_desc'] = isset($project['use_desc']) ? $project['use_desc'] : "";
- $projectinfo = Db::name("project_info")->where(["pgNo" => $zxinfo['pgNo']])->find();
- $zxinfo['pgNo'] = isset($projectinfo['pgNo']) ? $projectinfo['pgNo'] : "";
- }
- $userCommon = new User();
- if ($zxorder['depart'] > 0) {
- $rs = $userCommon->handle('ciinfo', ['id' => $zxorder['depart']]);
- $zxinfo['departinfo'] = $rs['data'] ?? [];
- }
- if ($zxorder['platform_code'] > 0) {
- $palt = Db::name("platform")->where(["id" => $zxorder['platform_code']])->find();
- $zxinfo['platform_name'] = isset($palt['platform_name']) ? $palt['platform_name'] : "";
- }
- if($codes){
- $names = $userCommon->handle('getCodeAndName',['code'=>$codes]);
- $zxinfo['khname'] = $names['data'][$zxorder['khNo']]??'';//isset($kh['companyName']) ? $kh['companyName'] : "";
- $zxinfo['khNo'] = $zxorder['khNo'];
- $zxinfo['company'] = $names['data'][$zxorder['companyNo']]??'';//
- }
- return json_show(0, "获取成功", $zxinfo);
- }
- //采反商品列表
- public function bidlist()
- {
- $this->post = $this->request->filter('trim')->post();
- $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
- $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
- $where = [['is_del', "=", 0]];
- $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
- if ($zxNo !== "") {
- $where[] = ['zxNo', 'like', '%' . $zxNo . '%'];
- }
- $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
- if ($infoNo !== "") {
- $where[] = ['infoNo', 'like', '%' . $infoNo . '%'];
- }
- $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] !== "" ? trim($this->post['bidNo']) : "";
- if ($bidNo !== "") {
- $where[] = ['bidNo', 'like', '%' . $bidNo . '%'];
- }
- $pgNo = isset($this->post['pgNo']) && $this->post['pgNo'] !== "" ? trim($this->post['pgNo']) : "";
- if ($pgNo !== "") {
- $bidinfo = Db::name("consult_info")->where([["pgNo", "=", $pgNo], ["is_del", "=", 0]])->column("infoNo");
- $where[] = ['infoNo', 'in', $bidinfo];
- }
- $bargain_status = isset($this->post['bargain_status']) && $this->post['bargain_status'] !== "" ? intval($this->post['bargain_status']) : "";
- if ($bargain_status !== "") {
- $bidinfo = Db::name("consult_info")->where([["bargain_status", "=", $bargain_status], ["is_del", "=", 0]])->column("infoNo");
- $where[] = ['infoNo', 'in', $bidinfo];
- }
- $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
- if ($projectNo !== "") {
- $zxlist = Db::name("consult_order")->where(["projectNo" => $projectNo, "is_del" => 0, "is_project" => 1])->column("zxNo");
- $where[] = ['zxNo', 'in', $zxlist];
- }
- $is_own = isset($this->post['is_own']) ? intval($this->post['is_own']) : "0";
- if ($is_own == 1) {
- // $token = isset($this->post['token']) ? trim($this->post['token']) : "";
- // if($token==""){
- // return json_show(101,'token不能为空');
- // }
- // $apply_id =GetUserInfo($token);
- // if(empty($apply_id)||$apply_id['code']!=0){
- // return json_show(1002,"申请人数据不存在");
- // }
- $rm = $this->request->user['uid'];
- $where[] = ['createrid', "=", $rm];
- }
- $count = Db::name('consult_bids')->where($where)->count();
- $total = ceil($count / $size);
- $page = $page >= $total ? $total : $page;
- $list = Db::name('consult_bids')->where($where)->page($page, $size)->select()->toArray();
- $data = [];
- foreach ($list as $value) {
- $catinfo = Db::name("cat")->where(["id" => $value['cat_id']])->find();
- $value['can'] = isset($value['cat_id']) && $value['cat_id'] != 0 ? made($value['cat_id']) : [];
- $unit = Db::name("unit")->where(["id" => $value['unit_id']])->find();
- $value['unit'] = isset($unit['unit']) ? $unit['unit'] : '';
- $supplier = Db::name("supplier")->where(["code" => $value['supplierNo']])->find();
- $value['supplierName'] = isset($supplier['name']) ? $supplier['name'] : "";
- if ($value['brand_id'] != 0) {
- $brand = Db::name("brand")->where(["id" => $value['brand_id']])->find();
- $value["brand_name"] = isset($brand['brand_name']) ? $brand['brand_name'] : "";
- } else {
- $value["brand_name"] = "";
- $value["brand_id"] = "";
- }
- $bidinfo = Db::name("consult_info")->where(["infoNo" => $value["infoNo"]])->find();
- $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate'] : 0;
- $god = [
- "metal_id" => $value['metal_id'],
- "weight" => $value["good_weight"],
- "demo_fee" => $value["demo_fee"],
- "delivery_fee" => $value["delivery_fee"],
- "open_fee" => $value["open_fee"],
- "packing_fee" => $value["pakge_fee"],
- "mark_fee" => $value["mark_fee"],
- "nake_fee" => $value["nake_fee"],
- "cert_fee" => $value["cert_fee"],
- // "cost_fee"=>$value["cost_fee"],
- "cost_fee" => $value["sale_cost_fee"] != $value['origin_cost_fee'] ? $value["sale_cost_fee"] : $value["cost_fee"],
- "num" => $bidinfo["num"],
- ];
- $top_cat = made($value['cat_id']);
- $top_cat_id = isset($top_cat[0]['id']) ? $top_cat[0]['id'] : 0;
- if ($value['is_gold_price'] == 1 && $top_cat_id == 6) {
- $price = GoldPrice($god, $budget / 100);
- $value['sale_price'] = round($price, 2);
- $value['origin_price'] = $value["sale_cost_fee"] != $value['origin_cost_fee'] ? $value["sale_price"] :
- $value["origin_price"];
- }
- $value['cost_fee'] = $value['origin_cost_fee'];
- $value['specinfo'] = json_decode($value['specinfo'], true);
- $value['metal_name'] = isset($value['metal_id']) && $value['metal_id'] != 0 ? $this->noble[$value['metal_id']] : "";
- $value['bargain_status'] = $bidinfo['bargain_status'];
- //reject驳回原因,status==5表示驳回
- $value['reject'] = [];
- if ($value['status'] >= 5) {
- $value['reject'] = Db::name('bargain_order')
- ->field('id,remark,status')
- ->where(['infoNo' => $infoNo, 'bidsNo' => $value['bidNo']])
- ->whereIn('status', [3, 8, 11])->order("id desc")
- ->find();
- }
- //产地
- $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
- if ($value['delivery_place'] != "") {
- list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $value['delivery_place']);
- }
- $value['delivery_place_cn'] = GetAddr(json_encode($place));
- $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
- if ($value['origin_place'] != "") {
- list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $value['origin_place']);
- }
- $value['origin_addr'] = GetAddr(json_encode($place));
- // if($value['origin_place']!=''){
- // $code = explode(",",$value['origin_place']);
- // $temp=[];
- // $temp['provice_code']=isset($code[0])?$code[0]:"";
- // $temp['city_code']=isset($code[1])?$code[1]:"";
- // $temp['area_code']=isset($code[2])?$code[2]:"";
- // $addr= GetAddr(json_encode($temp));
- // $value['origin_addr'] = $addr;
- // }
- $data[] = $value;
- }
- return json_show(0, "获取成功", ['count' => $count, 'list' => $data]);
- }
- //创建采反商品
- public function create()
- {
- $this->post = $this->request->filter('trim')->post();
- $is_project = isset($this->post['is_project']) && $this->post['is_project'] !== "" ? intval($this->post['is_project']) : "";
- if ($is_project === "") {
- return json_show(1002, "参数is_project不能为空");
- }
- if ($is_project == 1) {
- $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
- if ($projectNo === "") {
- return json_show(1002, "参数projectNo不能为空");
- }
- }
- $khNo = isset($this->post['khNo']) && $this->post['khNo'] !== "" ? trim($this->post['khNo']) : "";
- if ($khNo === "") {
- return json_show(1002, "参数khNo不能为空");
- }
- $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
- if ($companyNo === "") {
- return json_show(1002, "参数companyNo不能为空");
- }
- $endtime = isset($this->post['endtime']) && $this->post['endtime'] !== "" ? $this->post['endtime'] : "";
- if ($endtime === "") {
- return json_show(1002, "参数endtime不能为空");
- }
- $platform_code = isset($this->post['platform_code']) && $this->post['platform_code'] !== "" ? trim($this->post['platform_code']) :
- "";
- if ($platform_code === "") {
- return json_show(1002, "参数platform_code不能为空");
- }
- $ladder = isset($this->post['ladder']) && !empty($this->post['ladder']) ? $this->post['ladder'] : "";
- if ($ladder == "") {
- return json_show(1005, "参数ladder不能为空");
- }
- // $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
- // if($token==''){
- // return json_show(105,"参数token不能为空");
- // }
- // $user =GetUserInfo($token);
- // if(empty($user)||$user['code']!=0){
- // return json_show(102,"用户数据不存在");
- // }
- $createrid = $this->request->user['uid'];
- $creater = $this->request->user['nickname'];
- $depart = Db::name("depart_user")->where(["uid" => $createrid, "status" => 1, "is_del" => 0])->find();
- $zxNo = makeNo("ZX");
- Db::startTrans();
- try {
- $data = [
- "zxNo" => $zxNo,
- "createrid" => $createrid,
- "creater" => $creater,
- "is_project" => $is_project,
- "projectNo" => isset($projectNo) ? $projectNo : "",
- "khNo" => $khNo,
- "companyNo" => $companyNo,
- "endtime" => $endtime,
- "salesman" => $creater,
- "platform_code" => $platform_code,
- "saleid" => $createrid,
- "depart" => isset($depart['itemid']) ? $depart['itemid'] : 0,
- "status" => 0,
- "is_del" => 0,
- "addtime" => date("Y-m-d H:i:s"),
- "updatetime" => date("Y-m-d H:i:s"),
- ];
- $zx = Db::name("consult_order")->insert($data);
- if ($zx) {
- //判断是否是项目,且该项目是否存在台账记录中
- if ($is_project == 1) $stand_exists = Db::name('standing_book')->field('id')->where('projectNo', $projectNo)->find();
- foreach ($ladder as $value) {
- $infoNo = makeNo("IF");
- $specinfo = [];
- if (isset($value['specinfo']) && !empty($value['specinfo'])) {
- foreach ($value["specinfo"] as $v) {
- $spec = Db::name("specs")->where(["id" => $v['specid']])->find();
- $spec_value = Db::name("spec_value")->where(["id" => $v['spec_value_id']])->find();
- $v['spec_name'] = isset($spec['spec_name']) ? $spec['spec_name'] : "";
- $v['spec_value_name'] = isset($spec_value['spec_value']) ? $spec_value['spec_value'] : "";
- $specinfo[] = $v;
- }
- }
- $info = [
- "infoNo" => $infoNo,
- "zxNo" => $zxNo,
- "spuCode" => "",
- "good_name" => $value['good_name'],
- "good_img" => $value['good_img'],
- "cat_id" => $value['cat_id'],
- "unit" => $value['unit'],
- "brand_id" => $value['brand_id'],
- "arrival_time" => $value['arrival_time'],
- "specinfo" => empty($specinfo) ? "" : json_encode($specinfo),
- "cost_desc" => isset($value['cost_desc']) ? $value['cost_desc'] : '',
- "is_addrs" => $value['is_addrs'],
- "is_custom" => $value['is_custom'],
- "metal_id" => $value['metal_id'],
- "config" => isset($value['config']) ? $value['config'] : "",
- "other_config" => isset($value['other_config']) ? $value['other_config'] : "",
- "specs_weight" => isset($value['specs_weight']) ? $value['specs_weight'] : "0",
- "gold_price" => isset($value['gold_price']) ? $value['gold_price'] : "0",
- "is_gold_price" => isset($value['is_gold_price']) ? $value['is_gold_price'] : "0",
- "total_weight" => isset($value['total_weight']) ? $value['total_weight'] : "0",
- "budget_price" => $value['budget_price'],
- "num" => $value['num'],
- "pgNo" => isset($value['pgNo']) && $value['pgNo'] !== "" ? trim($value['pgNo']) : "",
- "use_desc" => $value['use_desc'],
- "remark" => $value['remark'],
- "status" => 1,
- "is_del" => 0,
- "addtime" => date("Y-m-d H:i:s"),
- "updatetime" => date("Y-m-d H:i:s"),
- 'enclosure_file' => isset($value['enclosure_file']) ? $value['enclosure_file'] : '',
- ];
- $up = Db::name("consult_info")->insertGetId($info);
- if (!$up) {
- Db::rollback();
- return json_show(1004, '添加失败');
- } else {
- //修改状态
- ActionLog::logAdd(['id' => $createrid, 'nickname' => $creater], [
- "order_code" => $infoNo,//咨询单详情编号
- "status" => 1,//这里的status是之前的值
- "action_remark" => '',//备注
- "action_type" => "create"//新建create,编辑edit,更改状态status
- ], "ZXD", 1, $info);
- //竞价单不走流程,不推待办已办
- // ProcessOrder::AddProcess(['id' => $createrid, 'nickname' => $creater], [
- // "order_type" => 'ZXD',
- // "order_code" => $infoNo,//咨询单详情编号
- // "order_id" => $up,
- // "order_status" => 1,
- // 'before_status'=>0
- // ]);
- //如果存在该项目编码,更新对应的第一个竞价单编码,其他竞价单编码新增(带着项目编码)
- if (isset($stand_exists)) {
- Db::name('standing_book')
- ->where('id', $stand_exists['id'])
- ->update([
- 'infoNo' => $infoNo,
- 'updatetime' => date('Y-m-d H:i:s')
- ]);
- unset($stand_exists);//后面的竞价单编码不用更新,都是新增
- } else {
- //添加台账信息
- Db::name('standing_book')
- ->insert([
- 'standBookNo' => makeNo("IO"),
- 'projectNo' => isset($projectNo) ? $projectNo : '',
- 'infoNo' => $infoNo,
- 'companyNo' => $companyNo,
- 'customer_code' => $khNo,
- 'addtime' => date('Y-m-d H:i:s'),
- 'updatetime' => date('Y-m-d H:i:s')
- ]);
- }
- }
- }
- Db::commit();
- return json_show(0, "新建成功", ["zxNo" => $zxNo]);
- } else {
- Db::rollback();
- return json_show(1004, "新建失败");
- }
- } catch (\Exception $e) {
- Db::rollback();
- return json_show(1003, $e->getMessage());
- }
- }
- //复制上面的bidlist方法,只更改排序方式
- public function bidlistCopy()
- {
- $this->post = $this->request->filter('trim')->post();
- $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) : "1";
- $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) : "10";
- $where = [['cb.is_del', "=", 0], ['c.status', '<>', 6]];//不要'取消转单'状态下的数据
- $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
- if ($zxNo !== "") {
- $where[] = ['cb.zxNo', 'like', '%' . $zxNo . '%'];
- }
- $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
- if ($infoNo !== "") {
- $where[] = ['cb.infoNo', 'like', '%' . $infoNo . '%'];
- }
- $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] !== "" ? trim($this->post['bidNo']) : "";
- if ($bidNo !== "") {
- $where[] = ['cb.bidNo', 'like', '%' . $bidNo . '%'];
- }
- $pgNo = isset($this->post['pgNo']) && $this->post['pgNo'] !== "" ? trim($this->post['pgNo']) : "";
- if ($pgNo !== "") {
- $bidinfo = Db::name("consult_info")->where([["pgNo", "=", $pgNo], ["is_del", "=", 0]])->column("infoNo");
- $where[] = ['cb.infoNo', 'in', $bidinfo];
- }
- $bargain_status = isset($this->post['bargain_status']) && $this->post['bargain_status'] !== "" ? intval($this->post['bargain_status']) : "";
- if ($bargain_status !== "") {
- $bidinfo = Db::name("consult_info")->where([["bargain_status", "=", $bargain_status], ["is_del", "=", 0]])->column("infoNo");
- $where[] = ['cb.infoNo', 'in', $bidinfo];
- }
- $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
- if ($projectNo !== "") {
- $zxlist = Db::name("consult_order")->where(["projectNo" => $projectNo, "is_del" => 0, "is_project" => 1])->column
- ("zxNo");
- $where[] = ['cb.zxNo', 'in', $zxlist];
- }
- $is_own = isset($this->post['is_own']) ? intval($this->post['is_own']) : "0";
- if ($is_own == 1) {
- // $token = isset($this->post['token']) ? trim($this->post['token']) : "";
- // if ($token == "") {
- // return json_show(101, 'token不能为空');
- // }
- // $apply_id = GetUserInfo($token);
- // if (empty($apply_id) || $apply_id['code'] != 0) {
- // return json_show(1002, "申请人数据不存在");
- // }
- $where[] = ['cb.createrid', "=", $this->request->user['uid']];
- $where[] = ['cb.supplierNo', "=", $this->request->user['supplierNo']];
- }
- $company_name = isset($this->post['company_name']) && $this->post['company_name'] !== "" ? trim($this->post['company_name']) : "";
- if ($company_name !== "") $where[] = ["cb.createrid", 'in', get_company_item_user_by_name($company_name)];
- $relaComNo = isset($this->post['relaComNo']) && $this->post['relaComNo']!="" ? trim($this->post['relaComNo']):"";
- if($relaComNo!="") $where[]=['cb.supplierNo','=', $relaComNo];
- $count = Db::name('consult_bids')
- ->alias('cb')
- ->leftJoin("depart_user u", "u.uid=cb.createrid AND u.is_del=0")
- ->leftJoin("consult_info c", "c.infoNo=cb.infoNo")
- ->where($where)
- ->count();
- $total = ceil($count / $size);
- $page = $page >= $total ? $total : $page;
- $list = Db::name('consult_bids')
- ->alias('cb')
- ->field('cb.*')
- ->leftJoin("consult_info c", "c.infoNo=cb.infoNo")
- ->where($where)
- ->page($page, $size)
- ->order('cb.addtime', 'desc')
- ->select()
- ->toArray();
- $all_createrid = array_column($list,'createrid');
- $item = get_company_name_by_uid($all_createrid);
- $data = [];
- foreach ($list as $value) {
- $catinfo = Db::name("cat")->where(["id" => $value['cat_id']])->find();
- $value['can'] = isset($value['cat_id']) && $value['cat_id'] != 0 ? made($value['cat_id']) : [];
- $unit = Db::name("unit")->where(["id" => $value['unit_id']])->find();
- $value['unit'] = isset($unit['unit']) ? $unit['unit'] : '';
- $supplier = Db::name("supplier")->where(["code" => $value['supplierNo']])->find();
- $value['supplierName'] = isset($supplier['name']) ? $supplier['name'] : "";
- if ($value['brand_id'] != 0) {
- $brand = Db::name("brand")->where(["id" => $value['brand_id']])->find();
- $value["brand_name"] = isset($brand['brand_name']) ? $brand['brand_name'] : "";
- } else {
- $value["brand_name"] = "";
- $value["brand_id"] = "";
- }
- $bidinfo = Db::name("consult_info")->where(["infoNo" => $value["infoNo"]])->find();
- $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate'] : 0;
- $god = [
- "metal_id" => $value['metal_id'],
- "weight" => $value["good_weight"],
- "demo_fee" => $value["demo_fee"],
- "delivery_fee" => $value["delivery_fee"],
- "open_fee" => $value["open_fee"],
- "packing_fee" => $value["pakge_fee"],
- "mark_fee" => $value["mark_fee"],
- "nake_fee" => $value["nake_fee"],
- "cert_fee" => $value["cert_fee"],
- "cost_fee" => $value["sale_cost_fee"] != $value["origin_cost_fee"] ? $value["sale_cost_fee"] : $value["cost_fee"],
- "num" => $bidinfo["num"],
- ];
- if ($value['is_gold_price'] == 1) {
- $price = GoldPrice($god, $budget / 100);
- $value['sale_price'] = round($price, 2);
- }
- $value['cost_fee'] = $value['origin_cost_fee'];
- $value['specinfo'] = json_decode($value['specinfo'], true);
- $value['metal_name'] = isset($value['metal_id']) && $value['metal_id'] != 0 ? $this->noble[$value['metal_id']] : "";
- $value['bargain_status'] = $bidinfo['bargain_status'];
- //reject驳回原因,status==5表示驳回
- $value['reject'] = [];
- if ($value['status'] >= 5) {
- $value['reject'] = Db::name('bargain_order')
- ->field('id,remark,status')
- ->where(['infoNo' => $infoNo, 'bidsNo' => $value['bidNo']])
- ->whereIn('status', [3, 8, 11])->order("id desc")
- ->find();
- }
- //产地
- $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
- if ($value['delivery_place'] != "") {
- list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $value['delivery_place']);
- }
- $value['delivery_place_cn'] = GetAddr(json_encode($place));
- $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
- if ($value['origin_place'] != "") {
- list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $value['origin_place']);
- }
- $value['origin_addr'] = GetAddr(json_encode($place));
- // if($value['origin_place']!=''){
- // $code = explode(",",$value['origin_place']);
- // $temp=[];
- // $temp['provice_code']=isset($code[0])?$code[0]:"";
- // $temp['city_code']=isset($code[1])?$code[1]:"";
- // $temp['area_code']=isset($code[2])?$code[2]:"";
- // $addr= GetAddr(json_encode($temp));
- // $value['origin_addr'] = $addr;
- // }
- $value['company_name'] = $item[$value['createrid']] ?? '';
- $data[] = $value;
- }
- return json_show(0, "获取成功", ['count' => $count, 'list' => $data]);
- }
- //反馈商品详情
- public function feadinfo()
- {
- $this->post = $this->request->filter('trim')->post();
- $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] != "" ? trim($this->post['bidNo']) : "";
- if ($bidNo == "") {
- return json_show(1004, "参数bidNo不能为空");
- }
- $info = Db::name("consult_bids")->where(['bidNo' => $bidNo, "is_del" => 0])->find();
- if ($info == false) {
- return json_show(1004, "未找到商品数据");
- }
- $unit = Db::name("unit")->where(["id" => $info['unit_id']])->find();
- $info['unit'] = isset($unit['unit']) ? $unit['unit'] : '';
- $info['cat_info'] = made($info['cat_id'], []);
- $info['noble_weight'] = $info['good_weight'];
- $supplier = Db::name("supplier")->where(["code" => $info['supplierNo']])->find();
- $info['supplierName'] = isset($supplier['name']) ? $supplier['name'] : "";
- if ($info['brand_id'] != 0) {
- $brand = Db::name("brand")->where(["id" => $info['brand_id']])->find();
- $info["brand_name"] = isset($brand['brand_name']) ? $brand['brand_name'] : "";
- } else {
- $info["brand_name"] = "";
- $info["brand_id"] = "";
- }
- $catinfo = Db::name("cat")->where(["id" => $info['cat_id']])->find();
- $bidinfo = Db::name("consult_info")->where(["infoNo" => $info["infoNo"]])->find();
- $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate'] : 0;
- $god = [
- "metal_id" => $info['metal_id'],
- "weight" => $info["good_weight"],
- "demo_fee" => $info["demo_fee"],
- "delivery_fee" => $info["delivery_fee"],
- "open_fee" => $info["open_fee"],
- "packing_fee" => $info["pakge_fee"],
- "mark_fee" => $info["mark_fee"],
- "nake_fee" => $info["nake_fee"],
- "cert_fee" => $info["cert_fee"],
- "cost_fee" => $info["cost_fee"],
- "num" => $bidinfo["num"],
- ];
- if ($info['is_gold_price'] == 1) {
- $price = GoldPrice($god, $budget / 100);
- $info['sale_price'] = round($price, 2);
- }
- $info['specinfo'] = json_decode($info['specinfo'], true);
- $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
- if ($info['delivery_place'] != "") {
- list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $info['delivery_place']);
- }
- $info['delivery_place_cn'] = GetAddr(json_encode($place));
- $place = ["provice_code" => "", "city_code" => "", "area_code" => ""];
- if ($info['origin_place'] != "") {
- list($place['provice_code'], $place['city_code'], $place['area_code']) = explode(",", $info['origin_place']);
- }
- $info['origin_place_cn'] = GetAddr(json_encode($place));
- $info['metal_name'] = isset($info['metal_id']) && $info['metal_id'] != 0 ? $this->noble[$info['metal_id']] : "";
- $bargain = Db::name("bargain_order")->where(['bidsNo' => $bidNo, "is_del" => 0])->find();
- $info['bargain'] = $bargain;
- $info['good_img'] = explode(',', $info['good_img']);
- return json_show(0, "获取成功", $info);
- }
- //反馈商品添加
- public function feadback()
- {
- $this->post = $this->request->filter('trim')->post();
- $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] != "" ? trim($this->post['infoNo']) : "";
- if ($infoNo == "") {
- return json_show(1002, "参数infoNo不能为空");
- }
- $zxinfo = Db::name("consult_info")->where(["infoNo" => $infoNo, "is_del" => 0])->find();
- if ($zxinfo == false) {
- return json_show(1003, "未找到信息数据");
- }
- if ($zxinfo['status'] != 1) {
- return json_show(1004, "任务未进行");
- }
- $zx = Db::name("consult_order")->where(["zxNo" => $zxinfo['zxNo'], "is_del" => 0])->find();
- if ($zx == false) {
- return json_show(1003, "未找咨询信息数据");
- }
- $pname = isset($this->post['pname']) && $this->post['pname'] != "" ? trim($this->post['pname']) : "";
- if ($pname == "") {
- return json_show(1002, "参数pname不能为空");
- }
- $brandid = isset($this->post['brandid']) && $this->post['brandid'] != "" ? intval($this->post['brandid']) : "";
- $cat_id = isset($this->post['cat_id']) && $this->post['cat_id'] != "" ? trim($this->post['cat_id']) : "";
- if ($cat_id == "") {
- return json_show(1002, "参数cat_id不能为空");
- }
- $specin = isset($this->post['specinfo']) && !empty($this->post['specinfo']) ? $this->post['specinfo'] : "";
- if ($specin == "") {
- return json_show(1003, "参数specinfo不能为空");
- }
- $specinfo = [];
- foreach ($specin as $v) {
- $spec = Db::name("specs")->where(["id" => $v['specid']])->find();
- $spec_value = Db::name("spec_value")->where(["id" => $v['spec_value_id']])->find();
- $v['spec_name'] = isset($spec['spec_name']) ? $spec['spec_name'] : "";
- $v['spec_value_name'] = isset($spec_value['spec_value']) ? $spec_value['spec_value'] : "";
- $specinfo[] = $v;
- }
- $unit_id = isset($this->post['unit_id']) && $this->post['unit_id'] != "" ? intval($this->post['unit_id']) : "";
- $cost_desc = isset($this->post['cost_desc']) && $this->post['cost_desc'] != "" ? trim($this->post['cost_desc']) : "";
- $work_day = isset($this->post['work_day']) && $this->post['work_day'] != "" ? intval($this->post['work_day']) : "";
- $delivery_day = isset($this->post['delivery_day']) && $this->post['delivery_day'] != "" ? intval($this->post['delivery_day']) : "";
- $good_img = isset($this->post['good_img']) && $this->post['good_img'] != "" ? $this->post['good_img'] : [];
- $expire_day = isset($this->post['expire_day']) && $this->post['expire_day'] != "" ? intval($this->post['expire_day']) : "";
- $origin_place = isset($this->post['origin_place']) && $this->post['origin_place'] != "" ? trim($this->post['origin_place']) : "";
- $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] != "" ? trim($this->post['supplierNo']) : "";
- $pay_way = isset($this->post['pay_way']) && $this->post['pay_way'] != "" ? intval($this->post['pay_way']) : "";
- $tax = isset($this->post['tax']) && $this->post['tax'] != "" ? trim($this->post['tax']) : "";
- $send_way = isset($this->post['send_way']) && $this->post['send_way'] != "" ? intval($this->post['send_way']) : "";
- $metal_id = isset($this->post['metal_id']) && $this->post['metal_id'] != "" ? intval($this->post['metal_id']) : "0";
- $is_gold_price = isset($this->post['is_gold_price']) && $this->post['is_gold_price'] != "" ? intval($this->post['is_gold_price']) : "0";
- $config = isset($this->post['config']) && $this->post['config'] != "" ? $this->post['config'] : "";
- $other_config = isset($this->post['other_config']) && $this->post['other_config'] != "" ? $this->post['other_config'] : "";
- $weight = isset($this->post['weight']) && $this->post['weight'] !== "" ? floatval($this->post['weight']) : "0";
- $good_weight = isset($this->post['noble_weight']) && $this->post['noble_weight'] !== "" ? floatval($this->post['noble_weight']) : "0";
- $demo_fee = isset($this->post['demo_fee']) && $this->post['demo_fee'] !== "" ? floatval($this->post['demo_fee']) : "0";
- $delivery_fee = isset($this->post['delivery_fee']) && $this->post['delivery_fee'] !== "" ? floatval($this->post['delivery_fee']) : "0";
- $open_fee = isset($this->post['open_fee']) && $this->post['open_fee'] !== "" ? floatval($this->post['open_fee']) : "0";
- $pakge_fee = isset($this->post['pakge_fee']) && $this->post['pakge_fee'] !== "" ? floatval($this->post['pakge_fee']) : "0";
- $nake_fee = isset($this->post['nake_fee']) && $this->post['nake_fee'] !== "" ? floatval($this->post['nake_fee']) : "0";
- $mark_fee = isset($this->post['mark_fee']) && $this->post['mark_fee'] !== "" ? floatval($this->post['mark_fee']) : "0";
- $cert_fee = isset($this->post['cert_fee']) && $this->post['cert_fee'] !== "" ? floatval($this->post['cert_fee']) : "0";
- $cost_fee = isset($this->post['cost_fee']) && $this->post['cost_fee'] !== "" ? floatval($this->post['cost_fee']) : "0";
- if ($nake_fee === "") {
- return json_show(1004, "参数nake_fee不能为空");
- }
- $is_diff = isset($this->post['is_diff']) && $this->post['is_diff'] !== "" ? intval($this->post['is_diff']) : "";
- $supply_area = isset($this->post['supply_area']) && $this->post['supply_area'] !== "" ? intval($this->post['supply_area']) : "";
- $remark = isset($this->post['remark']) && $this->post['remark'] != "" ? trim($this->post['remark']) : "";
- $delivery_place = isset($this->post['delivery_place']) && $this->post['delivery_place'] != '' ? trim($this->post['delivery_place']) : "";
- if ($delivery_place == '') {
- return json_show(1002, "参数delivery_place不能为空");
- }
- // $token = isset($this->post['token']) && $this->post['token'] != '' ? trim($this->post['token']) : "";
- // if ($token == '') {
- // return json_show(1002, "参数token不能为空");
- // }
- // $user = GetUserInfo($token);
- // if (empty($user) || $user['code'] != 0) {
- // return json_show(1005, "用户数据不存在");
- // }
- $createrid = $this->request->user['uid'];
- $creater = $this->request->user['nickname'];
- $bidNo = makeNo("BD");
- $spucode = makeNo("SKU");
- $catinfo = Db::name("cat")->where(["id" => $cat_id])->find();
- $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate'] / 100 : 0;
- //部分参数的大小校验
- $vali = Validate::rule([
- 'expire_day|有效时长' => 'require|elt:214748364',
- 'delivery_day|物流时长' => 'require|elt:214748364',
- 'work_day|生产工期' => 'require|elt:214748364',
- 'weight|总重量' => 'require|max:10',
- ]);
- $temp = [
- 'expire_day' => $expire_day,
- 'delivery_day' => $delivery_day,
- 'work_day' => $work_day,
- 'weight' => $weight,
- ];
- if (!$vali->check($temp)) return json_show(0, $vali->getError());
- $sale_cost_fee = $cost_fee;//销售工艺费默认取传值
- $cat_top_list = made($cat_id);
- $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
- if ($is_gold_price == 1 && $cat_top_id == 6) {
- $gold = Db::name("gold_price1")->where(["type" => $metal_id, "is_del" => 0, "status" => 1])->order("addtime desc")->find();
- //$total_fee = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee*$weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
- //$total_fee(成本合计初始价格) =打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价0+运费;
- $total_fee = $demo_fee / $zxinfo['num'] + $open_fee / $zxinfo['num'] + $good_weight * $gold["price"] + $cost_fee * $good_weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee + $delivery_fee;
- // $saleprice = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee/(1-$budget)* $weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
- //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
- // $saleprice = ($open_fee / $zxinfo['num'] + $weight * $gold["price"] + $cost_fee * $weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee) / (1 - $budget);
- $saleprice = $total_fee / (1 - $budget);
- //销售工艺费=((开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100)-(打样费/购买数量 + 开模费/购买数量 +包装费+加标费+证书费+产品裸价0+运费) )/商品重量-最新金价
- $sale_cost_fee = ($saleprice - ($demo_fee / $zxinfo['num'] + $open_fee / $zxinfo['num'] + $pakge_fee + $mark_fee + $cert_fee + $nake_fee + $delivery_fee)) / $good_weight - $gold["price"];
- } else {
- if ($nake_fee) {
- $saleprice = ($demo_fee / $zxinfo['num'] + $delivery_fee + $open_fee / $zxinfo['num'] + $cost_fee * $good_weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee) / (1 - $budget);
- $total_fee = $demo_fee / $zxinfo['num'] + $delivery_fee + $open_fee / $zxinfo['num'] + $cost_fee * $good_weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee;
- } else {
- $saleprice = ($demo_fee / $zxinfo['num'] + $delivery_fee + $open_fee / $zxinfo['num'] + $cost_fee * $good_weight + $pakge_fee + $mark_fee + $cert_fee) / (1 - $budget);
- $total_fee = $demo_fee / $zxinfo['num'] + $delivery_fee + $open_fee / $zxinfo['num'] + $cost_fee * $good_weight + $pakge_fee + $mark_fee + $cert_fee;
- }
- }
- $supplier = Db::name('supplier')
- ->field('id,person,personid')
- ->where('code',$supplierNo)
- ->findOrEmpty();
- $data = [
- "bidNo" => $bidNo,
- "infoNo" => $infoNo,
- "zxNo" => $zxinfo['zxNo'],
- "spuCode" => $spucode,
- "good_name" => $pname,
- "brand_id" => $brandid,
- "cat_id" => $cat_id,
- "specinfo" => json_encode($specinfo),
- "unit_id" => $unit_id,
- "cost_desc" => $cost_desc,
- "work_day" => $work_day,
- "delivery_day" => $delivery_day,
- "good_img" => is_array($good_img) ? implode(',', $good_img) : $good_img,
- "expire_day" => $expire_day,
- "origin_place" => $origin_place,
- "supplierNo" => $supplierNo,
- "pay_way" => $pay_way,
- "tax" => $tax,
- "send_way" => $send_way,
- "metal_id" => $metal_id,
- "is_gold_price" => $is_gold_price,
- "config" => $config,
- "other_config" => $other_config,
- "weight" => $weight,
- "good_weight" => $good_weight,
- "gold_price" => isset($gold["price"]) ? $gold["price"] : 0,
- "is_diff" => $is_diff,
- "demo_fee" => $demo_fee,
- "delivery_fee" => $delivery_fee,
- "open_fee" => $open_fee,
- "pakge_fee" => $pakge_fee,
- "nake_fee" => $nake_fee,
- "mark_fee" => $mark_fee,
- "cert_fee" => $cert_fee,
- "cost_fee" => $cost_fee,
- "total_fee" => $total_fee,
- "supply_area" => $supply_area,
- "remark" => $remark,
- "sale_price" => $saleprice,
- "sale_cost_fee" => $sale_cost_fee,
- "origin_cost_fee" => $sale_cost_fee,
- "origin_price" => $saleprice,
- "createrid" => $createrid,
- "creater" => $creater,
- "status" => $zxinfo['status'] == 1 ? 1 : 2,
- "is_del" => 0,
- "addtime" => date("Y-m-d H:i:s"),
- "updatetime" => date("Y-m-d H:i:s"),
- 'delivery_place' => $delivery_place,//发货地
- 'cgder' => $supplier['person'] ?? '',
- 'cgderid' => $supplier['personid'] ?? 0,
- ];
- Db::startTrans();
- try {
- $insert = Db::name("consult_bids")->insert($data);
- if ($insert) {
- if ($zx['is_project'] == 1 && $zx['projectNo'] != "" && $zxinfo['pgNo'] != "") {
- $projectinfo = Db::name("project_info")->where(["pgNo" => $zxinfo["pgNo"], "projectNo" => $zx['projectNo'], "is_del" => 0])->find();
- if ($projectinfo == false) {
- Db::rollback();
- return json_show(1006, "未找到项目信息");
- }
- $temp = [];
- $temp['spuCode'] = $spucode;
- $temp['skuCode'] = "";
- $temp['pgNo'] = $zxinfo['pgNo'];
- $temp['projectNo'] = $zx['projectNo'];
- $temp['good_name'] = $pname;
- $temp['good_type'] = $projectinfo['good_type'];
- $temp['data_source'] = 2;
- $temp['cat_id'] = $cat_id;
- $temp['budget_price'] = $projectinfo['budget_price'];
- $temp['sale_price'] = $saleprice;
- $temp['origin_price'] = $total_fee;
- $temp['num'] = $zxinfo['num'];
- $temp['status'] = 0;
- $temp['is_del'] = 0;
- $temp['creater'] = $creater;
- $temp['createrid'] = $createrid;
- $temp['addtime'] = date("Y-m-d H:i:s");
- $temp['updatetime'] = date("Y-m-d H:i:s");
- $nu = Db::name("project_feedback")->insert($temp);
- if ($nu == false) {
- Db::rollback();
- return json_show(1006, "项目反馈失败");
- } else {
- $old_projectinfo_status = $projectinfo['status'];
- $projectinfo['status'] = 2;
- $projectinfo['updatetime'] = date("Y-m-d H:i:s");
- $up = Db::name("project_info")->save($projectinfo);
- if ($up) {
- //修改状态,添加待办,只记录动作
- ActionLog::logAdd(['id' => $createrid, 'nickname' => $creater], [
- "order_code" => $projectinfo['pgNo'],//编码
- "status" => $old_projectinfo_status,//这里的status是之前的值
- "action_remark" => '',//备注
- "action_type" => "status"//新建create,编辑edit,更改状态status
- ], "PRI", 2, $projectinfo);
- $count = Db::name("project_info")->where(["projectNo" => $projectinfo['projectNo'], "status" => 1])->count();
- if ($count == 0) {
- $projetc = Db::name("project")->where(["projectNo" => $projectinfo['projectNo'], "status" => 1])->find();
- if ($projetc != false) {
- $proc = Db::name("project")->where(["projectNo" => $projectinfo['projectNo'], "status" => 1])->save
- (["status" => 2, "updatetime" => date("Y-m-d H:i:s")]);
- if ($proc == false) {
- Db::rollback();
- return json_show(1006, "项目反馈失败");
- } else {
- //修改状态,添加待办
- ActionLog::logAdd(['id' => $createrid, 'nickname' => $creater], [
- "order_code" => $projetc['projectNo'],//项目编码
- "status" => 1,//这里的status是之前的值
- "action_remark" => '',//备注
- "action_type" => "status"//新建create,编辑edit,更改状态status
- ], "PRO", 2, $projetc);
- ProcessOrder::AddProcess(['id' => $createrid, 'nickname' => $creater], [
- "order_type" => 'PRO',
- "order_code" => $projetc['projectNo'],
- "order_id" => $projetc['id'],
- "order_status" => 2,
- "before_status" => 1,
- 'holder_id'=>$projetc['createrid'],
- 'person_id' => Db::name('supplier')->where(['code' => $this->request->user['supplierNo'], 'is_del' => 0])->value('personid'),
- ]);
- }
- }
- }
- }
- }
- }
- Db::commit();
- return json_show(0, "反馈成功", ["bidNo" => $bidNo]);
- } else {
- Db::rollback();
- return json_show(1006, "反馈失败");
- }
- } catch (\Exception $e) {
- Db::rollback();
- return json_show(1006, $e->getMessage());
- }
- }
- //反馈商品编辑
- public function feededit()
- {
- $this->post = $this->request->filter('trim')->post();
- $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] != "" ? trim($this->post['bidNo']) : "";
- if ($bidNo == "") {
- return json_show(1002, "参数bidNo不能为空");
- }
- $bidinfo = Db::name("consult_bids")->where(["bidNo" => $bidNo, "is_del" => 0])->find();
- if ($bidinfo == false) {
- return json_show(1003, "未找到信息数据");
- }
- if ($bidinfo['status'] >= 5) {
- return json_show(1004, "咨询单已确认无法修改");
- }
- $zxinfo = Db::name("consult_info")->where(["infoNo" => $bidinfo['infoNo'], "is_del" => 0])->find();
- if ($zxinfo == false) {
- return json_show(1003, "未找到信息数据");
- }
- $zx = Db::name("consult_order")->where(["zxNo" => $zxinfo['zxNo'], "is_del" => 0])->find();
- if ($zx == false) {
- return json_show(1003, "未找咨询信息数据");
- }
- $pname = isset($this->post['pname']) && $this->post['pname'] != "" ? trim($this->post['pname']) : "";
- if ($pname == "") {
- return json_show(1002, "参数pname不能为空");
- }
- $brandid = isset($this->post['brandid']) && $this->post['brandid'] != "" ? intval($this->post['brandid']) : "";
- // if($brandid==""){
- // return json_show(1002,"参数brandid不能为空");
- // }
- $cat_id = isset($this->post['cat_id']) && $this->post['cat_id'] != "" ? trim($this->post['cat_id']) : "";
- if ($cat_id == "") {
- return json_show(1002, "参数cat_id不能为空");
- }
- $specin = isset($this->post['specinfo']) && !empty($this->post['specinfo']) ? $this->post['specinfo'] : "";
- if ($specin == "") {
- return json_show(1003, "参数specinfo不能为空");
- }
- $specinfo = [];
- foreach ($specin as $v) {
- $spec = Db::name("specs")->where(["id" => $v['specid']])->find();
- $spec_value = Db::name("spec_value")->where(["id" => $v['spec_value_id']])->find();
- $v['spec_name'] = isset($spec['spec_name']) ? $spec['spec_name'] : "";
- $v['spec_value_name'] = isset($spec_value['spec_value']) ? $spec_value['spec_value'] : "";
- $specinfo[] = $v;
- }
- $unit_id = isset($this->post['unit_id']) && $this->post['unit_id'] != "" ? intval($this->post['unit_id']) : "";
- $cost_desc = isset($this->post['cost_desc']) && $this->post['cost_desc'] != "" ? trim($this->post['cost_desc']) : "";
- $work_day = isset($this->post['work_day']) && $this->post['work_day'] != "" ? intval($this->post['work_day']) : "";
- $delivery_day = isset($this->post['delivery_day']) && $this->post['delivery_day'] != "" ? intval($this->post['delivery_day']) : "";
- $good_img = isset($this->post['good_img']) && $this->post['good_img'] != "" ? $this->post['good_img'] : [];
- $expire_day = isset($this->post['expire_day']) && $this->post['expire_day'] != "" ? intval($this->post['expire_day']) : "";
- $origin_place = isset($this->post['origin_place']) && $this->post['origin_place'] != "" ? trim($this->post['origin_place']) : "";
- $supplierNo = isset($this->post['supplierNo']) && $this->post['supplierNo'] != "" ? trim($this->post['supplierNo']) : "";
- $pay_way = isset($this->post['pay_way']) && $this->post['pay_way'] != "" ? intval($this->post['pay_way']) : "";
- $tax = isset($this->post['tax']) && $this->post['tax'] != "" ? trim($this->post['tax']) : "";
- $send_way = isset($this->post['send_way']) && $this->post['send_way'] != "" ? intval($this->post['send_way']) : "0";
- $metal_id = isset($this->post['metal_id']) && $this->post['metal_id'] != "" ? intval($this->post['metal_id']) : "0";
- $is_gold_price = isset($this->post['is_gold_price']) && $this->post['is_gold_price'] != "" ? intval($this->post['is_gold_price']) : "0";
- $config = isset($this->post['config']) && $this->post['config'] != "" ? $this->post['config'] : "";
- $other_config = isset($this->post['other_config']) && $this->post['other_config'] != "" ? $this->post['other_config'] : "";
- $weight = isset($this->post['weight']) && $this->post['weight'] != "" ? floatval($this->post['weight']) : "0";
- $noble_weight = isset($this->post['noble_weight']) && $this->post['noble_weight'] != "" ? floatval($this->post['noble_weight']) : "0";
- $demo_fee = isset($this->post['demo_fee']) && $this->post['demo_fee'] != "" ? floatval($this->post['demo_fee']) : "0";
- $delivery_fee = isset($this->post['delivery_fee']) && $this->post['delivery_fee'] != "" ? floatval($this->post['delivery_fee']) : "0";
- $open_fee = isset($this->post['open_fee']) && $this->post['open_fee'] != "" ? floatval($this->post['open_fee']) : "0";
- $pakge_fee = isset($this->post['pakge_fee']) && $this->post['pakge_fee'] != "" ? floatval($this->post['pakge_fee']) : "0";
- $nake_fee = isset($this->post['nake_fee']) && $this->post['nake_fee'] !== "" ? floatval($this->post['nake_fee']) : 0;
- $mark_fee = isset($this->post['mark_fee']) && $this->post['mark_fee'] != "" ? floatval($this->post['mark_fee']) : "0";
- $cert_fee = isset($this->post['cert_fee']) && $this->post['cert_fee'] != "" ? floatval($this->post['cert_fee']) : "0";
- $cost_fee = isset($this->post['cost_fee']) && $this->post['cost_fee'] != "" ? floatval($this->post['cost_fee']) : "0";
- $is_diff = isset($this->post['is_diff']) && $this->post['is_diff'] !== "" ? intval($this->post['is_diff']) : "";
- $supply_area = isset($this->post['supply_area']) && $this->post['supply_area'] !== "" ? intval($this->post['supply_area']) : "";
- $remark = isset($this->post['remark']) && $this->post['remark'] != "" ? trim($this->post['remark']) : "";
- $delivery_place = isset($this->post['delivery_place']) && $this->post['delivery_place'] != '' ? trim($this->post['delivery_place']) : "";
- if ($delivery_place == '') {
- return json_show(1002, "参数delivery_place不能为空");
- }
- $catinfo = Db::name("cat")->where(["id" => $cat_id])->find();
- $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate'] / 100 : 0;
- $sale_cost_fee = $bidinfo['sale_cost_fee'];
- $cat_top_list = made($cat_id);
- $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
- if ($is_gold_price == 1 && $cat_top_id == 6) {
- $gold = Db::name("gold_price1")->where(["type" => $metal_id, "is_del" => 0, "status" => 1])->order("addtime desc")->find();
- //$total_fee(成本合计初始价格) =打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价0+运费;
- $total_fee = $demo_fee / $zxinfo['num'] + $open_fee / $zxinfo['num'] + $noble_weight * $gold["price"] + $cost_fee * $noble_weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee + $delivery_fee;
- // $saleprice = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee/(1-$budget)* $weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
- //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
- $saleprice = $total_fee / (1 - $budget);
- //销售工艺费=((开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100)-(打样费/购买数量 + 开模费/购买数量 +包装费+加标费+证书费+产品裸价0+运费) )/商品重量-最新金价
- $sale_cost_fee = ($saleprice - ($demo_fee / $zxinfo['num'] + $open_fee / $zxinfo['num'] + $pakge_fee + $mark_fee + $cert_fee + $nake_fee + $delivery_fee)) / $noble_weight - $gold["price"];
- } else {
- $saleprice = ($demo_fee / $zxinfo['num'] + $delivery_fee + $open_fee / $zxinfo['num'] + $cost_fee * $noble_weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee) / (1 - $budget);
- $total_fee = $demo_fee / $zxinfo['num'] + $delivery_fee + $open_fee / $zxinfo['num'] + $cost_fee * $noble_weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee;
- }
- Db::startTrans();
- try {
- $createrid = $this->request->user['uid'];
- $creater = $this->request->user['nickname'];
- $data = [
- "good_name" => $pname,
- "brand_id" => $brandid,
- "cat_id" => $cat_id,
- "specinfo" => json_encode($specinfo),
- // "material"=>$material,
- "unit_id" => $unit_id,
- "cost_desc" => $cost_desc,
- "work_day" => $work_day,
- "delivery_day" => $delivery_day,
- "good_img" => is_array($good_img) ? implode(',', $good_img) : $good_img,
- "expire_day" => $expire_day,
- "origin_place" => $origin_place,
- "supplierNo" => $supplierNo,
- "pay_way" => $pay_way,
- "tax" => $tax,
- "send_way" => $send_way,
- "metal_id" => $metal_id,
- "is_gold_price" => $is_gold_price,
- "config" => $config,
- "other_config" => $other_config,
- "weight" => $weight,
- "good_weight" => $noble_weight,
- "is_diff" => $is_diff,
- "demo_fee" => $demo_fee,
- "gold_price" => isset($gold["price"]) ? $gold["price"] : 0,
- "delivery_fee" => $delivery_fee,
- "open_fee" => $open_fee,
- "pakge_fee" => $pakge_fee,
- "nake_fee" => $nake_fee,
- "mark_fee" => $mark_fee,
- "cert_fee" => $cert_fee,
- "cost_fee" => $cost_fee,
- "sale_cost_fee" => $sale_cost_fee,
- "origin_cost_fee" => $sale_cost_fee,
- "total_fee" => $total_fee,
- "sale_price" => $saleprice,
- "origin_price" => $saleprice,
- "supply_area" => $supply_area,
- "remark" => $remark,
- "status" => 0,
- "updatetime" => date("Y-m-d H:i:s"),
- 'delivery_place' => $delivery_place
- ];
- $insert = Db::name("consult_bids")->where($bidinfo)->save($data);
- if ($insert) {
- if ($zxinfo['bargain_status'] == 1) {
- $zxinfo['bargain_status'] = 0;
- $infoip = Db::name("consult_info")->save($zxinfo);
- if ($infoip == false) {
- Db::rollback();
- return json_show(1006, "咨询信息状态更新失败");
- }
- }
- if ($zx['is_project'] == 1 && $zx['projectNo'] != "" && $zxinfo['pgNo'] != "") {
- $projectinfo = Db::name("project_info")->where(["pgNo" => $zxinfo["pgNo"], "projectNo" => $zx['projectNo'], "is_del" => 0])->find();
- if ($projectinfo == false) {
- Db::rollback();
- return json_show(1006, "未找到项目信息");
- }
- $feed = Db::name("project_feedback")->where(["pgNo" => $zxinfo["pgNo"], "projectNo" => $zx['projectNo'], "spuCode" => $bidinfo['spuCode'], "is_del" => 0])->find();
- if ($feed != false) {
- $feed['good_name'] = $pname;
- $feed['good_type'] = $projectinfo['good_type'];
- $feed['cat_id'] = $cat_id;
- $feed['sale_price'] = $saleprice;
- $feed['origin_price'] = $total_fee;
- $feed['updatetime'] = date("Y-m-d H:i:s");
- $temp['updatetime'] = date("Y-m-d H:i:s");
- $nu = Db::name("project_feedback")->save($feed);
- if ($nu == false) {
- Db::rollback();
- return json_show(1006, "项目反馈失败");
- } else {
- $old_projectinfo_status = $projectinfo['status'];
- $projectinfo['status'] = 2;
- $projectinfo['updatetime'] = date("Y-m-d H:i:s");
- $up = Db::name("project_info")->save($projectinfo);
- if ($up) {
- //修改状态,添加待办,只记录动作
- ActionLog::logAdd(['id' => $createrid, 'nickname' => $creater], [
- "order_code" => $projectinfo['pgNo'],//编码
- "status" => $old_projectinfo_status,//这里的status是之前的值
- "action_remark" => '',//备注
- "action_type" => "status"//新建create,编辑edit,更改状态status
- ], "PRI", 2, $projectinfo
- );
- $count = Db::name("project_info")->where(["projectNo" => $projectinfo['projectNo'], "status" => 1])->count();
- if ($count == 0) {
- //先查询是否存在status==1的项目,有的话再更新,否则跳过
- $project_id = Db::name("project")->where(["projectNo" => $projectinfo['projectNo'], "status" => 1])->field('id,createrid')->findOrEmpty();
- if ($project_id) {
- $proc = Db::name("project")->where(["id" => $project_id['id']])->update(["status" => 2, "updatetime" => date("Y-m-d H:i:s")]);
- if ($proc == false) {
- Db::rollback();
- return json_show(1006, "项目反馈失败");
- } else {
- //修改状态,添加待办
- ActionLog::logAdd(['id' => $createrid, 'nickname' => $creater], [
- "order_code" => $projectinfo['projectNo'],//项目编码
- "status" => 1,//这里的status是之前的值
- "action_remark" => '',//备注
- "action_type" => "status"//新建create,编辑edit,更改状态status
- ], "PRO", 2, $this->post);
- ProcessOrder::AddProcess(['id' => $createrid, 'nickname' => $creater], [
- "order_type" => 'PRO',
- "order_code" => $projectinfo['projectNo'],
- "order_id" => $project_id['id'],
- "order_status" => 2,
- "before_status" => 1,
- 'holder_id'=>$project_id['createrid'],
- 'person_id' => Db::name('supplier')->where(['code' => $this->request->user['supplierNo'], 'is_del' => 0])->value('personid'),
- ]
- );
- }
- }
- }
- }
- }
- }
- }
- Db::commit();
- return json_show(0, "编辑成功");
- } else {
- Db::rollback();
- return json_show(1004, "编辑失败");
- }
- } catch (\Exception $e) {
- Db::rollback();
- return json_show(1004, $e->getMessage());
- }
- }
- }
|