Consult.php 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\ActionLog;
  4. use app\admin\model\ProcessOrder;
  5. use think\App;
  6. use think\facade\Db;
  7. use think\facade\Validate;
  8. //咨询单
  9. class Consult extends Base
  10. {
  11. public $noble=[];
  12. public function __construct(App $app)
  13. {
  14. parent::__construct($app);
  15. $this->noble =\think\facade\Config::get("noble");
  16. }
  17. public function conlist(){
  18. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) :"1";
  19. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) :"10";
  20. $where=[['a.is_del',"=",0],['b.is_del',"=",0]];
  21. $infoNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  22. if ($infoNo !== "") {
  23. $where[] = ['a.infoNo','=',$infoNo];
  24. }
  25. $salesman = isset($this->post['salesman']) && $this->post['salesman'] !== "" ? trim($this->post['salesman']) : "";
  26. if ($salesman !== "") {
  27. //$where["salesman"] =Db::Raw("like '%$salesman%'");
  28. $where[]= ["b.salesman",'like',"%$salesman%"];
  29. }
  30. $cpName = isset($this->post['cpName']) && $this->post['cpName'] !== "" ? trim($this->post['cpName']) : "";
  31. if ($cpName !== "") {
  32. //$where["cpName"]= Db::Raw("like '%$cpName%'");
  33. $where[]= ["a.good_Name",'like',"%$cpName%"];
  34. }
  35. $khNo = isset($this->post['khNo']) && $this->post['khNo'] !== "" ? trim($this->post['khNo']) : "";
  36. if ($khNo !== "") {
  37. // $where['khNo'] = $khNo;
  38. $where[]= ["b.khNo",'like',"%$khNo%"];
  39. }
  40. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !== "" ? trim($this->post['companyNo']) : "";
  41. if ($companyNo !== "") {
  42. // $where['khNo'] = $khNo;
  43. $where[]= ["b.companyNo",'like',"%$companyNo%"];
  44. }
  45. $start= isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start']:"";
  46. if ($start !="") {
  47. //$where = ["zxtime"=>Db::raw(">= '{$start}'")];
  48. $where[]= ["a.addtime",'>=',$start];
  49. }
  50. $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] :"";
  51. if($end !=""){
  52. $where[]= ["a.addtime",'<=',$end];
  53. }
  54. $status = isset($this->post['status']) && $this->post['status'] !== "" ? trim($this->post['status']) : "";
  55. if ($status !== "") {
  56. $where[]= ["a.status",'=',$status];
  57. }
  58. $role=$this->checkRole();
  59. if(!empty($role['write'])){
  60. $where[]=["b.createrid","in",$role['write']];
  61. }
  62. $count = Db::name('consult_info')->alias("a")->leftJoin("consult_order b","a.zxNo=b.zxNo")->where($where)
  63. ->count();
  64. $total = ceil($count / $size);
  65. $page = $page >= $total ? $total : $page;
  66. $list =Db::name('consult_info')->alias("a")->leftJoin("consult_order b","a.zxNo=b.zxNo")->where($where)->page($page,$size)
  67. ->field("a.*,b.createrid,b.creater,b.is_project,b.projectNo,b.khNo,b.endtime,b.platform_code,b.saleid,b.salesman,b.depart")->order("a.id desc")->select();
  68. $data=[];
  69. foreach ($list as $value){
  70. $value['can']= isset($value['cat_id']) && $value['cat_id'] !=0 ? made($value['cat_id']):[];
  71. $value['specinfo']=isset($value['specinfo'])&&$value['specinfo']!=""? json_decode($value['specinfo'],
  72. true):[];
  73. $brand = Db::name("brand")->where(['id'=>$value['brand_id']])->find();
  74. $value['brand_name']= isset($brand['brand_name']) && $brand['brand_name']!='' ? $brand['brand_name']:"";
  75. $value['khname']="";
  76. if($value['khNo']!==""){
  77. $kh=Db::name("customer_info")->where(['companyNo'=>$value['khNo']])->find();
  78. $value['khname']= isset($kh['companyName'])?$kh['companyName']:"";
  79. }
  80. $value['metal_name']=isset($value['metal_id'])&& $value['metal_id']!=0?$this->noble[$value['metal_id']]:"";
  81. $data[]=$value;
  82. }
  83. return app_show(0,"获取成功",['count'=>$count,'list'=>$data]);
  84. }
  85. public function info(){
  86. $id = isset($this->post['id']) && $this->post['id'] !=="" ? intval($this->post['id']) : "";
  87. if($id==""){
  88. return error_show(1002,"咨询单编号不能为空");
  89. }
  90. $fo = Db::name('consult')->where(['id'=>$id,'is_del'=>0])->find();
  91. $in= isset($fo['cat_id']) && $fo['cat_id'] !=0 ? made($fo['cat_id']):[];
  92. $fo['can']=$in;
  93. if(empty($fo)){
  94. return error_show(1002,"未找到咨询单编号");
  95. }else{
  96. return app_show(0,"获取成功",$fo);
  97. }
  98. }
  99. public function del(){
  100. $id = isset($this->post['id']) && $this->post['id'] !=="" ? intval($this->post['id']) : "";
  101. $de = Db::name('consult')->where(['id'=>$id,'is_del'=>0])->find();
  102. if($de==false){
  103. return error_show(1002,'咨询单信息未找到');
  104. }
  105. $dell= Db::name('consult')->update(['id'=>$id,'is_del'=>1,'updatetime'=>date("Y-m-d H:i:s")]);
  106. if($dell){
  107. return error_show(0,"删除成功");
  108. }else
  109. return error_show(1002,"删除失败");
  110. }
  111. public function create(){
  112. $is_project= isset($this->post['is_project']) && $this->post['is_project'] !=="" ? intval($this->post['is_project']) : "";
  113. if($is_project===""){
  114. return error_show(1002,"参数is_project不能为空");
  115. }
  116. if($is_project==1){
  117. $projectNo= isset($this->post['projectNo']) && $this->post['projectNo'] !=="" ? trim($this->post['projectNo']) : "";
  118. if($projectNo===""){
  119. return error_show(1002,"参数projectNo不能为空");
  120. }
  121. }
  122. $khNo = isset($this->post['khNo']) && $this->post['khNo'] !=="" ? trim($this->post['khNo']) : "";
  123. if($khNo===""){
  124. return error_show(1002,"参数khNo不能为空");
  125. }
  126. $companyNo = isset($this->post['companyNo']) && $this->post['companyNo'] !=="" ? trim($this->post['companyNo']) : "";
  127. if($companyNo===""){
  128. return error_show(1002,"参数companyNo不能为空");
  129. }
  130. $endtime = isset($this->post['endtime']) && $this->post['endtime'] !=="" ? $this->post['endtime'] : "";
  131. if($endtime===""){
  132. return error_show(1002,"参数endtime不能为空");
  133. }
  134. $platform_code = isset($this->post['platform_code']) && $this->post['platform_code'] !=="" ? trim($this->post['platform_code']) :
  135. "";
  136. if($platform_code===""){
  137. return error_show(1002,"参数platform_code不能为空");
  138. }
  139. $ladder = isset($this->post['ladder'])&&!empty($this->post['ladder']) ? $this->post['ladder']:"";
  140. if($ladder==""){
  141. return error_show(1005,"参数ladder不能为空");
  142. }
  143. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  144. if($token==''){
  145. return error_show(105,"参数token不能为空");
  146. }
  147. $user =GetUserInfo($token);
  148. if(empty($user)||$user['code']!=0){
  149. return error_show(102,"用户数据不存在");
  150. }
  151. $createrid= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  152. $creater= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  153. $depart= Db::name("depart_user")->where(["uid"=>$createrid,"status"=>1,"is_del"=>0])->find();
  154. $zxNo=makeNo("ZX");
  155. Db::startTrans();
  156. try{
  157. $data=[
  158. "zxNo"=>$zxNo,
  159. "createrid"=>$createrid,
  160. "creater"=>$creater,
  161. "is_project"=>$is_project,
  162. "projectNo"=>isset($projectNo) ? $projectNo:"",
  163. "khNo"=>$khNo,
  164. "companyNo"=>$companyNo,
  165. "endtime"=>$endtime,
  166. "salesman"=>$creater,
  167. "platform_code"=>$platform_code,
  168. "saleid"=>$createrid,
  169. "depart"=>isset($depart['itemid'])?$depart['itemid']:0,
  170. "status"=>0,
  171. "is_del"=>0,
  172. "addtime"=>date("Y-m-d H:i:s"),
  173. "updatetime"=>date("Y-m-d H:i:s"),
  174. ];
  175. $zx = Db::name("consult_order")->insert($data);
  176. if($zx){
  177. foreach ($ladder as $value){
  178. $infoNo=makeNo("IF");
  179. $specinfo=[];
  180. if(isset($value['specinfo']) &&!empty($value['specinfo'])){
  181. foreach ($value["specinfo"] as $v){
  182. $spec =Db::name("specs")->where(["id"=>$v['specid']])->find();
  183. $spec_value =Db::name("spec_value")->where(["id"=>$v['spec_value_id']])->find();
  184. $v['spec_name']=isset($spec['spec_name'])? $spec['spec_name']:"";
  185. $v['spec_value_name']=isset($spec_value['spec_value'])?$spec_value['spec_value']:"" ;
  186. $specinfo[]=$v;
  187. }
  188. }
  189. $info=[
  190. "infoNo"=>$infoNo,
  191. "zxNo"=>$zxNo,
  192. "spuCode"=>"",
  193. "good_name"=>$value['good_name'],
  194. "good_img"=>$value['good_img'],
  195. "cat_id"=>$value['cat_id'],
  196. "unit"=>$value['unit'],
  197. "brand_id"=>$value['brand_id'],
  198. "arrival_time"=>$value['arrival_time'],
  199. "specinfo"=>empty($specinfo)?"" : json_encode($specinfo),
  200. "cost_desc" => isset($value['cost_desc']) ? $value['cost_desc'] : '',
  201. "is_addrs"=>$value['is_addrs'],
  202. "is_custom"=>$value['is_custom'],
  203. "metal_id"=>$value['metal_id'],
  204. "config"=>isset($value['config'])?$value['config']:"",
  205. "other_config"=>isset($value['other_config'])?$value['other_config']:"",
  206. "specs_weight"=>isset($value['specs_weight'])?$value['specs_weight']:"0",
  207. "gold_price"=>isset($value['gold_price'])?$value['gold_price']:"0",
  208. "is_gold_price"=>isset($value['is_gold_price'])?$value['is_gold_price']:"0",
  209. "total_weight"=>isset($value['total_weight'])?$value['total_weight']:"0",
  210. "budget_price"=>$value['budget_price'],
  211. "num"=>$value['num'],
  212. "pgNo"=>isset($value['pgNo'])&&$value['pgNo']!==""?trim($value['pgNo']):"",
  213. "use_desc"=>$value['use_desc'],
  214. "remark"=>$value['remark'],
  215. "status"=>1,
  216. "is_del"=>0,
  217. "addtime"=>date("Y-m-d H:i:s"),
  218. "updatetime"=>date("Y-m-d H:i:s"),
  219. 'enclosure_file'=>isset($value['enclosure_file'])?$value['enclosure_file']:'',
  220. ];
  221. $up = Db::name("consult_info")->insert($info);
  222. if(!$up){
  223. Db::rollback();
  224. return error_show(1004,'添加失败');
  225. }else{
  226. //修改状态,添加待办
  227. ActionLog::logAdd($this->post['token'], [
  228. "order_code" => $infoNo,//咨询单详情编号
  229. "status" => 1,//这里的status是之前的值
  230. "action_remark" => '',//备注
  231. "action_type" => "create"//新建create,编辑edit,更改状态status
  232. ], "ZXD", 1, $info);
  233. ProcessOrder::AddProcess($this->post['token'], [
  234. "order_type" => 'ZXD',
  235. "order_code" => $infoNo,//咨询单详情编号
  236. "order_id" => 0,
  237. "order_status" => 1
  238. ]);
  239. }
  240. }
  241. $stn = ["order_code"=>$zxNo,"status"=>1,"action_remark"=>'',"action_type"=>"create"];
  242. ActionLog::logAdd($this->post['token'],$stn,"ZXD",2,$info);
  243. $process=["order_code"=>$zxNo,"order_id"=>Db::name("consult_order")->getLastInsID(),"order_status"=>1,"order_type"=>'ZXD'];
  244. ProcessOrder::AddProcess($this->post['token'],$process);
  245. Db::commit();
  246. return app_show(0,"新建成功",["zxNo"=>$zxNo]);
  247. }else{
  248. Db::rollback();
  249. return error_show(1004,"新建失败");
  250. }
  251. }catch (\Exception $e){
  252. Db::rollback();
  253. return error_show(1003,$e->getMessage());
  254. }
  255. }
  256. public function zxinfo(){
  257. $infoNo= isset($this->post['infoNo'])&&$this->post['infoNo']!=""?trim($this->post['infoNo']):"";
  258. if($infoNo==""){
  259. return error_show(1004,"参数infoNo不能为空");
  260. }
  261. $zxinfo = Db::name("consult_info")->where(["infoNo"=>$infoNo,"is_del"=>0])->find();
  262. if($zxinfo==false){
  263. return error_show(1004,"未找到信息数据");
  264. }
  265. $zxorder = Db::name("consult_order")->where(["zxNo"=>$zxinfo['zxNo'],"is_del"=>0])->find();
  266. if($zxorder==false){
  267. return error_show(1004,"未找到咨询信息数据");
  268. }
  269. $cat =Db::name("cat")->where(["id"=>$zxinfo['cat_id']])->find();
  270. $budget = isset($cat['order_rate']) ? $cat['order_rate']:0;
  271. $zxinfo['can']= isset($zxinfo['cat_id']) && $zxinfo['cat_id'] !=0 ? made($zxinfo['cat_id'],[]):[];
  272. $zxinfo['khname']="";
  273. $zxinfo['original_price']=sprintf("%.2f",$zxinfo['budget_price']* (1 -$budget/100));
  274. $zxinfo['khNo']="";
  275. $zxinfo['brand_id']=$zxinfo['brand_id']==0 ?"":$zxinfo['brand_id'];
  276. $zxinfo['brand']="";
  277. $zxinfo['companyNo']=isset($zxorder['companyNo'])?$zxorder['companyNo']:"";
  278. $zxinfo['projectNo']=isset($zxorder['projectNo'])?$zxorder['projectNo']:"";
  279. $zxinfo['is_project']=isset($zxorder['is_project'])?$zxorder['is_project']:"";
  280. $zxinfo['company']="";
  281. $zxinfo['endtime']=isset($zxorder['endtime'])?$zxorder['endtime']:"";
  282. $zxinfo['platform_code'] =isset($zxorder['platform_code'])?$zxorder['platform_code']:"";
  283. $zxinfo['salesman'] =isset($zxorder['salesman'])?$zxorder['salesman']:"";
  284. $zxinfo['saleid'] =isset($zxorder['saleid'])?$zxorder['saleid']:"";
  285. $zxinfo['depart'] =isset($zxorder['depart'])?$zxorder['depart']:"";
  286. $zxinfo['project_name']="";
  287. $zxinfo['budget_total']="";
  288. $zxinfo['departinfo']=[];
  289. $zxinfo['unit_name']="";
  290. $zxinfo['metal_name']=isset($zxinfo['metal_id'])&& $zxinfo['metal_id']!=0?$this->noble[$zxinfo['metal_id']]:"";
  291. $zxinfo['specinfo']=json_decode($zxinfo['specinfo'],true);
  292. if($zxorder['khNo']!==""){
  293. $kh=Db::name("customer_info")->where(['companyNo'=>$zxorder['khNo']])->find();
  294. $zxinfo['khname']= isset($kh['companyName'])?$kh['companyName']:"";
  295. $zxinfo['khNo']= $zxorder['khNo'];
  296. }
  297. if($zxinfo['unit']!==""){
  298. $unit=Db::name("unit")->where(['id'=>$zxinfo['unit']])->find();
  299. $zxinfo['unit_name']= isset($unit['unit'])?$unit['unit']:"";
  300. }
  301. if($zxinfo['brand_id']!==""){
  302. $unit=Db::name("brand")->where(['id'=>$zxinfo['brand_id']])->find();
  303. $zxinfo['brand']= isset($unit['brand_name'])?$unit['brand_name']:"";
  304. }
  305. if($zxorder['companyNo']!==""){
  306. $kh=Db::name("business")->where(['companyNo'=>$zxorder['companyNo']])->find();
  307. $zxinfo['company']= isset($kh['company'])?$kh['company']:"";
  308. }
  309. if($zxorder['is_project']==1 && $zxorder['projectNo']!==""){
  310. $project = Db::name("project")->where(["projectNo"=>$zxorder['projectNo'],"is_del"=>0])->find();
  311. $zxinfo['project_name']=isset($project['project_name'])?$project['project_name']:"";
  312. $zxinfo['budget_total']=isset($project['budget_total'])?$project['budget_total']:"";
  313. $zxinfo['project_use_desc']=isset($project['use_desc'])?$project['use_desc']:"";
  314. $projectinfo = Db::name("project_info")->where(["pgNo"=>$zxinfo['pgNo']])->find();
  315. $zxinfo['pgNo'] = isset($projectinfo['pgNo']) ? $projectinfo['pgNo']:"";
  316. }
  317. if($zxorder['depart']>0){
  318. $zxinfo['departinfo']=GetPart($zxorder['depart']);
  319. }
  320. if($zxorder['platform_code']>0){
  321. $palt=Db::name("platform")->where(["id"=>$zxorder['platform_code']])->find();
  322. $zxinfo['platform_name']=isset($palt['platform_name'])?$palt['platform_name']:"";
  323. }
  324. return app_show(0,"获取成功",$zxinfo);
  325. }
  326. public function zxedit(){
  327. $infoNo= isset($this->post['infoNo'])&&$this->post['infoNo']!=""?trim($this->post['infoNo']):"";
  328. if($infoNo==""){
  329. return error_show(1004,"参数infoNo不能为空");
  330. }
  331. $zxinfo = Db::name("consult_info")->where(["infoNo"=>$infoNo,"is_del"=>0])->find();
  332. if($zxinfo==false){
  333. return error_show(1004,"未找到信息数据");
  334. }
  335. $enclosure_file =isset($this->post['enclosure_file'])&&$this->post['enclosure_file']!=""?trim($this->post['enclosure_file']):$zxinfo['enclosure_file'];
  336. $good_name= isset($this->post['good_name'])&&$this->post['good_name']!=""?trim($this->post['good_name']):"";
  337. if($good_name==""){
  338. return error_show(1003,"参数good_name不能为空");
  339. }
  340. $good_img= isset($this->post['good_img'])&&$this->post['good_img']!=""?trim($this->post['good_img']):"";
  341. if($good_img==""){
  342. return error_show(1003,"参数good_img不能为空");
  343. }
  344. $cat_id= isset($this->post['cat_id'])&&$this->post['cat_id']!=""?intval($this->post['cat_id']):"";
  345. if($cat_id==""){
  346. return error_show(1003,"参数cat_id不能为空");
  347. }
  348. $unit= isset($this->post['unit'])&&$this->post['unit']!=""?trim($this->post['unit']):"";
  349. if($unit==""){
  350. return error_show(1003,"参数unit不能为空");
  351. }
  352. $brand_id= isset($this->post['brand_id'])&&$this->post['brand_id']!==""?intval($this->post['brand_id']):"0";
  353. $arrival_time= isset($this->post['arrival_time'])&&$this->post['arrival_time']!=""?$this->post['arrival_time']:"";
  354. if($arrival_time==""){
  355. return error_show(1003,"参数arrival_time不能为空");
  356. }
  357. $specin= isset($this->post['specinfo'])&&!empty($this->post['specinfo'])?$this->post['specinfo']:"";
  358. if($specin==""){
  359. return error_show(1003,"参数specinfo不能为空");
  360. }
  361. $cost_desc= isset($this->post['cost_desc'])&&$this->post['cost_desc']!=""?trim($this->post['cost_desc']):"";
  362. // if($cost_desc==""){
  363. // return error_show(1003,"参数cost_desc不能为空");
  364. // }
  365. $is_addrs= isset($this->post['is_addrs'])&&$this->post['is_addrs']!==""?intval($this->post['is_addrs']):"";
  366. if($is_addrs===""){
  367. return error_show(1003,"参数is_addrs不能为空");
  368. }
  369. $is_custom= isset($this->post['is_custom'])&&$this->post['is_custom']!==""?trim($this->post['is_custom']):"";
  370. if($is_custom===""){
  371. return error_show(1003,"参数is_custom不能为空");
  372. }
  373. $metal_id= isset($this->post['metal_id'])&&$this->post['metal_id']!==""?intval($this->post['metal_id']):"";
  374. if($metal_id===""){
  375. return error_show(1003,"参数metal_id不能为空");
  376. }
  377. $config = isset($this->post['config'])&& $this->post['config']!=""?trim($this->post['config']):"";
  378. $other_config = isset($this->post['other_config'])&& $this->post['other_config']!=""?trim($this->post['other_config']):"";
  379. $specs_weight = isset($this->post['specs_weight'])&& $this->post['specs_weight']!==""?floatval($this->post['specs_weight']):"";
  380. $gold_price = isset($this->post['gold_price'])&& $this->post['gold_price']!==""?floatval($this->post['gold_price']):"";
  381. $is_gold_price = isset($this->post['is_gold_price'])&& $this->post['is_gold_price']!==""?intval($this->post['is_gold_price']):"0";
  382. $budget_price = isset($this->post['budget_price'])&& $this->post['budget_price']!==""?floatval($this->post['budget_price']):"";
  383. $total_weight = isset($this->post['total_weight'])&& $this->post['total_weight']!==""?floatval($this->post['total_weight']):"";
  384. $num = isset($this->post['num'])&& $this->post['num']!==""?intval($this->post['num']):"";
  385. if($num===""){
  386. return error_show(1003,"参数num不能为空");
  387. }
  388. if($budget_price===""){
  389. return error_show(1003,"参数budget_price不能为空");
  390. }
  391. $pgNo = isset($this->post['pgNo'])&& $this->post['pgNo']!="" ? trim($this->post['pgNo']):"";
  392. $use_desc = isset($this->post['use_desc'])&& $this->post['use_desc']!="" ? trim($this->post['use_desc']):"";
  393. if($use_desc==""){
  394. return error_show(1003,"参数use_desc不能为空");
  395. }
  396. $remark = isset($this->post['remark'])&& $this->post['remark']!="" ? trim($this->post['remark']):"";
  397. if($remark==""){
  398. return error_show(1003,"参数remark不能为空");
  399. }
  400. $endtime = isset($this->post['endtime'])&& $this->post['endtime']!="" ? trim($this->post['endtime']):"";
  401. if($endtime==""){
  402. return error_show(1003,"参数endtime不能为空");
  403. }
  404. if($metal_id!=0){
  405. if($config==""){
  406. return error_show(1003,"参数config不能为空");
  407. }
  408. if($other_config==""){
  409. return error_show(1003,"参数other_config不能为空");
  410. }
  411. if($specs_weight===""){
  412. return error_show(1003,"参数specs_weight不能为空");
  413. }
  414. if($gold_price===""){
  415. return error_show(1003,"参数gold_price不能为空");
  416. }
  417. }
  418. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  419. if($token==''){
  420. return error_show(102,"参数token不能为空");
  421. }
  422. $user =GetUserInfo($token);
  423. if(empty($user)||$user['code']!=0){
  424. return error_show(105,"用户数据不存在");
  425. }
  426. $specinfo=[];
  427. foreach ($specin as $v){
  428. $spec =Db::name("specs")->where(["id"=>$v['specid']])->find();
  429. $spec_value =Db::name("spec_value")->where(["id"=>$v['spec_value_id']])->find();
  430. $v['spec_name']=isset($spec['spec_name'])?$spec['spec_name']:"";
  431. $v['spec_value_name']=isset($spec_value['spec_value'])?$spec_value['spec_value']:"";
  432. $specinfo[]=$v;
  433. }
  434. $createrid= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  435. $creater= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  436. $bidlist = Db::name("consult_bids")->where(["infoNo"=>$zxinfo['infoNo'],"is_del"=>0])->select();
  437. Db::startTrans();
  438. try{
  439. $innew =makeNo("IF");
  440. $info=[
  441. "infoNo"=>$innew,
  442. "zxNo"=>$zxinfo['zxNo'],
  443. "spuCode"=>"",
  444. "good_name"=>$good_name,
  445. "good_img"=>$good_img,
  446. "cat_id"=>$cat_id,
  447. "unit"=>$unit,
  448. "brand_id"=>$brand_id,
  449. "arrival_time"=>$arrival_time,
  450. "specinfo"=>json_encode($specinfo),
  451. // "color"=>$color,
  452. // "material"=>$material,
  453. "cost_desc"=>$cost_desc,
  454. "is_addrs"=>$is_addrs,
  455. "is_custom"=>$is_custom,
  456. "metal_id"=>$metal_id,
  457. "config"=>$config,
  458. "other_config"=>$other_config,
  459. "specs_weight"=>$specs_weight===""?0:$specs_weight,
  460. "gold_price"=>$gold_price===""? 0 : $gold_price,
  461. "is_gold_price"=>$is_gold_price===""?0:$is_gold_price,
  462. "total_weight"=>$total_weight===""? $num*$specs_weight :$total_weight,
  463. "budget_price"=>$budget_price,
  464. "num"=>$num,
  465. "pgNo"=>$pgNo,
  466. "use_desc"=>$use_desc,
  467. "remark"=>$remark,
  468. "status"=>1,
  469. "is_del"=>0,
  470. "addtime"=>date("Y-m-d H:i:s"),
  471. "updatetime"=>date("Y-m-d H:i:s"),
  472. 'bargain_status'=>1,
  473. 'enclosure_file'=>$enclosure_file
  474. ];
  475. $up = Db::name("consult_info")->insert($info);
  476. if($up){
  477. //修改状态,添加待办
  478. ActionLog::logAdd($this->post['token'], [
  479. "order_code" => $innew,//咨询单详情编号
  480. "status" => 1,//这里的status是之前的值
  481. "action_remark" => '',//备注
  482. "action_type" => "create"//新建create,编辑edit,更改状态status
  483. ], "ZXD", 1, $info);
  484. ProcessOrder::AddProcess($this->post['token'], [
  485. "order_type" => 'ZXD',
  486. "order_code" => $innew,//咨询单详情编号
  487. "order_id" => 0,
  488. "order_status" => 1
  489. ]);
  490. if (!empty($bidlist)){
  491. foreach ($bidlist as $value){
  492. unset($value['id']);
  493. $value['infoNo']=$innew;
  494. $value['bidNo']=makeNo("BD");
  495. $value['spuCode']=makeNo("SKU");
  496. $value['status'] =0;
  497. $value['updatetime'] =date("Y-m-d H:i:s");
  498. $in = Db::name("consult_bids")->insert($value);
  499. if($in==false){
  500. Db::rollback();
  501. return error_show(1004,"反馈商品新建失败");
  502. }
  503. }
  504. }
  505. $zxinfo["bargain_status"] =1;
  506. $zxinfo["bargain_code"] =$innew;
  507. $zxinfo["updatetime"] =date("Y-m-d H:i:s");
  508. $bar=Db::name("consult_info")->save($zxinfo);
  509. if($bar==false){
  510. Db::rollback();
  511. return error_show(1004,"反馈商品更新失败");
  512. }else{
  513. //修改状态,添加待办
  514. ActionLog::logAdd($this->post['token'], [
  515. "order_code" => $zxinfo['infoNo'],//咨询单详情编号
  516. "status" => $zxinfo['status'],//这里的status是之前的值
  517. "action_remark" => '',//备注
  518. "action_type" => "edit"//新建create,编辑edit,更改状态status
  519. ], "ZXD", $zxinfo['status'], $zxinfo);
  520. // 并没有修改状态
  521. // ProcessOrder::AddProcess($this->post['token'], [
  522. // "order_type" => 'ZXD',
  523. // "order_code" => $zxinfo['infoNo'],//咨询单详情编号
  524. // "order_id" => $zxinfo['id'],
  525. // "order_status" => $zxinfo['status']
  526. // ]);
  527. }
  528. //更新consule_order记录
  529. Db::name('consult_order')->where('zxNo',$zxinfo['zxNo'])->update(['endtime'=>$endtime,'updatetime'=>date('Y-m-d H:i:s')]);
  530. Db::commit();
  531. return app_show(0,"咨询新建成功",["infoNo"=>$innew]);
  532. }
  533. }catch (\Exception $e){
  534. Db::rollback();
  535. return error_show(1004,$e->getMessage());
  536. }
  537. }
  538. //** 发布竞标任务 */
  539. public function bargain(){
  540. $infoNo= isset($this->post['infoNo'])&&$this->post['infoNo']!=""?trim($this->post['infoNo']):"";
  541. if($infoNo==""){
  542. return error_show(1004,"参数infoNo不能为空");
  543. }
  544. $zxinfo = Db::name("consult_info")->where(["infoNo"=>$infoNo,"is_del"=>0])->find();
  545. if($zxinfo==false){
  546. return error_show(1004,"未找到信息数据");
  547. }
  548. $status =isset($this->post['status']) && $this->post['status']!=="" ? intval($this->post['status']):"";
  549. if($status===""){
  550. return error_show(1004,"参数status不能为空");
  551. }
  552. if($status==1&&$zxinfo['status']>1){
  553. $zxinfo['bargain_num']=+1;
  554. }
  555. $old_zxinfo_status = $zxinfo['status'];
  556. $zxinfo['status']=$status;
  557. $zxinfo['updatetime']=date("Y-m-d H:i:s");
  558. $up = Db::name("consult_info")->save($zxinfo);
  559. if($up){
  560. //修改状态,添加待办
  561. ActionLog::logAdd($this->post['token'], [
  562. "order_code" => $zxinfo['infoNo'],//咨询单详情编号
  563. "status" => $old_zxinfo_status,//这里的status是之前的值
  564. "action_remark" => '',//备注
  565. "action_type" => "status"//新建create,编辑edit,更改状态status
  566. ], "ZXD", $zxinfo['status'], $zxinfo);
  567. ProcessOrder::AddProcess($this->post['token'], [
  568. "order_type" => 'ZXD',
  569. "order_code" => $zxinfo['infoNo'],//咨询单详情编号
  570. "order_id" => $zxinfo['id'],
  571. "order_status" => $zxinfo['status']
  572. ]);
  573. return app_show(0,"状态更新成功");
  574. }else{
  575. return error_show(1003,"状态更新失败");
  576. }
  577. }
  578. public function feadback(){
  579. $infoNo= isset($this->post['infoNo'])&&$this->post['infoNo']!=""?trim($this->post['infoNo']):"";
  580. if($infoNo==""){
  581. return error_show(1002,"参数infoNo不能为空");
  582. }
  583. $zxinfo = Db::name("consult_info")->where(["infoNo"=>$infoNo,"is_del"=>0])->find();
  584. if($zxinfo==false){
  585. return error_show(1003,"未找到信息数据");
  586. }
  587. if($zxinfo['status']!=1){
  588. return error_show(1004,"任务未进行");
  589. }
  590. $zx = Db::name("consult_order")->where(["zxNo"=>$zxinfo['zxNo'],"is_del"=>0])->find();
  591. if($zx==false){
  592. return error_show(1003,"未找咨询信息数据");
  593. }
  594. $pname = isset($this->post['pname'])&&$this->post['pname']!=""? trim($this->post['pname']):"";
  595. if($pname==""){
  596. return error_show(1002,"参数pname不能为空");
  597. }
  598. $brandid = isset($this->post['brandid'])&&$this->post['brandid']!=""? intval($this->post['brandid']):"";
  599. $cat_id = isset($this->post['cat_id'])&&$this->post['cat_id']!=""? trim($this->post['cat_id']):"";
  600. if($cat_id==""){
  601. return error_show(1002,"参数cat_id不能为空");
  602. }
  603. $specin= isset($this->post['specinfo'])&&!empty($this->post['specinfo'])?$this->post['specinfo']:"";
  604. if($specin==""){
  605. return error_show(1003,"参数specinfo不能为空");
  606. }
  607. $specinfo=[];
  608. foreach ($specin as $v){
  609. $spec =Db::name("specs")->where(["id"=>$v['specid']])->find();
  610. $spec_value =Db::name("spec_value")->where(["id"=>$v['spec_value_id']])->find();
  611. $v['spec_name']=isset($spec['spec_name'])?$spec['spec_name']:"";
  612. $v['spec_value_name']=isset($spec_value['spec_value'])?$spec_value['spec_value']:"";
  613. $specinfo[]=$v;
  614. }
  615. $unit_id = isset($this->post['unit_id'])&&$this->post['unit_id']!=""? intval($this->post['unit_id']):"";
  616. $cost_desc = isset($this->post['cost_desc'])&&$this->post['cost_desc']!=""? trim($this->post['cost_desc']):"";
  617. $work_day = isset($this->post['work_day'])&&$this->post['work_day']!=""? intval($this->post['work_day']):"";
  618. $delivery_day = isset($this->post['delivery_day'])&&$this->post['delivery_day']!=""? intval($this->post['delivery_day']):"";
  619. $good_img = isset($this->post['good_img'])&&$this->post['good_img']!=""? trim($this->post['good_img']):"";
  620. $expire_day = isset($this->post['expire_day'])&&$this->post['expire_day']!=""? intval($this->post['expire_day'])
  621. :"";
  622. $origin_place = isset($this->post['origin_place'])&&$this->post['origin_place']!=""? trim($this->post['origin_place']):"";
  623. $supplierNo = isset($this->post['supplierNo'])&&$this->post['supplierNo']!=""? trim($this->post['supplierNo']):"";
  624. $pay_way = isset($this->post['pay_way'])&&$this->post['pay_way']!=""? intval($this->post['pay_way']):"";
  625. $tax = isset($this->post['tax'])&&$this->post['tax']!=""? trim($this->post['tax']):"";
  626. $send_way = isset($this->post['send_way'])&&$this->post['send_way']!=""? intval($this->post['send_way']):"";
  627. $metal_id = isset($this->post['metal_id'])&&$this->post['metal_id']!=""? intval($this->post['metal_id']):"0";
  628. $is_gold_price = isset($this->post['is_gold_price'])&&$this->post['is_gold_price']!=""? intval($this->post['is_gold_price']):"0";
  629. $config = isset($this->post['config'])&&$this->post['config']!=""? $this->post['config']:"";
  630. $other_config = isset($this->post['other_config'])&&$this->post['other_config']!=""? $this->post['other_config']:"";
  631. $weight = isset($this->post['weight'])&&$this->post['weight']!==""? floatval($this->post['weight']):"0";
  632. $good_weight = isset($this->post['noble_weight'])&&$this->post['noble_weight']!==""? floatval($this->post['noble_weight']):"0";
  633. $demo_fee = isset($this->post['demo_fee'])&&$this->post['demo_fee']!==""? floatval($this->post['demo_fee']):"0";
  634. $delivery_fee = isset($this->post['delivery_fee'])&&$this->post['delivery_fee']!==""? floatval($this->post['delivery_fee']):"0";
  635. $open_fee = isset($this->post['open_fee'])&&$this->post['open_fee']!==""? floatval($this->post['open_fee']):"0";
  636. $pakge_fee = isset($this->post['pakge_fee'])&&$this->post['pakge_fee']!==""? floatval($this->post['pakge_fee']):"0";
  637. $nake_fee = isset($this->post['nake_fee'])&&$this->post['nake_fee']!==""? floatval($this->post['nake_fee']):"0";
  638. $mark_fee = isset($this->post['mark_fee'])&&$this->post['mark_fee']!==""? floatval($this->post['mark_fee']):"0";
  639. $cert_fee = isset($this->post['cert_fee'])&&$this->post['cert_fee']!==""? floatval($this->post['cert_fee']):"0";
  640. $cost_fee = isset($this->post['cost_fee'])&&$this->post['cost_fee']!==""? floatval($this->post['cost_fee']):"0";
  641. if($nake_fee==="" ){
  642. return error_show(1004,"参数nake_fee不能为空");
  643. }
  644. $is_diff = isset($this->post['is_diff'])&&$this->post['is_diff']!==""? intval($this->post['is_diff']):"";
  645. $supply_area = isset($this->post['supply_area'])&&$this->post['supply_area']!==""? intval($this->post['supply_area']):"";
  646. $remark = isset($this->post['remark'])&&$this->post['remark']!=""? trim($this->post['remark']):"";
  647. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  648. if($token==''){
  649. return error_show(1002,"参数token不能为空");
  650. }
  651. $user =GetUserInfo($token);
  652. if(empty($user)||$user['code']!=0){
  653. return error_show(1005,"用户数据不存在");
  654. }
  655. $createrid= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  656. $creater= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  657. $bidNo=makeNo("BD");
  658. $spucode=makeNo("SKU");
  659. $catinfo = Db::name("cat")->where(["id"=>$cat_id])->find();
  660. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  661. //部分参数的大小校验
  662. $vali = Validate::rule([
  663. 'expire_day|有效时长'=>'require|elt:214748364',
  664. 'delivery_day|物流时长'=>'require|elt:214748364',
  665. 'work_day|生产工期'=>'require|elt:214748364',
  666. 'weight|总重量'=>'require|max:10',
  667. ]);
  668. $temp = [
  669. 'expire_day'=>$expire_day,
  670. 'delivery_day'=>$delivery_day,
  671. 'work_day'=>$work_day,
  672. 'weight'=>$weight,
  673. ];
  674. if(!$vali->check($temp)) return error_show(0,$vali->getError());
  675. $sale_cost_fee = $cost_fee;//销售工艺费默认取传值
  676. $cat_top_list = made($cat_id);
  677. $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
  678. if ($is_gold_price == 1 && $cat_top_id == 6) {
  679. $gold = Db::name("gold_price1")->where(["type"=>$metal_id,"is_del"=>0,"status"=>1])->order("addtime desc")
  680. ->find();
  681. //$total_fee = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee*$weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
  682. //$total_fee(成本合计初始价格) =打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价0+运费;
  683. $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;
  684. // $saleprice = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee/(1-$budget)* $weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
  685. //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
  686. // $saleprice = ($open_fee / $zxinfo['num'] + $weight * $gold["price"] + $cost_fee * $weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee) / (1 - $budget);
  687. $saleprice = $total_fee/ (1 - $budget);
  688. //销售工艺费=((开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100)-(打样费/购买数量 + 开模费/购买数量 +包装费+加标费+证书费+产品裸价0+运费) )/商品重量-最新金价
  689. $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"];
  690. }else{
  691. if($nake_fee){
  692. $saleprice = ($demo_fee / $zxinfo['num']+$delivery_fee+$open_fee / $zxinfo['num'] + $cost_fee * $good_weight +
  693. $pakge_fee + $mark_fee + $cert_fee +$nake_fee)/ (1 - $budget);
  694. $total_fee = $demo_fee / $zxinfo['num']+$delivery_fee+$open_fee / $zxinfo['num'] + $cost_fee *$good_weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee;
  695. }else{
  696. $saleprice = ($demo_fee/$zxinfo['num']+$delivery_fee+$open_fee / $zxinfo['num'] + $cost_fee * $good_weight + $pakge_fee + $mark_fee + $cert_fee) /
  697. (1 - $budget);
  698. $total_fee = $demo_fee/$zxinfo['num']+$delivery_fee+$open_fee / $zxinfo['num'] + $cost_fee *$good_weight + $pakge_fee + $mark_fee + $cert_fee;
  699. }
  700. }
  701. $data=[
  702. "bidNo"=>$bidNo,
  703. "infoNo"=>$infoNo,
  704. "zxNo"=>$zxinfo['zxNo'],
  705. "spuCode"=>$spucode,
  706. "good_name"=>$pname,
  707. "brand_id"=>$brandid,
  708. "cat_id"=>$cat_id,
  709. "specinfo"=>json_encode($specinfo),
  710. "unit_id"=>$unit_id,
  711. "cost_desc"=>$cost_desc,
  712. "work_day"=>$work_day,
  713. "delivery_day"=>$delivery_day,
  714. "good_img"=>$good_img,
  715. "expire_day"=>$expire_day,
  716. "origin_place"=>$origin_place,
  717. "supplierNo"=>$supplierNo,
  718. "pay_way"=>$pay_way,
  719. "tax"=>$tax,
  720. "send_way"=>$send_way,
  721. "metal_id"=>$metal_id,
  722. "is_gold_price"=>$is_gold_price,
  723. "config"=>$config,
  724. "other_config"=>$other_config,
  725. "weight"=>$weight,
  726. "good_weight"=>$good_weight,
  727. "gold_price"=>isset($gold["price"])?$gold["price"]:0,
  728. "is_diff"=>$is_diff,
  729. "demo_fee"=>$demo_fee,
  730. "delivery_fee"=>$delivery_fee,
  731. "open_fee"=>$open_fee,
  732. "pakge_fee"=>$pakge_fee,
  733. "nake_fee"=>$nake_fee,
  734. "mark_fee"=>$mark_fee,
  735. "cert_fee"=>$cert_fee,
  736. "cost_fee"=>$cost_fee,
  737. "total_fee"=>$total_fee,
  738. "supply_area"=>$supply_area,
  739. "remark"=>$remark,
  740. "sale_price"=>$saleprice,
  741. "sale_cost_fee"=>$sale_cost_fee,
  742. "origin_cost_fee"=>$sale_cost_fee,
  743. "origin_price"=>$saleprice,
  744. "createrid"=>$createrid,
  745. "creater"=>$creater,
  746. "status"=>$zxinfo['status']==1 ?1 :2,
  747. "is_del"=>0,
  748. "addtime"=>date("Y-m-d H:i:s"),
  749. "updatetime"=>date("Y-m-d H:i:s")
  750. ];
  751. Db::startTrans();
  752. try{
  753. $insert= Db::name("consult_bids")->insert($data);
  754. if($insert){
  755. // $data=[
  756. // "spuCode"=>$spucode,
  757. // "good_name"=>$pname,
  758. // "brand_id"=>$brandid,
  759. // "good_unit"=>$unit_id,
  760. // "good_type"=>0,
  761. // "moq"=>1,
  762. // "customized"=>$work_day,
  763. // "tax"=>$tax,
  764. // "supplierNo"=>$supplierNo,
  765. // "is_auth"=>0,
  766. // "craft_desc"=>$cost_desc,
  767. // "good_remark"=>$remark,
  768. // "good_img"=>$good_img,
  769. // "good_thumb_img"=>"",
  770. // "good_info_img"=>"",
  771. // "status"=>1,
  772. // "is_del"=>0,
  773. // "createrid"=>$createrid,
  774. // "creater"=>$creater,
  775. // "addtime"=>date("Y-m-d H:i:s"),
  776. // "updatetime"=>date("Y-m-d H:i:s")
  777. // ];
  778. // $good = Db::name("good_zixun")->insert($data);
  779. if($zx['is_project']==1 && $zx['projectNo']!="" && $zxinfo['pgNo']!=""){
  780. $projectinfo =Db::name("project_info")->where(["pgNo"=>$zxinfo["pgNo"],"projectNo"=>$zx['projectNo'],"is_del"=>0])->find();
  781. if($projectinfo==false){
  782. Db::rollback();
  783. return error_show(1006,"未找到项目信息");
  784. }
  785. $temp=[];
  786. $temp['spuCode']=$spucode;
  787. $temp['skuCode']="";
  788. $temp['pgNo']=$zxinfo['pgNo'];
  789. $temp['projectNo']=$zx['projectNo'];
  790. $temp['good_name']=$pname;
  791. $temp['good_type']=$projectinfo['good_type'];
  792. $temp['data_source']=2;
  793. $temp['cat_id']=$cat_id;
  794. $temp['budget_price']=$projectinfo['budget_price'];
  795. $temp['sale_price']=$saleprice;
  796. $temp['origin_price']=$total_fee;
  797. $temp['num']=$zxinfo['num'];
  798. $temp['status']=0;
  799. $temp['is_del']=0;
  800. $temp['creater']=$creater;
  801. $temp['createrid']=$createrid;
  802. $temp['addtime']=date("Y-m-d H:i:s");
  803. $temp['updatetime']=date("Y-m-d H:i:s");
  804. $nu = Db::name("project_feedback")->insert($temp);
  805. if($nu==false){
  806. Db::rollback();
  807. return error_show(1006,"项目反馈失败");
  808. }else{
  809. $old_projectinfo_status = $projectinfo['status'];
  810. $projectinfo['status']=2;
  811. $projectinfo['updatetime']=date("Y-m-d H:i:s");
  812. $up = Db::name("project_info")->save($projectinfo);
  813. if($up){
  814. //修改状态,添加待办,只记录动作
  815. ActionLog::logAdd($this->post['token'], [
  816. "order_code" => $projectinfo['pgNo'],//编码
  817. "status" => $old_projectinfo_status,//这里的status是之前的值
  818. "action_remark" => '',//备注
  819. "action_type" => "status"//新建create,编辑edit,更改状态status
  820. ], "PRO", 2, $projectinfo);
  821. $count = Db::name("project_info")->where(["projectNo"=>$projectinfo['projectNo'],"status"=>1])
  822. ->count();
  823. if($count==0){
  824. $projetc =Db::name("project")->where(["projectNo"=>$projectinfo['projectNo'],"status"=>1])->find();
  825. if($projetc!=false){
  826. $proc =Db::name("project")->where(["projectNo"=>$projectinfo['projectNo'],"status"=>1])->save
  827. (["status"=>2,"updatetime"=>date("Y-m-d H:i:s")]);
  828. if($proc==false){
  829. Db::rollback();
  830. return error_show(1006,"项目反馈失败");
  831. }else{
  832. //修改状态,添加待办
  833. ActionLog::logAdd($this->post['token'], [
  834. "order_code" => $projetc['projectNo'],//项目编码
  835. "status" => 1,//这里的status是之前的值
  836. "action_remark" => '',//备注
  837. "action_type" => "status"//新建create,编辑edit,更改状态status
  838. ], "PRO", 2, $projetc);
  839. ProcessOrder::AddProcess($this->post['token'], [
  840. "order_type" => 'PRO',
  841. "order_code" => $projetc['projectNo'],
  842. "order_id" => $projetc['id'],
  843. "order_status" => 2
  844. ]);
  845. }
  846. }
  847. }
  848. }
  849. }
  850. }
  851. Db::commit();
  852. return app_show(0,"反馈成功",["bidNo"=>$bidNo]);
  853. }else{
  854. Db::rollback();
  855. return error_show(1006,"反馈失败");
  856. }
  857. }catch (\Exception $e){
  858. Db::rollback();
  859. return error_show(1006,$e->getMessage());
  860. }
  861. }
  862. public function feadinfo(){
  863. $bidNo =isset($this->post['bidNo'])&& $this->post['bidNo']!=""?trim($this->post['bidNo']):"";
  864. if($bidNo==""){
  865. return error_show(1004,"参数bidNo不能为空");
  866. }
  867. $info =Db::name("consult_bids")->where(['bidNo'=>$bidNo,"is_del"=>0])->find();
  868. if($info==false){
  869. return error_show(1004,"未找到商品数据");
  870. }
  871. $unit =Db::name("unit")->where(["id"=>$info['unit_id']])->find();
  872. $info['unit'] = isset($unit['unit'])?$unit['unit']:'';
  873. $info['cat_info'] = made($info['cat_id'],[]);
  874. $info['noble_weight'] = $info['good_weight'];
  875. $supplier = Db::name("supplier")->where(["code"=>$info['supplierNo']])->find();
  876. $info['supplierName'] = isset($supplier['name'])?$supplier['name']:"";
  877. if($info['brand_id']!=0){
  878. $brand=Db::name("brand")->where(["id"=>$info['brand_id']])->find();
  879. $info["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  880. }else{
  881. $info["brand_name"]="";
  882. $info["brand_id"]="";
  883. }
  884. $catinfo = Db::name("cat")->where(["id"=>$info['cat_id']])->find();
  885. $bidinfo = Db::name("consult_info")->where(["infoNo"=>$info["infoNo"]])->find();
  886. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  887. $god=[
  888. "metal_id"=>$info['metal_id'],
  889. "weight"=>$info["good_weight"],
  890. "demo_fee"=>$info["demo_fee"],
  891. "delivery_fee"=>$info["delivery_fee"],
  892. "open_fee"=>$info["open_fee"],
  893. "packing_fee"=>$info["pakge_fee"],
  894. "mark_fee"=>$info["mark_fee"],
  895. "nake_fee"=>$info["nake_fee"],
  896. "cert_fee"=>$info["cert_fee"],
  897. "cost_fee"=>$info["cost_fee"],
  898. "num"=>$bidinfo["num"],
  899. ];
  900. if($info['is_gold_price']==1){
  901. $price = GoldPrice($god, $budget/100);
  902. $info['sale_price'] =round($price,2);
  903. }
  904. $info['specinfo'] = json_decode($info['specinfo'],true);
  905. $info['metal_name']=isset($info['metal_id'])&& $info['metal_id']!=0?$this->noble[$info['metal_id']]:"";
  906. $bargain =Db::name("bargain_order")->where(['bidsNo'=>$bidNo,"is_del"=>0])->find();
  907. $info['bargain'] =$bargain;
  908. return app_show(0,"获取成功",$info);
  909. }
  910. public function feededit(){
  911. $bidNo= isset($this->post['bidNo'])&&$this->post['bidNo']!=""?trim($this->post['bidNo']):"";
  912. if($bidNo==""){
  913. return error_show(1002,"参数bidNo不能为空");
  914. }
  915. $bidinfo = Db::name("consult_bids")->where(["bidNo"=>$bidNo,"is_del"=>0])->find();
  916. if($bidinfo==false){
  917. return error_show(1003,"未找到信息数据");
  918. }
  919. if($bidinfo['status']>=5){
  920. return error_show(1004,"咨询单已确认无法修改");
  921. }
  922. $zxinfo = Db::name("consult_info")->where(["infoNo"=>$bidinfo['infoNo'],"is_del"=>0])->find();
  923. if($zxinfo==false){
  924. return error_show(1003,"未找到信息数据");
  925. }
  926. $zx = Db::name("consult_order")->where(["zxNo"=>$zxinfo['zxNo'],"is_del"=>0])->find();
  927. if($zx==false){
  928. return error_show(1003,"未找咨询信息数据");
  929. }
  930. $pname = isset($this->post['pname'])&&$this->post['pname']!=""? trim($this->post['pname']):"";
  931. if($pname==""){
  932. return error_show(1002,"参数pname不能为空");
  933. }
  934. $brandid = isset($this->post['brandid'])&&$this->post['brandid']!=""? intval($this->post['brandid']):"";
  935. // if($brandid==""){
  936. // return error_show(1002,"参数brandid不能为空");
  937. // }
  938. $cat_id = isset($this->post['cat_id'])&&$this->post['cat_id']!=""? trim($this->post['cat_id']):"";
  939. if($cat_id==""){
  940. return error_show(1002,"参数cat_id不能为空");
  941. }
  942. $specin= isset($this->post['specinfo'])&&!empty($this->post['specinfo'])?$this->post['specinfo']:"";
  943. if($specin==""){
  944. return error_show(1003,"参数specinfo不能为空");
  945. }
  946. $specinfo=[];
  947. foreach ($specin as $v){
  948. $spec =Db::name("specs")->where(["id"=>$v['specid']])->find();
  949. $spec_value =Db::name("spec_value")->where(["id"=>$v['spec_value_id']])->find();
  950. $v['spec_name']=isset($spec['spec_name'])?$spec['spec_name']:"";
  951. $v['spec_value_name']=isset($spec_value['spec_value'])?$spec_value['spec_value']:"";
  952. $specinfo[]=$v;
  953. }
  954. $unit_id = isset($this->post['unit_id'])&&$this->post['unit_id']!=""? intval($this->post['unit_id']):"";
  955. $cost_desc = isset($this->post['cost_desc'])&&$this->post['cost_desc']!=""? trim($this->post['cost_desc']):"";
  956. $work_day = isset($this->post['work_day'])&&$this->post['work_day']!=""? intval($this->post['work_day']):"";
  957. $delivery_day = isset($this->post['delivery_day'])&&$this->post['delivery_day']!=""? intval($this->post['delivery_day']):"";
  958. $good_img = isset($this->post['good_img'])&&$this->post['good_img']!=""? trim($this->post['good_img']):"";
  959. $expire_day = isset($this->post['expire_day'])&&$this->post['expire_day']!=""? intval($this->post['expire_day'])
  960. :"";
  961. $origin_place = isset($this->post['origin_place'])&&$this->post['origin_place']!=""? trim($this->post['origin_place']):"";
  962. $supplierNo = isset($this->post['supplierNo'])&&$this->post['supplierNo']!=""? trim($this->post['supplierNo']):"";
  963. $pay_way = isset($this->post['pay_way'])&&$this->post['pay_way']!=""? intval($this->post['pay_way']):"";
  964. $tax = isset($this->post['tax'])&&$this->post['tax']!=""? trim($this->post['tax']):"";
  965. $send_way = isset($this->post['send_way'])&&$this->post['send_way']!=""? intval($this->post['send_way']):"0";
  966. $metal_id = isset($this->post['metal_id'])&&$this->post['metal_id']!=""? intval($this->post['metal_id']):"0";
  967. $is_gold_price = isset($this->post['is_gold_price'])&&$this->post['is_gold_price']!=""? intval($this->post['is_gold_price']):"0";
  968. $config = isset($this->post['config'])&&$this->post['config']!=""? $this->post['config']:"";
  969. $other_config = isset($this->post['other_config'])&&$this->post['other_config']!=""? $this->post['other_config']:"";
  970. $weight = isset($this->post['weight'])&&$this->post['weight']!=""? floatval($this->post['weight']):"0";
  971. $noble_weight = isset($this->post['noble_weight'])&&$this->post['noble_weight']!=""? floatval($this->post['noble_weight']):"0";
  972. $demo_fee = isset($this->post['demo_fee'])&&$this->post['demo_fee']!=""? floatval($this->post['demo_fee']):"0";
  973. $delivery_fee = isset($this->post['delivery_fee'])&&$this->post['delivery_fee']!=""? floatval($this->post['delivery_fee']):"0";
  974. $open_fee = isset($this->post['open_fee'])&&$this->post['open_fee']!=""? floatval($this->post['open_fee']):"0";
  975. $pakge_fee = isset($this->post['pakge_fee'])&&$this->post['pakge_fee']!=""? floatval($this->post['pakge_fee']):"0";
  976. $nake_fee = isset($this->post['nake_fee'])&&$this->post['nake_fee']!==""? floatval($this->post['nake_fee']):0;
  977. $mark_fee = isset($this->post['mark_fee'])&&$this->post['mark_fee']!=""? floatval($this->post['mark_fee']):"0";
  978. $cert_fee = isset($this->post['cert_fee'])&&$this->post['cert_fee']!=""? floatval($this->post['cert_fee']):"0";
  979. $cost_fee = isset($this->post['cost_fee'])&&$this->post['cost_fee']!=""? floatval($this->post['cost_fee']):"0";
  980. $is_diff = isset($this->post['is_diff'])&&$this->post['is_diff']!==""? intval($this->post['is_diff']):"";
  981. $supply_area = isset($this->post['supply_area'])&&$this->post['supply_area']!==""? intval($this->post['supply_area']):"";
  982. $remark = isset($this->post['remark'])&&$this->post['remark']!=""? trim($this->post['remark']):"";
  983. $catinfo = Db::name("cat")->where(["id"=>$cat_id])->find();
  984. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  985. $sale_cost_fee = $bidinfo['sale_cost_fee'];
  986. $cat_top_list = made($cat_id);
  987. $cat_top_id = isset($cat_top_list[0]['id']) ? $cat_top_list[0]['id'] : 0;
  988. if ($is_gold_price == 1 && $cat_top_id == 6) {
  989. $gold = Db::name("gold_price1")->where(["type"=>$metal_id,"is_del"=>0,"status"=>1])->order("addtime desc")
  990. ->find();
  991. //$total_fee(成本合计初始价格) =打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价0+运费;
  992. $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;
  993. // $saleprice = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee/(1-$budget)* $weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
  994. //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
  995. $saleprice = $total_fee / (1 - $budget);
  996. //销售工艺费=((开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100)-(打样费/购买数量 + 开模费/购买数量 +包装费+加标费+证书费+产品裸价0+运费) )/商品重量-最新金价
  997. $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"];
  998. }else{
  999. $saleprice = ($demo_fee / $zxinfo['num']+$delivery_fee+$open_fee / $zxinfo['num'] + $cost_fee*$noble_weight + $pakge_fee +
  1000. $mark_fee + $cert_fee + $nake_fee) / (1 - $budget);
  1001. $total_fee = $demo_fee/$zxinfo['num']+$delivery_fee+$open_fee/$zxinfo['num'] + $cost_fee * $noble_weight + $pakge_fee + $mark_fee+$cert_fee +$nake_fee;
  1002. }
  1003. Db::startTrans();
  1004. try{
  1005. $data=[
  1006. "good_name"=>$pname,
  1007. "brand_id"=>$brandid,
  1008. "cat_id"=>$cat_id,
  1009. "specinfo"=>json_encode($specinfo),
  1010. // "material"=>$material,
  1011. "unit_id"=>$unit_id,
  1012. "cost_desc"=>$cost_desc,
  1013. "work_day"=>$work_day,
  1014. "delivery_day"=>$delivery_day,
  1015. "good_img"=>$good_img,
  1016. "expire_day"=>$expire_day,
  1017. "origin_place"=>$origin_place,
  1018. "supplierNo"=>$supplierNo,
  1019. "pay_way"=>$pay_way,
  1020. "tax"=>$tax,
  1021. "send_way"=>$send_way,
  1022. "metal_id"=>$metal_id,
  1023. "is_gold_price"=>$is_gold_price,
  1024. "config"=>$config,
  1025. "other_config"=>$other_config,
  1026. "weight"=>$weight,
  1027. "good_weight"=>$noble_weight,
  1028. "is_diff"=>$is_diff,
  1029. "demo_fee"=>$demo_fee,
  1030. "gold_price"=>isset($gold["price"])?$gold["price"]:0,
  1031. "delivery_fee"=>$delivery_fee,
  1032. "open_fee"=>$open_fee,
  1033. "pakge_fee"=>$pakge_fee,
  1034. "nake_fee"=>$nake_fee,
  1035. "mark_fee"=>$mark_fee,
  1036. "cert_fee"=>$cert_fee,
  1037. "cost_fee"=>$cost_fee,
  1038. "sale_cost_fee"=>$sale_cost_fee,
  1039. "origin_cost_fee"=>$sale_cost_fee,
  1040. "total_fee"=>$total_fee,
  1041. "sale_price"=>$saleprice,
  1042. "origin_price"=>$saleprice,
  1043. "supply_area"=>$supply_area,
  1044. "remark"=>$remark,
  1045. "status"=>0,
  1046. "updatetime"=>date("Y-m-d H:i:s")
  1047. ];
  1048. $insert= Db::name("consult_bids")->where($bidinfo)->save($data);
  1049. if($insert){
  1050. if($zxinfo['bargain_status']==1){
  1051. $zxinfo['bargain_status']=0;
  1052. $infoip =Db::name("consult_info")->save($zxinfo);
  1053. if($infoip==false){
  1054. Db::rollback();
  1055. return error_show(1006,"咨询信息状态更新失败");
  1056. }
  1057. }
  1058. if($zx['is_project']==1 && $zx['projectNo']!="" && $zxinfo['pgNo']!=""){
  1059. $projectinfo =Db::name("project_info")->where(["pgNo"=>$zxinfo["pgNo"],"projectNo"=>$zx['projectNo'],"is_del"=>0])->find();
  1060. if($projectinfo==false){
  1061. Db::rollback();
  1062. return error_show(1006,"未找到项目信息");
  1063. }
  1064. $feed = Db::name("project_feedback")->where(["pgNo"=>$zxinfo["pgNo"],"projectNo"=>$zx['projectNo'],"spuCode"=>$bidinfo['spuCode'],"is_del"=>0])->find();
  1065. if($feed==false){
  1066. Db::rollback();
  1067. return error_show(1006,"未找到项目反馈信息");
  1068. }
  1069. $feed['good_name']=$pname;
  1070. $feed['good_type']=$projectinfo['good_type'];
  1071. $feed['cat_id']=$cat_id;
  1072. $feed['sale_price']=$saleprice;
  1073. $feed['origin_price']=$total_fee;
  1074. $feed['updatetime']=date("Y-m-d H:i:s");
  1075. $temp['updatetime']=date("Y-m-d H:i:s");
  1076. $nu = Db::name("project_feedback")->save($feed);
  1077. if($nu==false){
  1078. Db::rollback();
  1079. return error_show(1006,"项目反馈失败");
  1080. }else{
  1081. $old_projectinfo_status = $projectinfo['status'];
  1082. $projectinfo['status']=2;
  1083. $projectinfo['updatetime']=date("Y-m-d H:i:s");
  1084. $up = Db::name("project_info")->save($projectinfo);
  1085. if($up){
  1086. //修改状态,添加待办,只记录动作
  1087. ActionLog::logAdd($this->post['token'], [
  1088. "order_code" => $projectinfo['pgNo'],//编码
  1089. "status" => $old_projectinfo_status,//这里的status是之前的值
  1090. "action_remark" => '',//备注
  1091. "action_type" => "status"//新建create,编辑edit,更改状态status
  1092. ], "PRO", 2, $projectinfo);
  1093. $count = Db::name("project_info")->where(["projectNo"=>$projectinfo['projectNo'],"status"=>1])->count();
  1094. if ($count == 0) {
  1095. //先查询是否存在status==1的项目,有的话再更新,否则跳过
  1096. $project_id = Db::name("project")->where(["projectNo" => $projectinfo['projectNo'], "status" => 1])->value('id', 0);
  1097. if ($project_id) {
  1098. $proc = Db::name("project")->where(["id" => $project_id])->update(["status" => 2, "updatetime" => date("Y-m-d H:i:s")]);
  1099. if ($proc == false) {
  1100. Db::rollback();
  1101. return error_show(1006, "项目反馈失败");
  1102. }else{
  1103. //修改状态,添加待办
  1104. ActionLog::logAdd($this->post['token'], [
  1105. "order_code" => $projectinfo['projectNo'],//项目编码
  1106. "status" => 1,//这里的status是之前的值
  1107. "action_remark" => '',//备注
  1108. "action_type" => "status"//新建create,编辑edit,更改状态status
  1109. ], "PRO", 2, $this->post);
  1110. ProcessOrder::AddProcess($this->post['token'], [
  1111. "order_type" => 'PRO',
  1112. "order_code" => $projectinfo['projectNo'],
  1113. "order_id" => $project_id,
  1114. "order_status" => 2
  1115. ]);
  1116. }
  1117. }
  1118. }
  1119. }
  1120. }
  1121. }
  1122. Db::commit();
  1123. return app_show(0,"编辑成功");
  1124. }else{
  1125. Db::rollback();
  1126. return error_show(1004,"编辑失败");
  1127. }
  1128. }catch (\Exception $e){
  1129. Db::rollback();
  1130. return error_show(1004,$e->getMessage());
  1131. }
  1132. }
  1133. public function bargain_add(){
  1134. $bidNo = isset($this->post['bidNo'])&& $this->post['bidNo']!=""?trim($this->post['bidNo']):"";
  1135. if($bidNo===""){
  1136. return error_show(1004,"参数bidNo不能为空");
  1137. }
  1138. $info =Db::name("consult_bids")->where(['bidNo'=>$bidNo,"is_del"=>0])->find();
  1139. if($info==false){
  1140. return error_show(1004,"未找到商品数据");
  1141. }
  1142. $consult =Db::name("consult_info")->where(['infoNo'=>$info['infoNo'],"is_del"=>0])->find();
  1143. if($consult==false){
  1144. return error_show(1004,"未找到咨询数据");
  1145. }
  1146. $bargain_price = isset($this->post['bargain_price'])&& $this->post['bargain_price']!=""?floatval($this->post['bargain_price']):"";
  1147. if($bargain_price===""){
  1148. return error_show(1004,"参数bargain_price不能为空");
  1149. }
  1150. $cost_price = isset($this->post['cost_price'])&& $this->post['cost_price']!=""?floatval($this->post['cost_price']):"";
  1151. if($info['is_gold_price']==1){
  1152. if($cost_price==""){
  1153. return error_show(1004,"参数cost_price不能为空");
  1154. }
  1155. $catinfo = Db::name("cat")->where(["id"=>$info['cat_id']])->find();
  1156. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  1157. $gold = Db::name("gold_price1")->where(["type"=>$info['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1158. ->find();
  1159. $bargain_price = ($info['demo_fee']/$consult['num']+$info['delivery_fee']+$info['open_fee']/$consult['num']+$info['good_weight'] * $gold["price"] + $cost_price *$info['good_weight']+$info['pakge_fee']+$info['mark_fee'] +$info['cert_fee'] +$info['nake_fee']) / (1 - $budget);
  1160. }
  1161. $bargain_reason = isset($this->post['bargain_reason'])&& $this->post['bargain_reason']!=""?trim($this->post['bargain_reason']):"";
  1162. // if($bargain_reason===""){
  1163. // return error_show(1004,"参数bargain_reason不能为空");
  1164. // }
  1165. $infos =Db::name("consult_info")->where(['infoNo'=>$info['infoNo'],"is_del"=>0])->find();
  1166. if($infos==false){
  1167. return error_show(1004,"未找到商品数据");
  1168. }
  1169. if($infos['status']!=2&&$infos['status']!=3&&$infos['status']!=7){
  1170. return error_show(1004,"咨询单招标未结束或已确认商品");
  1171. }
  1172. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  1173. if($token==''){
  1174. return error_show(105,"参数token不能为空");
  1175. }
  1176. $user =GetUserInfo($token);
  1177. if(empty($user)||$user['code']!=0){
  1178. return error_show(1002,"用户数据不存在");
  1179. }
  1180. //新增两个字段
  1181. //议价备注
  1182. $bargain_remark = isset($this->post['bargain_remark']) && $this->post['bargain_remark'] != "" ? trim($this->post['bargain_remark']) : "";
  1183. //议价原因id
  1184. $result_info_id = isset($this->post['result_info_id']) && $this->post['result_info_id'] != "" ? $this->post['result_info_id'] : "";
  1185. if ($result_info_id != '') {
  1186. $temp = Db::name('result_info')->field('id')->where(['result_code' => $result_info_id, 'type' => 7, 'status' => 1, 'is_del' => 0])->find();//type 7议价原因
  1187. if (empty($temp)) return error_show(1004, "议价原因选择不正确");
  1188. }
  1189. $createrid= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  1190. $creater= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  1191. $bargainNo =makeNo("BA");
  1192. Db::startTrans();//::todo 金价 毛利计算
  1193. try{
  1194. $data=[
  1195. "bidsNo"=>$bidNo,
  1196. "infoNo"=>$info['infoNo'],
  1197. "zxNo"=>$info['zxNo'],
  1198. "bargainNo"=>$bargainNo,
  1199. "bargain_type"=>1,
  1200. "bargain_reason"=>$bargain_reason,
  1201. "sale_price"=>$info['sale_price'],
  1202. "cost_before_price"=>$info['sale_cost_fee'],
  1203. "cost_after_price"=>$cost_price,
  1204. "before_rate"=>round(($info['sale_price']-$info['total_fee'])/$info['sale_price'],2),
  1205. "after_rate"=>round(($bargain_price-$info['total_fee'])/$bargain_price,2),
  1206. "after_price"=>$bargain_price,
  1207. "exam_info"=>"",
  1208. "status"=>0,
  1209. "is_del"=>0,
  1210. "creater"=>$creater,
  1211. "createrid"=>$createrid,
  1212. "addtime"=>date("Y-m-d H:i:s"),
  1213. "updatetime"=>date("Y-m-d H:i:s"),
  1214. 'bargain_remark'=>$bargain_remark,
  1215. 'result_info_id'=>$result_info_id,
  1216. ];
  1217. $int = Db::name("bargain_order")->insert($data);
  1218. if($int){
  1219. $info['status']=3;
  1220. $info['updatetime']=date("Y-m-d H:i:s");
  1221. $up =Db::name("consult_bids")->save($info);
  1222. if($up){
  1223. $old_infos_status = $infos['status'];
  1224. $infos['status']=3;
  1225. $infos['updatetime']=date("Y-m-d H:i:s");
  1226. $ups =Db::name("consult_info")->save($infos);
  1227. if($ups){
  1228. //修改状态,添加待办
  1229. ActionLog::logAdd($this->post['token'], [
  1230. "order_code" => $infos['infoNo'],//咨询单详情编号
  1231. "status" => $old_infos_status,//这里的status是之前的值
  1232. "action_remark" => '',//备注
  1233. "action_type" => "status"//新建create,编辑edit,更改状态status
  1234. ], "ZXD", $infos['status'], $infos);
  1235. ProcessOrder::AddProcess($this->post['token'], [
  1236. "order_type" => 'ZXD',
  1237. "order_code" => $infos['infoNo'],//咨询单详情编号
  1238. "order_id" => $infos['id'],
  1239. "order_status" => $infos['status']
  1240. ]);
  1241. Db::commit();
  1242. return app_show(0,"议价单生成成功",["bargainNo"=>$bargainNo]);
  1243. }
  1244. }
  1245. }
  1246. Db::rollback();
  1247. return error_show(1004,"议价单新建失败");
  1248. }catch (\Exception $e){
  1249. Db::rollback();
  1250. return error_show(1004,$e->getMessage());
  1251. }
  1252. }
  1253. //选择商品
  1254. public function bids_check(){
  1255. $bidNo = isset($this->post['bidNo'])&& $this->post['bidNo']!=""?trim($this->post['bidNo']):"";
  1256. if($bidNo===""){
  1257. return error_show(1004,"参数bidNo不能为空");
  1258. }
  1259. $info =Db::name("consult_bids")->where(['bidNo'=>$bidNo,"is_del"=>0])->find();
  1260. if($info==false){
  1261. return error_show(1004,"未找到商品数据");
  1262. }
  1263. $infos =Db::name("consult_info")->where(['infoNo'=>$info['infoNo'],"is_del"=>0])->find();
  1264. if($infos==false){
  1265. return error_show(1004,"未找到商品数据");
  1266. }
  1267. if($infos['status']!=2&&$infos['status']!=3&&$infos['status']!=7){
  1268. return error_show(1004,"咨询单招标未结束或已确认商品");
  1269. }
  1270. Db::startTrans();
  1271. try {
  1272. $info['status']=6;
  1273. $info['updatetime']=date("Y-m-d H:i:s");
  1274. $bids = Db::name("consult_bids")->save($info);
  1275. if($bids){
  1276. $old_infos_status = $infos['status'];
  1277. $infos['status']=4;
  1278. $infos['updatetime']=date("Y-m-d H:i:s");
  1279. $se = Db::name("consult_info")->save($infos);
  1280. if($se){
  1281. //修改状态,添加待办
  1282. ActionLog::logAdd($this->post['token'], [
  1283. "order_code" => $infos['infoNo'],//咨询单详情编号
  1284. "status" => $old_infos_status,//这里的status是之前的值
  1285. "action_remark" => '',//备注
  1286. "action_type" => "status"//新建create,编辑edit,更改状态status
  1287. ], "ZXD", $infos['status'], $infos);
  1288. ProcessOrder::AddProcess($this->post['token'], [
  1289. "order_type" => 'ZXD',
  1290. "order_code" => $infos['infoNo'],//咨询单详情编号
  1291. "order_id" => $infos['id'],
  1292. "order_status" => $infos['status']
  1293. ]);
  1294. Db::commit();
  1295. return app_show(0,"商品确定成功");
  1296. }
  1297. }
  1298. Db::rollback();
  1299. return error_show(1004,"商品确认失败");
  1300. }catch (\Exception $e){
  1301. Db::rollback();
  1302. return error_show(1004,$e->getMessage());
  1303. }
  1304. }
  1305. //议价审核
  1306. /**
  1307. * status:
  1308. * 0待审核 1业务主管审核通过 2 业务税率未通过 3 业务驳回 4 专员通过 5 专员驳回 6 财务通过 7 财务税率未通过 8财务驳回 9 boss通过 10 boss 税率越线通过 11 驳回
  1309. */
  1310. public function bargain_status(){
  1311. $bargainNo = isset($this->post['bargainNo'])&& $this->post['bargainNo']!=""?trim($this->post['bargainNo']):"";
  1312. if($bargainNo===""){
  1313. return error_show(1004,"参数bargainNo不能为空");
  1314. }
  1315. $info =Db::name("bargain_order")->where(['bargainNo'=>$bargainNo,"is_del"=>0])->find();
  1316. if($info==false){
  1317. return error_show(1004,"未找到议价数据");
  1318. }
  1319. $bids=Db::name("consult_bids")->where(["bidNo"=>$info["bidsNo"],"is_del"=>0])->find();
  1320. if($bids==false){
  1321. return error_show(1004,"未找到商品数据");
  1322. }
  1323. $coninfo=Db::name("consult_info")->where(["infoNo"=>$bids["infoNo"],"is_del"=>0])->find();
  1324. if($coninfo==false){
  1325. return error_show(1004,"未找到咨询单数据");
  1326. }
  1327. $status = isset($this->post['status'])&& $this->post['status']!=='' ? intval($this->post['status']):"";
  1328. if($status===''){
  1329. return error_show(1005,"参数status不能为空");
  1330. }
  1331. $catinfo = Db::name("cat")->where(["id"=>$bids['cat_id']])->find();
  1332. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  1333. $rate = isset($catinfo['rate']) ? $catinfo['rate']/100:0; //业务主管利率
  1334. $money_rate = isset($catinfo['money_rate']) ? $catinfo['money_rate']/100:0;//财务主管利率
  1335. $lower_rate = isset($catinfo['lower_rate']) ? $catinfo['lower_rate']/100:0;//boss主管利率
  1336. if($bids['is_gold_price']==1){
  1337. $gold = Db::name("gold_price1")->where(["type"=>$bids['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1338. ->find();
  1339. // $saleprice = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee/(1-$budget)* $weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
  1340. //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
  1341. $total_fe= $bids['demo_fee'] / $coninfo['num']+$bids['delivery_fee']+$bids['open_fee'] / $coninfo['num'] +
  1342. $bids['good_weight']*$gold["price"] +$bids['cost_fee']*$bids['good_weight'] + $bids['pakge_fee'] +$bids['mark_fee'] + $bids['cert_fee'] + $bids['nake_fee'];
  1343. $saleprice =$total_fe / (1 - $budget);
  1344. $rate_price = $total_fe / (1 - $rate);
  1345. $money_price =$total_fe / (1 - $money_rate);
  1346. $lower_price =$total_fe / (1 - $lower_rate);
  1347. }else{
  1348. $total_fe= $bids['demo_fee']/$coninfo['num']+$bids['delivery_fee']+$bids['open_fee'] /
  1349. $coninfo['num']+$bids['cost_fee']*$bids['good_weight']+$bids['pakge_fee'] +$bids['mark_fee']+ $bids['cert_fee'] + $bids['nake_fee'];
  1350. if($bids['nake_fee']!=0){
  1351. $saleprice = ($total_fe)/ (1 - $budget);
  1352. $rate_price = ($total_fe)/ (1 - $rate);
  1353. $money_price =($total_fe)/ (1 - $money_rate);
  1354. $lower_price = ($total_fe) / (1 - $lower_rate);
  1355. }else{
  1356. $saleprice = $total_fe / (1 - $budget);
  1357. $rate_price =$total_fe/ (1 - $rate);
  1358. $money_price =$total_fe / (1 - $money_rate);
  1359. $lower_price = $total_fe/ (1 - $lower_rate);
  1360. }
  1361. }
  1362. $ra_status = $info['status'];
  1363. if($status==1){
  1364. if($info['status']==0){
  1365. if($info['after_price']<$rate_price){
  1366. $info['status']=2;
  1367. }else{
  1368. $info['status']=1;
  1369. }
  1370. }elseif($info['status']==2){
  1371. $info['status']=4;
  1372. }elseif($info['status']==4||$info['status']==5){
  1373. if($info['after_price']<$money_price){
  1374. $info['status']=7;
  1375. }else{
  1376. $info['status']=6;
  1377. }
  1378. }elseif($info['status']==7){
  1379. $info['lower_price'] =$lower_price;
  1380. if($info['after_price']<$lower_price){
  1381. $info['status']=10;
  1382. }else{
  1383. $info['status']=9;
  1384. }
  1385. }
  1386. }else{
  1387. if($info['status']==0){
  1388. $info['status']=3;
  1389. }elseif($info['status']==2){
  1390. $info['status']=4;
  1391. }elseif($info['status']==4||$info['status']==5){
  1392. $info['status']=8;
  1393. }elseif($info['status']==7){
  1394. $info['lower_price'] =$lower_price;
  1395. $info['status']=11;
  1396. }
  1397. }
  1398. $remark = isset($this->post['remark'])&& $this->post['remark']!=""?trim($this->post['remark']):"";
  1399. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  1400. if($token==''){
  1401. return error_show(105,"参数token不能为空");
  1402. }
  1403. $user =GetUserInfo($token);
  1404. if(empty($user)||$user['code']!=0){
  1405. return error_show(1002,"用户数据不存在");
  1406. }
  1407. $createrid= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  1408. $creater= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  1409. Db::startTrans();
  1410. try{
  1411. $examinfo = isset($info['exam_info'])&&$info['exam_info']!="" ? json_decode($info['exam_info'],true):[];
  1412. $examinfo[]=["status"=>$status,"info_status"=>$ra_status,"remark"=>$remark,"createrid"=>$createrid,
  1413. "creater"=>$creater];
  1414. // $info['status'] =$status;
  1415. $info['remark'] =$remark;
  1416. $info['exam_info']=json_encode($examinfo) ;
  1417. $info['updatetime'] =date("Y-m-d H:i:s");
  1418. $up =Db::name("bargain_order")->save($info);
  1419. if($up){
  1420. if($info['status']==1||$info['status']==3||$info['status']==8||$info['status']==6||$info['status']==9||$info['status']==10||$info['status']==11){
  1421. $bids['status']=5;
  1422. if($info['status']==1||$info['status']==6||$info['status']==9||$info['status']==10){
  1423. $bids['sale_price']=$info['after_price'];
  1424. if($bids['is_gold_price']==1){
  1425. // $gold = Db::name("gold_price1")->where(["type"=>$bids['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1426. // ->find();
  1427. // $bids['sale_price']= ($bids['open_fee'] / $coninfo['num'] + $bids['weight'] * $gold["price"] + $info['cost_after_price'] *$bids['weight'] +
  1428. // $bids['pakge_fee'] + $bids['mark_fee'] +$bids['cert_fee'] +$bids['nake_fee']) /(1 - $budget);
  1429. $bids['sale_cost_fee'] = $info['cost_after_price'];
  1430. $bids['gold_price'] =isset($gold["price"])?$gold["price"]:0;
  1431. }
  1432. }
  1433. $bids['updatetime']=date("Y-m-d H:i:s");
  1434. $up =Db::name("consult_bids")->save($bids);
  1435. if($up==false){
  1436. Db::rollback();
  1437. return error_show(1004,"数据更新失败");
  1438. }
  1439. }
  1440. Db::commit();
  1441. return app_show(0,"更新成功");
  1442. }
  1443. }catch (\Exception $e){
  1444. Db::rollback();
  1445. return error_show(1004,$e->getMessage());
  1446. }
  1447. }
  1448. public function bargain_info(){
  1449. $bargainNo = isset($this->post['bargainNo'])&& $this->post['bargainNo']!=""?trim($this->post['bargainNo']):"";
  1450. if($bargainNo===""){
  1451. return error_show(1004,"参数bargainNo不能为空");
  1452. }
  1453. $info =Db::name("bargain_order")->where(['bargainNo'=>$bargainNo,"is_del"=>0])->find();
  1454. if($info==false){
  1455. return error_show(1004,"未找到议价数据");
  1456. }
  1457. $bidinfos = Db::name("consult_bids")->where([["bidNo","=",$info['bidsNo']],["is_del","=",0]])->find();
  1458. if($bidinfos==false){
  1459. return error_show(1004,"未找到商品数据");
  1460. }
  1461. $consultinfos = Db::name("consult_info")->where([["infoNo","=",$bidinfos['infoNo']],["is_del","=",0]])
  1462. ->find();
  1463. if($consultinfos==false){
  1464. return error_show(1004,"未找到咨询商品数据");
  1465. }
  1466. $info['spuCode'] = isset($bidinfos['spuCode'])?$bidinfos['spuCode']:"";
  1467. $info['good_name'] = isset($bidinfos['good_name'])?$bidinfos['good_name']:"";
  1468. $info['good_img'] = isset($bidinfos['good_img'])?$bidinfos['good_img']:"";
  1469. $info['brand_id'] = isset($bidinfos['brand_id'])?$bidinfos['brand_id']:"";
  1470. $info['good_num'] = isset($consultinfos['num'])?$consultinfos['num']:"";
  1471. $info['before_rate'] =round($info['before_rate']*100,2);
  1472. $info['sale_price'] =round($bidinfos['origin_price'],2);
  1473. $info['cost_before_price'] =round($bidinfos['origin_cost_fee'],2);
  1474. $info['after_rate'] = round($info['after_rate']*100,2);
  1475. $info['exam_info'] = isset($info['exam_info'])&&$info['exam_info']!=""?json_decode($info['exam_info'],true):"";
  1476. if($bidinfos['brand_id']!=0){
  1477. $info['brand_id'] = $bidinfos['brand_id'];
  1478. $brand=Db::name("brand")->where(["id"=>$bidinfos['brand_id']])->find();
  1479. $info["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1480. }else{
  1481. $info["brand_name"]="";
  1482. $info["brand_id"]="";
  1483. }
  1484. $catinfo = Db::name("cat")->where(["id"=>$bidinfos['cat_id']])->find();
  1485. $info['can']= isset($bidinfos['cat_id']) && $bidinfos['cat_id'] !=0 ? made($bidinfos['cat_id']):[];
  1486. $unit =Db::name("unit")->where(["id"=>$bidinfos['unit_id']])->find();
  1487. $info['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1488. $bidinfoe = Db::name("consult_info")->where(["infoNo"=>$info["infoNo"]])->find();
  1489. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1490. $lower_rate = isset($catinfo['lower_rate']) ? $catinfo['lower_rate']/100:0;//boss主管利率
  1491. $info['budget'] =$budget;
  1492. $god=[
  1493. "metal_id"=>$bidinfos['metal_id'],
  1494. "weight"=>$bidinfos["good_weight"],
  1495. "demo_fee"=>$bidinfos["demo_fee"],
  1496. "delivery_fee"=>$bidinfos["delivery_fee"],
  1497. "open_fee"=>$bidinfos["open_fee"],
  1498. "packing_fee"=>$bidinfos["pakge_fee"],
  1499. "mark_fee"=>$bidinfos["mark_fee"],
  1500. "nake_fee"=>$bidinfos["nake_fee"],
  1501. "cert_fee"=>$bidinfos["cert_fee"],
  1502. "cost_fee"=>$bidinfos["cost_fee"],
  1503. "num"=>$bidinfoe["num"],
  1504. ];
  1505. $info['gold_price']=0;
  1506. if($bidinfos['is_gold_price']==1 &&$bidinfos['metal_id']>0){
  1507. $gold = Db::name("gold_price1")->where(["type"=>$bidinfos["metal_id"],"is_del"=>0,"status"=>1])->order("addtime desc")
  1508. ->find();
  1509. $info['gold_price'] =$gold['price'];
  1510. $lower_price = ($bidinfos['demo_fee']/$consultinfos['num']+$bidinfos['delivery_fee']+$bidinfos['open_fee']/$consultinfos['num'] + $bidinfos['good_weight']* $gold["price"] +$bidinfos['cost_fee']*$bidinfos['good_weight'] + $bidinfos['pakge_fee'] +$bidinfos['mark_fee'] + $bidinfos['cert_fee'] + $bidinfos['nake_fee']) / (1 - $lower_rate);
  1511. }else{
  1512. if($bidinfos['nake_fee']!=0){
  1513. $lower_price =($bidinfos['demo_fee']/$consultinfos['num']+$bidinfos['delivery_fee']+$bidinfos['open_fee']/$consultinfos['num']+$bidinfos['cost_fee']*$bidinfos['good_weight']+$bidinfos['pakge_fee'] +$bidinfos['mark_fee']+ $bidinfos['cert_fee'] + $bidinfos['nake_fee']) / (1 - $lower_rate);
  1514. }else{
  1515. $lower_price = ($bidinfos['demo_fee']/$consultinfos['num']+$bidinfos['delivery_fee']+$bidinfos['open_fee']/$consultinfos['num']+$bidinfos['cost_fee']*$bidinfos['good_weight']+$bidinfos['pakge_fee'] +$bidinfos['mark_fee']+ $bidinfos['cert_fee'])/ (1 - $lower_rate);
  1516. }
  1517. }
  1518. $info['cost_desc'] =$bidinfos['cost_desc'];
  1519. $info['work_day'] =$bidinfos['work_day'];
  1520. $info['delivery_day'] =$bidinfos['delivery_day'];
  1521. $info['expire_day'] =$bidinfos['expire_day'];
  1522. $info['origin_place'] =$bidinfos['origin_place'];
  1523. $info['origin_addr'] ="";
  1524. if($bidinfos['origin_place']!=''){
  1525. $code = explode(",",$bidinfos['origin_place']);
  1526. $temp=[];
  1527. $temp['provice_code']=isset($code[0])?$code[0]:"";
  1528. $temp['city_code']=isset($code[1])?$code[1]:"";
  1529. $temp['area_code']=isset($code[2])?$code[2]:"";
  1530. $addr= GetAddr(json_encode($temp));
  1531. $info['origin_addr'] = $addr;
  1532. }
  1533. $info['supplierNo'] =$bidinfos['supplierNo'];
  1534. $supplier = Db::name("supplier")->where(["code"=>$info['supplierNo']])->find();
  1535. $info['supplier_name'] = isset($supplier['name'])?$supplier['name']:"";
  1536. $info['pay_way'] =$bidinfos['pay_way'];
  1537. $info['tax'] =$bidinfos['tax'];
  1538. $info['send_way'] =$bidinfos['send_way'];
  1539. $info['metal_id'] =$bidinfos['metal_id'];
  1540. $info['is_gold_price'] =$bidinfos['is_gold_price'];
  1541. $info['config'] =$bidinfos['config'];
  1542. $info['other_config'] =$bidinfos['other_config'];
  1543. $info['weight'] =$bidinfos['weight'];
  1544. $info['good_weight'] =$bidinfos['good_weight'];
  1545. $info['is_diff'] =$bidinfos['is_diff'];
  1546. $info['demo_fee'] =$bidinfos['demo_fee'];
  1547. $info['delivery_fee'] =$bidinfos['delivery_fee'];
  1548. $info['open_fee'] =$bidinfos['open_fee'];
  1549. $info['pakge_fee'] =$bidinfos['pakge_fee'];
  1550. $info['nake_fee'] =$bidinfos['nake_fee'];
  1551. $info['mark_fee'] =$bidinfos['mark_fee'];
  1552. $info['cert_fee'] =$bidinfos['cert_fee'];
  1553. $info['cost_fee'] =$bidinfos['cost_fee'];
  1554. $info['total_fee'] =$bidinfos['total_fee'];
  1555. $info['supply_area'] =$bidinfos['supply_area'];
  1556. $info['remark'] =$bidinfos['remark'];
  1557. $info['is_addrs'] =$consultinfos['is_addrs'];
  1558. $info['is_custom'] =$consultinfos['is_custom'];
  1559. $info['metal_name']=isset($bidinfos['metal_id'])&& $bidinfos['metal_id']!=0?$this->noble[$bidinfos['metal_id']]:"";
  1560. // $info['sale_price'] =round($bidinfos['sale_price'],2);//议价前价格
  1561. $info['specinfo'] = isset($bidinfos['specinfo'])&&$bidinfos['specinfo']!=""?json_decode($bidinfos['specinfo'],true):[];
  1562. if($info['status']==7){
  1563. $info['lower_price'] =round($lower_price,2);
  1564. }
  1565. //获取议价原因
  1566. if ($info['result_info_id'] != 0) {
  1567. $info['result_info'] = Db::name('result_info')->where(['result_code' => $info['result_info_id'], 'type' => 7, 'status' => 1, 'is_del' => 0])->value('result');
  1568. } else {
  1569. $info['result_info'] = '';
  1570. }
  1571. return app_show(0,"获取成功",$info);
  1572. }
  1573. public function bidlist(){
  1574. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) :"1";
  1575. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) :"10";
  1576. $where=[['is_del',"=",0]];
  1577. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1578. if ($zxNo !== "") {
  1579. $where[] = ['zxNo','=',$zxNo];
  1580. }
  1581. $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
  1582. if ($infoNo !== "") {
  1583. $where[] = ['infoNo','=',$infoNo];
  1584. }
  1585. $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] !== "" ? trim($this->post['bidNo']) : "";
  1586. if ($bidNo !== "") {
  1587. $where[] = ['bidNo','=',$bidNo];
  1588. }
  1589. $pgNo = isset($this->post['pgNo']) && $this->post['pgNo'] !== "" ? trim($this->post['pgNo']) : "";
  1590. if ($pgNo !== "") {
  1591. $bidinfo = Db::name("consult_info")->where([["pgNo","=",$pgNo],["is_del","=",0]])->column("infoNo");
  1592. $where[] = ['infoNo','in',$bidinfo];
  1593. }
  1594. $bargain_status = isset($this->post['bargain_status']) && $this->post['bargain_status'] !== "" ? intval($this->post['bargain_status']) : "";
  1595. if ($bargain_status !== "") {
  1596. $bidinfo = Db::name("consult_info")->where([["bargain_status","=",$bargain_status],["is_del","=",0]])->column("infoNo");
  1597. $where[] = ['infoNo','in',$bidinfo];
  1598. }
  1599. $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
  1600. if ($projectNo !== "") {
  1601. $zxlist = Db::name("consult_order")->where(["projectNo"=>$projectNo,"is_del"=>0,"is_project"=>1])->column
  1602. ("zxNo");
  1603. $where[] = ['zxNo','in',$zxlist];
  1604. }
  1605. $is_own = isset($this->post['is_own']) ? intval($this->post['is_own']) : "0";
  1606. if($is_own==1){
  1607. $token = isset($this->post['token']) ? trim($this->post['token']) : "";
  1608. if($token==""){
  1609. return error_show(101,'token不能为空');
  1610. }
  1611. $apply_id =GetUserInfo($token);
  1612. if(empty($apply_id)||$apply_id['code']!=0){
  1613. return error_show(1002,"申请人数据不存在");
  1614. }
  1615. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  1616. $where[]=['createrid',"=",$rm];
  1617. }
  1618. $count = Db::name('consult_bids')->where($where)->count();
  1619. $total = ceil($count / $size);
  1620. $page = $page >= $total ? $total : $page;
  1621. $list =Db::name('consult_bids')->where($where)->page($page,$size)->select()->toArray();
  1622. $data=[];
  1623. foreach ($list as $value){
  1624. $catinfo = Db::name("cat")->where(["id"=>$value['cat_id']])->find();
  1625. $value['can']= isset($value['cat_id']) && $value['cat_id'] !=0 ? made($value['cat_id']):[];
  1626. $unit =Db::name("unit")->where(["id"=>$value['unit_id']])->find();
  1627. $value['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1628. $supplier = Db::name("supplier")->where(["code"=>$value['supplierNo']])->find();
  1629. $value['supplierName'] = isset($supplier['name'])?$supplier['name']:"";
  1630. if($value['brand_id']!=0){
  1631. $brand=Db::name("brand")->where(["id"=>$value['brand_id']])->find();
  1632. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1633. }else{
  1634. $value["brand_name"]="";
  1635. $value["brand_id"]="";
  1636. }
  1637. $bidinfo = Db::name("consult_info")->where(["infoNo"=>$value["infoNo"]])->find();
  1638. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1639. $god=[
  1640. "metal_id"=>$value['metal_id'],
  1641. "weight"=>$value["good_weight"],
  1642. "demo_fee"=>$value["demo_fee"],
  1643. "delivery_fee"=>$value["delivery_fee"],
  1644. "open_fee"=>$value["open_fee"],
  1645. "packing_fee"=>$value["pakge_fee"],
  1646. "mark_fee"=>$value["mark_fee"],
  1647. "nake_fee"=>$value["nake_fee"],
  1648. "cert_fee"=>$value["cert_fee"],
  1649. "cost_fee"=>$value['status']>=5? $value["sale_cost_fee"]: $value["cost_fee"],
  1650. "num"=>$bidinfo["num"],
  1651. ];
  1652. if($value['is_gold_price']==1){
  1653. $price = GoldPrice($god, $budget/100);
  1654. $value['sale_price'] = round($price,2);
  1655. }
  1656. $value['cost_fee'] =$value['origin_cost_fee'];
  1657. $value['specinfo'] = json_decode($value['specinfo'],true);
  1658. $value['metal_name']=isset($value['metal_id'])&& $value['metal_id']!=0?$this->noble[$value['metal_id']]:"";
  1659. $value['bargain_status']=$bidinfo['bargain_status'];
  1660. //reject驳回原因,status==5表示驳回
  1661. $value['reject']=[];
  1662. if ($value['status'] >=5) {
  1663. $value['reject'] = Db::name('bargain_order')
  1664. ->field('id,remark,status')
  1665. ->where(['infoNo' => $infoNo, 'bidsNo' => $value['bidNo']])
  1666. ->whereIn('status', [3,8,11])->order("id desc")
  1667. ->find();
  1668. }
  1669. //产地
  1670. if($value['origin_place']!=''){
  1671. $code = explode(",",$value['origin_place']);
  1672. $temp=[];
  1673. $temp['provice_code']=isset($code[0])?$code[0]:"";
  1674. $temp['city_code']=isset($code[1])?$code[1]:"";
  1675. $temp['area_code']=isset($code[2])?$code[2]:"";
  1676. $addr= GetAddr(json_encode($temp));
  1677. $value['origin_addr'] = $addr;
  1678. }
  1679. $data[] = $value;
  1680. }
  1681. return app_show(0,"获取成功",['count'=>$count,'list'=>$data]);
  1682. }
  1683. public function feedlist(){
  1684. $where=[['is_del',"=",0]];
  1685. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1686. if ($zxNo !== "") {
  1687. $where[] = ['zxNo','=',$zxNo];
  1688. }
  1689. $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
  1690. if ($infoNo !== "") {
  1691. $where[] = ['infoNo','=',$infoNo];
  1692. }
  1693. $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] !== "" ? trim($this->post['bidNo']) : "";
  1694. if ($bidNo !== "") {
  1695. $where[] = ['bidNo','=',$bidNo];
  1696. }
  1697. $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
  1698. if ($projectNo !== "") {
  1699. $zxlist = Db::name("consult_order")->where(["projectNo"=>$projectNo,"is_del"=>0,"is_project"=>1])->column
  1700. ("zxNo");
  1701. $where[] = ['zxNo','in',$zxlist];
  1702. }
  1703. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  1704. if($token==''){
  1705. return error_show(102,"参数token不能为空");
  1706. }
  1707. $is_own = isset($this->post['is_own']) ? intval($this->post['is_own']) : "0";
  1708. if($is_own==1){
  1709. $token = isset($this->post['token']) ? trim($this->post['token']) : "";
  1710. if($token==""){
  1711. return error_show(101,'token不能为空');
  1712. }
  1713. $apply_id =GetUserInfo($token);
  1714. if(empty($apply_id)||$apply_id['code']!=0){
  1715. return error_show(1002,"申请人数据不存在");
  1716. }
  1717. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  1718. $where[]=['createrid',"=",$rm];
  1719. }
  1720. $list =Db::name('consult_bids')->where($where)->select();
  1721. $data=[];
  1722. foreach ($list as $value){
  1723. $catinfo = Db::name("cat")->where(["id"=>$value['cat_id']])->find();
  1724. $value['can']= isset($value['cat_id']) && $value['cat_id'] !=0 ? made($value['cat_id']):[];
  1725. $unit =Db::name("unit")->where(["id"=>$value['unit_id']])->find();
  1726. $value['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1727. $supplier = Db::name("supplier")->where(["code"=>$value['supplierNo']])->find();
  1728. $value['supplierName'] = isset($supplier['name'])?$supplier['name']:"";
  1729. if($value['brand_id']!=0){
  1730. $brand=Db::name("brand")->where(["id"=>$value['brand_id']])->find();
  1731. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1732. }else{
  1733. $value["brand_name"]="";
  1734. $value["brand_id"]="";
  1735. }
  1736. $bidinfo = Db::name("consult_info")->where(["infoNo"=>$value["infoNo"]])->find();
  1737. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1738. $god=[
  1739. "metal_id"=>$value['metal_id'],
  1740. "weight"=>$value["good_weight"],
  1741. "demo_fee"=>$value["demo_fee"],
  1742. "delivery_fee"=>$value["delivery_fee"],
  1743. "open_fee"=>$value["open_fee"],
  1744. "packing_fee"=>$value["pakge_fee"],
  1745. "mark_fee"=>$value["mark_fee"],
  1746. "nake_fee"=>$value["nake_fee"],
  1747. "cert_fee"=>$value["cert_fee"],
  1748. "cost_fee"=>$value["cost_fee"],
  1749. "num"=>$bidinfo["num"],
  1750. ];
  1751. if ($value['is_gold_price'] == 1 ) {
  1752. $gold = Db::name("gold_price1")->where(["type"=>$value['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1753. ->find();
  1754. //$total_fee(成本合计初始价格) =打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价0+运费;
  1755. //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
  1756. $saleprice = ($value['demo_fee']/$bidinfo['num']+$value['delivery_fee']+$value["open_fee"]/$bidinfo['num'] +$value["good_weight"] *$gold["price"] +
  1757. $value["cost_fee"] * $value["good_weight"] + $value["pakge_fee"]+ $value["mark_fee"] +$value["cert_fee"] +$value["nake_fee"]) / (1 - $budget);
  1758. // //销售工艺费=((开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100)-(打样费/购买数量 + 开模费/购买数量 +包装费+加标费+证书费+产品裸价0+运费) )/商品重量-最新金价
  1759. // $sale_cost_fee = (($open_fee / $zxinfo['num'] + $weight * $gold["price"] + $cost_fee * $weight + $pakge_fee + $mark_fee + $cert_fee + $nake_fee) / (1 - $budget) - ($demo_fee / $zxinfo['num'] + $open_fee / $zxinfo['num'] + $pakge_fee + $mark_fee + $cert_fee + $nake_fee + $delivery_fee)) / $weight - $gold["price"];
  1760. }else{
  1761. if($value["nake_fee"]){
  1762. $saleprice = ($value['demo_fee']/$bidinfo['num']+$value['delivery_fee']+$value["open_fee"]/$bidinfo['num']+$value["cost_fee"] * $value["good_weight"]+ $value["pakge_fee"]+ $value["mark_fee"] +$value["cert_fee"] +$value["nake_fee"])/ (1 - $budget);
  1763. }else{
  1764. $saleprice = ($value['demo_fee']/$bidinfo['num']+$value['delivery_fee']+$value["open_fee"]/$bidinfo['num']+$value["cost_fee"] * $value["good_weight"]+ $value["pakge_fee"]+ $value["mark_fee"] +$value["cert_fee"] +$value["nake_fee"]) /
  1765. (1 - $budget);
  1766. }
  1767. }
  1768. $value['metal_name']=isset($value['metal_id'])&& $value['metal_id']!=0?$this->noble[$value['metal_id']]:"";
  1769. $value['specinfo'] = json_decode($value['specinfo'],true);
  1770. $value['bargain_status']=$bidinfo['bargain_status'];
  1771. $data[]=$value;
  1772. }
  1773. return app_show(0,"获取成功",$data);
  1774. }
  1775. public function bragain_list(){
  1776. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) :"1";
  1777. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) :"10";
  1778. $where=[['is_del',"=",0]];
  1779. $bidsNo = isset($this->post['bidsNo'])&&$this->post['bidsNo']!=""?trim($this->post['bidsNo']):"";
  1780. if($bidsNo!=""){
  1781. $where[]=["bidsNo","=",$bidsNo];
  1782. }
  1783. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1784. if ($zxNo !== "") {
  1785. $where[] = ['zxNo','=',$zxNo];
  1786. }
  1787. $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
  1788. if ($infoNo !== "") {
  1789. $where[] = ['infoNo','=',$infoNo];
  1790. }
  1791. $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
  1792. if ($projectNo !== "") {
  1793. $zxlist = Db::name("consult_order")->where(["projectNo"=>$projectNo,"is_del"=>0,"is_project"=>1])->column
  1794. ("zxNo");
  1795. $where[] = ['zxNo','in',$zxlist];
  1796. }
  1797. $pgNo = isset($this->post['pgNo']) && $this->post['pgNo'] !== "" ? trim($this->post['pgNo']) : "";
  1798. if ($pgNo !== "") {
  1799. $bidinfo = Db::name("consult_info")->where([["pgNo","=",$pgNo],["is_del","=",0]])->column("infoNo");
  1800. $where[] = ['infoNo','in',$bidinfo];
  1801. }
  1802. $role=$this->checkRole();
  1803. if(!empty($role['write'])){
  1804. $where[]=["createrid","in",$role['write']];
  1805. }
  1806. $count=Db::name("bargain_order")->where($where)->count();
  1807. $total = ceil($count / $size);
  1808. $page = $page >= $total ? $total : $page;
  1809. $list =Db::name('bargain_order')->where($where)->page($page,$size)->order('addtime','desc')->select();
  1810. $data=[];
  1811. foreach ($list as $value){
  1812. $bidinfos = Db::name("consult_bids")->where([["bidNo","=",$value['bidsNo']],["is_del","=",0]])->find();
  1813. $value['spuCode'] = isset($bidinfos['spuCode'])?$bidinfos['spuCode']:"";
  1814. $value['good_name'] = isset($bidinfos['good_name'])?$bidinfos['good_name']:"";
  1815. $value['good_img'] = isset($bidinfos['good_img'])?$bidinfos['good_img']:"";
  1816. $value['brand_id'] = isset($bidinfos['brand_id'])?$bidinfos['brand_id']:"";
  1817. if($bidinfos['brand_id']!=0){
  1818. $value['brand_id'] = $bidinfos['brand_id'];
  1819. $brand=Db::name("brand")->where(["id"=>$bidinfos['brand_id']])->find();
  1820. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1821. }else{
  1822. $value["brand_name"]="";
  1823. $value["brand_id"]="";
  1824. }
  1825. $catinfo = Db::name("cat")->where(["id"=>$bidinfos['cat_id']])->find();
  1826. $value['can']= isset($bidinfos['cat_id']) && $bidinfos['cat_id'] !=0 ? made($bidinfos['cat_id']):[];
  1827. $unit =Db::name("unit")->where(["id"=>$bidinfos['unit_id']])->find();
  1828. $value['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1829. $bidinfoe = Db::name("consult_info")->where(["infoNo"=>$value["infoNo"]])->find();
  1830. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1831. $value['budget'] =$budget;
  1832. $god=[
  1833. "metal_id"=>$bidinfos['metal_id'],
  1834. "weight"=>$bidinfos["good_weight"],
  1835. "demo_fee"=>$bidinfos["demo_fee"],
  1836. "delivery_fee"=>$bidinfos["delivery_fee"],
  1837. "open_fee"=>$bidinfos["open_fee"],
  1838. "packing_fee"=>$bidinfos["pakge_fee"],
  1839. "mark_fee"=>$bidinfos["mark_fee"],
  1840. "nake_fee"=>$bidinfos["nake_fee"],
  1841. "cert_fee"=>$bidinfos["cert_fee"],
  1842. "cost_fee"=>$bidinfos["cost_fee"],
  1843. "num"=>$bidinfoe["num"],
  1844. ];
  1845. // if($bidinfos['is_gold_price']==1){
  1846. // $price = GoldPrice($god, $budget/100);
  1847. // }else{
  1848. // $price = GoodPrice($god, $budget/100);
  1849. // }
  1850. $value['metal_name']=isset($bidinfos['metal_id'])&& $bidinfos['metal_id']!=0?$this->noble[$bidinfos['metal_id']]:"";
  1851. $value['sale_price'] =round($bidinfos['origin_price'],2);
  1852. $value['cost_before_price'] =round($bidinfos['origin_cost_fee'],2);
  1853. $value['specinfo'] = isset($bidinfos['specinfo'])&&$bidinfos['specinfo']!=""?json_decode($bidinfos['specinfo'],true):[];
  1854. $data[]=$value;
  1855. }
  1856. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  1857. }
  1858. public function crontablist(){
  1859. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) :"1";
  1860. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) :"10";
  1861. $where=[['a.is_del',"=",0],['b.is_del',"=",0]];
  1862. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1863. if ($zxNo !== "") {
  1864. $where[] = ['a.zxNo','=',$zxNo];
  1865. }
  1866. $salesman = isset($this->post['salesman']) && $this->post['salesman'] !== "" ? trim($this->post['salesman']) : "";
  1867. if ($salesman !== "") {
  1868. //$where["salesman"] =Db::Raw("like '%$salesman%'");
  1869. $where[]= ["b.salesman",'like',"%$salesman%"];
  1870. }
  1871. $cpName = isset($this->post['cpName']) && $this->post['cpName'] !== "" ? trim($this->post['cpName']) : "";
  1872. if ($cpName !== "") {
  1873. //$where["cpName"]= Db::Raw("like '%$cpName%'");
  1874. $where[]= ["a.good_Name",'like',"%$cpName%"];
  1875. }
  1876. $khNo = isset($this->post['khNo']) && $this->post['khNo'] !== "" ? trim($this->post['khNo']) : "";
  1877. if ($khNo !== "") {
  1878. // $where['khNo'] = $khNo;
  1879. $where[]= ["b.khNo",'like',"%$khNo%"];
  1880. }
  1881. $start= isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start']:"";
  1882. if ($start !="") {
  1883. //$where = ["zxtime"=>Db::raw(">= '{$start}'")];
  1884. $where[]= ["a.addtime",'>=',$start];
  1885. }
  1886. $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] :"";
  1887. if($end !=""){
  1888. $where[]= ["a.addtime",'<=',$end];
  1889. }
  1890. $status = isset($this->post['status']) && $this->post['status'] !== "" ? trim($this->post['status']) : "";
  1891. if ($status !== "") {
  1892. $where[]= ["a.status",'=',$status];
  1893. }
  1894. $count = Db::name('consult_info')->alias("a")->leftJoin("consult_order b","a.zxNo=b.zxNo")->where($where)
  1895. ->count();
  1896. $total = ceil($count / $size);
  1897. $page = $page >= $total ? $total : $page;
  1898. $list =Db::name('consult_info')->alias("a")->leftJoin("consult_order b","a.zxNo=b.zxNo")->where($where)->page($page,$size)
  1899. ->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();
  1900. $data=[];
  1901. foreach ($list as $value){
  1902. $value['can']= isset($value['cat_id']) && $value['cat_id'] !=0 ? made($value['cat_id']):[];
  1903. $brand = Db::name("brand")->where(['id'=>$value['brand_id']])->find();
  1904. $value['brand_name']= isset($brand['brand_name']) && $brand['brand_name']!='' ? $brand['brand_name']:"";
  1905. $value['khname']="";
  1906. $value['specinfo']=isset($value['specinfo'])&&$value['specinfo']!=""? json_decode($value['specinfo'],
  1907. true):[];
  1908. if($value['khNo']!==""){
  1909. $kh=Db::name("customer_info")->where(['companyNo'=>$value['khNo']])->find();
  1910. $value['khname']= isset($kh['companyName'])?$kh['companyName']:"";
  1911. }
  1912. $value['metal_name']=isset($value['metal_id'])&& $value['metal_id']!=0?$this->noble[$value['metal_id']]:"";
  1913. $data[]=$value;
  1914. }
  1915. return app_show(0,"获取成功",['count'=>$count,'list'=>$data]);
  1916. }
  1917. }