Consult.php 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019
  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"=>1,
  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($zx['is_project']==1 && $zx['projectNo']!="" && $zxinfo['pgNo']!=""){
  1051. $projectinfo =Db::name("project_info")->where(["pgNo"=>$zxinfo["pgNo"],"projectNo"=>$zx['projectNo'],"is_del"=>0])->find();
  1052. if($projectinfo==false){
  1053. Db::rollback();
  1054. return error_show(1006,"未找到项目信息");
  1055. }
  1056. $feed = Db::name("project_feedback")->where(["pgNo"=>$zxinfo["pgNo"],"projectNo"=>$zx['projectNo'],"spuCode"=>$bidinfo['spuCode'],"is_del"=>0])->find();
  1057. if($feed==false){
  1058. Db::rollback();
  1059. return error_show(1006,"未找到项目反馈信息");
  1060. }
  1061. $feed['good_name']=$pname;
  1062. $feed['good_type']=$projectinfo['good_type'];
  1063. $feed['cat_id']=$cat_id;
  1064. $feed['sale_price']=$saleprice;
  1065. $feed['origin_price']=$total_fee;
  1066. $feed['updatetime']=date("Y-m-d H:i:s");
  1067. $temp['updatetime']=date("Y-m-d H:i:s");
  1068. $nu = Db::name("project_feedback")->save($feed);
  1069. if($nu==false){
  1070. Db::rollback();
  1071. return error_show(1006,"项目反馈失败");
  1072. }else{
  1073. $old_projectinfo_status = $projectinfo['status'];
  1074. $projectinfo['status']=2;
  1075. $projectinfo['updatetime']=date("Y-m-d H:i:s");
  1076. $up = Db::name("project_info")->save($projectinfo);
  1077. if($up){
  1078. //修改状态,添加待办,只记录动作
  1079. ActionLog::logAdd($this->post['token'], [
  1080. "order_code" => $projectinfo['pgNo'],//编码
  1081. "status" => $old_projectinfo_status,//这里的status是之前的值
  1082. "action_remark" => '',//备注
  1083. "action_type" => "status"//新建create,编辑edit,更改状态status
  1084. ], "PRO", 2, $projectinfo);
  1085. $count = Db::name("project_info")->where(["projectNo"=>$projectinfo['projectNo'],"status"=>1])->count();
  1086. if ($count == 0) {
  1087. //先查询是否存在status==1的项目,有的话再更新,否则跳过
  1088. $project_id = Db::name("project")->where(["projectNo" => $projectinfo['projectNo'], "status" => 1])->value('id', 0);
  1089. if ($project_id) {
  1090. $proc = Db::name("project")->where(["id" => $project_id])->update(["status" => 2, "updatetime" => date("Y-m-d H:i:s")]);
  1091. if ($proc == false) {
  1092. Db::rollback();
  1093. return error_show(1006, "项目反馈失败");
  1094. }else{
  1095. //修改状态,添加待办
  1096. ActionLog::logAdd($this->post['token'], [
  1097. "order_code" => $projectinfo['projectNo'],//项目编码
  1098. "status" => 1,//这里的status是之前的值
  1099. "action_remark" => '',//备注
  1100. "action_type" => "status"//新建create,编辑edit,更改状态status
  1101. ], "PRO", 2, $this->post);
  1102. ProcessOrder::AddProcess($this->post['token'], [
  1103. "order_type" => 'PRO',
  1104. "order_code" => $projectinfo['projectNo'],
  1105. "order_id" => $project_id,
  1106. "order_status" => 2
  1107. ]);
  1108. }
  1109. }
  1110. }
  1111. }
  1112. }
  1113. }
  1114. Db::commit();
  1115. return app_show(0,"编辑成功");
  1116. }else{
  1117. Db::rollback();
  1118. return error_show(1004,"编辑失败");
  1119. }
  1120. }catch (\Exception $e){
  1121. Db::rollback();
  1122. return error_show(1004,$e->getMessage());
  1123. }
  1124. }
  1125. public function bargain_add(){
  1126. $bidNo = isset($this->post['bidNo'])&& $this->post['bidNo']!=""?trim($this->post['bidNo']):"";
  1127. if($bidNo===""){
  1128. return error_show(1004,"参数bidNo不能为空");
  1129. }
  1130. $info =Db::name("consult_bids")->where(['bidNo'=>$bidNo,"is_del"=>0])->find();
  1131. if($info==false){
  1132. return error_show(1004,"未找到商品数据");
  1133. }
  1134. $consult =Db::name("consult_info")->where(['infoNo'=>$info['infoNo'],"is_del"=>0])->find();
  1135. if($consult==false){
  1136. return error_show(1004,"未找到咨询数据");
  1137. }
  1138. $bargain_price = isset($this->post['bargain_price'])&& $this->post['bargain_price']!=""?floatval($this->post['bargain_price']):"";
  1139. if($bargain_price===""){
  1140. return error_show(1004,"参数bargain_price不能为空");
  1141. }
  1142. $cost_price = isset($this->post['cost_price'])&& $this->post['cost_price']!=""?floatval($this->post['cost_price']):"";
  1143. if($info['is_gold_price']==1){
  1144. if($cost_price==""){
  1145. return error_show(1004,"参数cost_price不能为空");
  1146. }
  1147. $catinfo = Db::name("cat")->where(["id"=>$info['cat_id']])->find();
  1148. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  1149. $gold = Db::name("gold_price1")->where(["type"=>$info['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1150. ->find();
  1151. $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);
  1152. }
  1153. $bargain_reason = isset($this->post['bargain_reason'])&& $this->post['bargain_reason']!=""?trim($this->post['bargain_reason']):"";
  1154. // if($bargain_reason===""){
  1155. // return error_show(1004,"参数bargain_reason不能为空");
  1156. // }
  1157. $infos =Db::name("consult_info")->where(['infoNo'=>$info['infoNo'],"is_del"=>0])->find();
  1158. if($infos==false){
  1159. return error_show(1004,"未找到商品数据");
  1160. }
  1161. if($infos['status']!=2&&$infos['status']!=3&&$infos['status']!=7){
  1162. return error_show(1004,"咨询单招标未结束或已确认商品");
  1163. }
  1164. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  1165. if($token==''){
  1166. return error_show(105,"参数token不能为空");
  1167. }
  1168. $user =GetUserInfo($token);
  1169. if(empty($user)||$user['code']!=0){
  1170. return error_show(1002,"用户数据不存在");
  1171. }
  1172. //新增两个字段
  1173. //议价备注
  1174. $bargain_remark = isset($this->post['bargain_remark']) && $this->post['bargain_remark'] != "" ? trim($this->post['bargain_remark']) : "";
  1175. //议价原因id
  1176. $result_info_id = isset($this->post['result_info_id']) && $this->post['result_info_id'] != "" ? $this->post['result_info_id'] : "";
  1177. if ($result_info_id != '') {
  1178. $temp = Db::name('result_info')->field('id')->where(['result_code' => $result_info_id, 'type' => 7, 'status' => 1, 'is_del' => 0])->find();//type 7议价原因
  1179. if (empty($temp)) return error_show(1004, "议价原因选择不正确");
  1180. }
  1181. $createrid= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  1182. $creater= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  1183. $bargainNo =makeNo("BA");
  1184. Db::startTrans();//::todo 金价 毛利计算
  1185. try{
  1186. $data=[
  1187. "bidsNo"=>$bidNo,
  1188. "infoNo"=>$info['infoNo'],
  1189. "zxNo"=>$info['zxNo'],
  1190. "bargainNo"=>$bargainNo,
  1191. "bargain_type"=>1,
  1192. "bargain_reason"=>$bargain_reason,
  1193. "sale_price"=>$info['sale_price'],
  1194. "cost_before_price"=>$info['sale_cost_fee'],
  1195. "cost_after_price"=>$cost_price,
  1196. "before_rate"=>round(($info['sale_price']-$info['total_fee'])/$info['sale_price'],2),
  1197. "after_rate"=>round(($bargain_price-$info['total_fee'])/$bargain_price,2),
  1198. "after_price"=>$bargain_price,
  1199. "exam_info"=>"",
  1200. "status"=>0,
  1201. "is_del"=>0,
  1202. "creater"=>$creater,
  1203. "createrid"=>$createrid,
  1204. "addtime"=>date("Y-m-d H:i:s"),
  1205. "updatetime"=>date("Y-m-d H:i:s"),
  1206. 'bargain_remark'=>$bargain_remark,
  1207. 'result_info_id'=>$result_info_id,
  1208. ];
  1209. $int = Db::name("bargain_order")->insert($data);
  1210. if($int){
  1211. $info['status']=3;
  1212. $info['updatetime']=date("Y-m-d H:i:s");
  1213. $up =Db::name("consult_bids")->save($info);
  1214. if($up){
  1215. $old_infos_status = $infos['status'];
  1216. $infos['status']=3;
  1217. $infos['updatetime']=date("Y-m-d H:i:s");
  1218. $ups =Db::name("consult_info")->save($infos);
  1219. if($ups){
  1220. //修改状态,添加待办
  1221. ActionLog::logAdd($this->post['token'], [
  1222. "order_code" => $infos['infoNo'],//咨询单详情编号
  1223. "status" => $old_infos_status,//这里的status是之前的值
  1224. "action_remark" => '',//备注
  1225. "action_type" => "status"//新建create,编辑edit,更改状态status
  1226. ], "ZXD", $infos['status'], $infos);
  1227. ProcessOrder::AddProcess($this->post['token'], [
  1228. "order_type" => 'ZXD',
  1229. "order_code" => $infos['infoNo'],//咨询单详情编号
  1230. "order_id" => $infos['id'],
  1231. "order_status" => $infos['status']
  1232. ]);
  1233. Db::commit();
  1234. return app_show(0,"议价单生成成功",["bargainNo"=>$bargainNo]);
  1235. }
  1236. }
  1237. }
  1238. Db::rollback();
  1239. return error_show(1004,"议价单新建失败");
  1240. }catch (\Exception $e){
  1241. Db::rollback();
  1242. return error_show(1004,$e->getMessage());
  1243. }
  1244. }
  1245. //选择商品
  1246. public function bids_check(){
  1247. $bidNo = isset($this->post['bidNo'])&& $this->post['bidNo']!=""?trim($this->post['bidNo']):"";
  1248. if($bidNo===""){
  1249. return error_show(1004,"参数bidNo不能为空");
  1250. }
  1251. $info =Db::name("consult_bids")->where(['bidNo'=>$bidNo,"is_del"=>0])->find();
  1252. if($info==false){
  1253. return error_show(1004,"未找到商品数据");
  1254. }
  1255. $infos =Db::name("consult_info")->where(['infoNo'=>$info['infoNo'],"is_del"=>0])->find();
  1256. if($infos==false){
  1257. return error_show(1004,"未找到商品数据");
  1258. }
  1259. if($infos['status']!=2&&$infos['status']!=3&&$infos['status']!=7){
  1260. return error_show(1004,"咨询单招标未结束或已确认商品");
  1261. }
  1262. Db::startTrans();
  1263. try {
  1264. $info['status']=6;
  1265. $info['updatetime']=date("Y-m-d H:i:s");
  1266. $bids = Db::name("consult_bids")->save($info);
  1267. if($bids){
  1268. $old_infos_status = $infos['status'];
  1269. $infos['status']=4;
  1270. $infos['updatetime']=date("Y-m-d H:i:s");
  1271. $se = Db::name("consult_info")->save($infos);
  1272. if($se){
  1273. //修改状态,添加待办
  1274. ActionLog::logAdd($this->post['token'], [
  1275. "order_code" => $infos['infoNo'],//咨询单详情编号
  1276. "status" => $old_infos_status,//这里的status是之前的值
  1277. "action_remark" => '',//备注
  1278. "action_type" => "status"//新建create,编辑edit,更改状态status
  1279. ], "ZXD", $infos['status'], $infos);
  1280. ProcessOrder::AddProcess($this->post['token'], [
  1281. "order_type" => 'ZXD',
  1282. "order_code" => $infos['infoNo'],//咨询单详情编号
  1283. "order_id" => $infos['id'],
  1284. "order_status" => $infos['status']
  1285. ]);
  1286. Db::commit();
  1287. return app_show(0,"商品确定成功");
  1288. }
  1289. }
  1290. Db::rollback();
  1291. return error_show(1004,"商品确认失败");
  1292. }catch (\Exception $e){
  1293. Db::rollback();
  1294. return error_show(1004,$e->getMessage());
  1295. }
  1296. }
  1297. //议价审核
  1298. /**
  1299. * status:
  1300. * 0待审核 1业务主管审核通过 2 业务税率未通过 3 业务驳回 4 专员通过 5 专员驳回 6 财务通过 7 财务税率未通过 8财务驳回 9 boss通过 10 boss 税率越线通过 11 驳回
  1301. */
  1302. public function bargain_status(){
  1303. $bargainNo = isset($this->post['bargainNo'])&& $this->post['bargainNo']!=""?trim($this->post['bargainNo']):"";
  1304. if($bargainNo===""){
  1305. return error_show(1004,"参数bargainNo不能为空");
  1306. }
  1307. $info =Db::name("bargain_order")->where(['bargainNo'=>$bargainNo,"is_del"=>0])->find();
  1308. if($info==false){
  1309. return error_show(1004,"未找到议价数据");
  1310. }
  1311. $bids=Db::name("consult_bids")->where(["bidNo"=>$info["bidsNo"],"is_del"=>0])->find();
  1312. if($bids==false){
  1313. return error_show(1004,"未找到商品数据");
  1314. }
  1315. $coninfo=Db::name("consult_info")->where(["infoNo"=>$bids["infoNo"],"is_del"=>0])->find();
  1316. if($coninfo==false){
  1317. return error_show(1004,"未找到咨询单数据");
  1318. }
  1319. $status = isset($this->post['status'])&& $this->post['status']!=='' ? intval($this->post['status']):"";
  1320. if($status===''){
  1321. return error_show(1005,"参数status不能为空");
  1322. }
  1323. $catinfo = Db::name("cat")->where(["id"=>$bids['cat_id']])->find();
  1324. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']/100:0;
  1325. $rate = isset($catinfo['rate']) ? $catinfo['rate']/100:0; //业务主管利率
  1326. $money_rate = isset($catinfo['money_rate']) ? $catinfo['money_rate']/100:0;//财务主管利率
  1327. $lower_rate = isset($catinfo['lower_rate']) ? $catinfo['lower_rate']/100:0;//boss主管利率
  1328. if($bids['is_gold_price']==1){
  1329. $gold = Db::name("gold_price1")->where(["type"=>$bids['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1330. ->find();
  1331. // $saleprice = $open_fee/$zxinfo['num'] + $weight* $gold["price"] + $cost_fee/(1-$budget)* $weight+$pakge_fee+$mark_fee+$cert_fee+$nake_fee;
  1332. //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
  1333. $total_fe= $bids['demo_fee'] / $coninfo['num']+$bids['delivery_fee']+$bids['open_fee'] / $coninfo['num'] +
  1334. $bids['good_weight']*$gold["price"] +$bids['cost_fee']*$bids['good_weight'] + $bids['pakge_fee'] +$bids['mark_fee'] + $bids['cert_fee'] + $bids['nake_fee'];
  1335. $saleprice =$total_fe / (1 - $budget);
  1336. $rate_price = $total_fe / (1 - $rate);
  1337. $money_price =$total_fe / (1 - $money_rate);
  1338. $lower_price =$total_fe / (1 - $lower_rate);
  1339. }else{
  1340. $total_fe= $bids['demo_fee']/$coninfo['num']+$bids['delivery_fee']+$bids['open_fee'] /
  1341. $coninfo['num']+$bids['cost_fee']*$bids['good_weight']+$bids['pakge_fee'] +$bids['mark_fee']+ $bids['cert_fee'] + $bids['nake_fee'];
  1342. if($bids['nake_fee']!=0){
  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. $saleprice = $total_fe / (1 - $budget);
  1349. $rate_price =$total_fe/ (1 - $rate);
  1350. $money_price =$total_fe / (1 - $money_rate);
  1351. $lower_price = $total_fe/ (1 - $lower_rate);
  1352. }
  1353. }
  1354. $ra_status = $info['status'];
  1355. if($status==1){
  1356. if($info['status']==0){
  1357. if($info['after_price']<$rate_price){
  1358. $info['status']=2;
  1359. }else{
  1360. $info['status']=1;
  1361. }
  1362. }elseif($info['status']==2){
  1363. $info['status']=4;
  1364. }elseif($info['status']==4||$info['status']==5){
  1365. if($info['after_price']<$money_price){
  1366. $info['status']=7;
  1367. }else{
  1368. $info['status']=6;
  1369. }
  1370. }elseif($info['status']==7){
  1371. $info['lower_price'] =$lower_price;
  1372. if($info['after_price']<$lower_price){
  1373. $info['status']=10;
  1374. }else{
  1375. $info['status']=9;
  1376. }
  1377. }
  1378. }else{
  1379. if($info['status']==0){
  1380. $info['status']=3;
  1381. }elseif($info['status']==2){
  1382. $info['status']=4;
  1383. }elseif($info['status']==4||$info['status']==5){
  1384. $info['status']=8;
  1385. }elseif($info['status']==7){
  1386. $info['lower_price'] =$lower_price;
  1387. $info['status']=11;
  1388. }
  1389. }
  1390. $remark = isset($this->post['remark'])&& $this->post['remark']!=""?trim($this->post['remark']):"";
  1391. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  1392. if($token==''){
  1393. return error_show(105,"参数token不能为空");
  1394. }
  1395. $user =GetUserInfo($token);
  1396. if(empty($user)||$user['code']!=0){
  1397. return error_show(1002,"用户数据不存在");
  1398. }
  1399. $createrid= isset($user["data"]['id']) ? $user["data"]['id'] : "";
  1400. $creater= isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  1401. Db::startTrans();
  1402. try{
  1403. $examinfo = isset($info['exam_info'])&&$info['exam_info']!="" ? json_decode($info['exam_info'],true):[];
  1404. $examinfo[]=["status"=>$status,"info_status"=>$ra_status,"remark"=>$remark,"createrid"=>$createrid,
  1405. "creater"=>$creater];
  1406. // $info['status'] =$status;
  1407. $info['remark'] =$remark;
  1408. $info['exam_info']=json_encode($examinfo) ;
  1409. $info['updatetime'] =date("Y-m-d H:i:s");
  1410. $up =Db::name("bargain_order")->save($info);
  1411. if($up){
  1412. if($info['status']==1||$info['status']==3||$info['status']==8||$info['status']==6||$info['status']==9||$info['status']==10||$info['status']==11){
  1413. $bids['status']=5;
  1414. if($info['status']==1||$info['status']==6||$info['status']==9||$info['status']==10){
  1415. $bids['sale_price']=$info['after_price'];
  1416. if($bids['is_gold_price']==1){
  1417. // $gold = Db::name("gold_price1")->where(["type"=>$bids['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1418. // ->find();
  1419. // $bids['sale_price']= ($bids['open_fee'] / $coninfo['num'] + $bids['weight'] * $gold["price"] + $info['cost_after_price'] *$bids['weight'] +
  1420. // $bids['pakge_fee'] + $bids['mark_fee'] +$bids['cert_fee'] +$bids['nake_fee']) /(1 - $budget);
  1421. $bids['sale_cost_fee'] = $info['cost_after_price'];
  1422. $bids['gold_price'] =isset($gold["price"])?$gold["price"]:0;
  1423. }
  1424. }
  1425. $bids['updatetime']=date("Y-m-d H:i:s");
  1426. $up =Db::name("consult_bids")->save($bids);
  1427. if($up==false){
  1428. Db::rollback();
  1429. return error_show(1004,"数据更新失败");
  1430. }
  1431. }
  1432. Db::commit();
  1433. return app_show(0,"更新成功");
  1434. }
  1435. }catch (\Exception $e){
  1436. Db::rollback();
  1437. return error_show(1004,$e->getMessage());
  1438. }
  1439. }
  1440. public function bargain_info(){
  1441. $bargainNo = isset($this->post['bargainNo'])&& $this->post['bargainNo']!=""?trim($this->post['bargainNo']):"";
  1442. if($bargainNo===""){
  1443. return error_show(1004,"参数bargainNo不能为空");
  1444. }
  1445. $info =Db::name("bargain_order")->where(['bargainNo'=>$bargainNo,"is_del"=>0])->find();
  1446. if($info==false){
  1447. return error_show(1004,"未找到议价数据");
  1448. }
  1449. $bidinfos = Db::name("consult_bids")->where([["bidNo","=",$info['bidsNo']],["is_del","=",0]])->find();
  1450. if($bidinfos==false){
  1451. return error_show(1004,"未找到商品数据");
  1452. }
  1453. $consultinfos = Db::name("consult_info")->where([["infoNo","=",$bidinfos['infoNo']],["is_del","=",0]])
  1454. ->find();
  1455. if($consultinfos==false){
  1456. return error_show(1004,"未找到咨询商品数据");
  1457. }
  1458. $info['spuCode'] = isset($bidinfos['spuCode'])?$bidinfos['spuCode']:"";
  1459. $info['good_name'] = isset($bidinfos['good_name'])?$bidinfos['good_name']:"";
  1460. $info['good_img'] = isset($bidinfos['good_img'])?$bidinfos['good_img']:"";
  1461. $info['brand_id'] = isset($bidinfos['brand_id'])?$bidinfos['brand_id']:"";
  1462. $info['good_num'] = isset($consultinfos['num'])?$consultinfos['num']:"";
  1463. $info['before_rate'] =round($info['before_rate']*100,2);
  1464. $info['sale_price'] =round($bidinfos['origin_price'],2);
  1465. $info['cost_before_price'] =round($bidinfos['origin_cost_fee'],2);
  1466. $info['after_rate'] = round($info['after_rate']*100,2);
  1467. $info['exam_info'] = isset($info['exam_info'])&&$info['exam_info']!=""?json_decode($info['exam_info'],true):"";
  1468. if($bidinfos['brand_id']!=0){
  1469. $info['brand_id'] = $bidinfos['brand_id'];
  1470. $brand=Db::name("brand")->where(["id"=>$bidinfos['brand_id']])->find();
  1471. $info["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1472. }else{
  1473. $info["brand_name"]="";
  1474. $info["brand_id"]="";
  1475. }
  1476. $catinfo = Db::name("cat")->where(["id"=>$bidinfos['cat_id']])->find();
  1477. $info['can']= isset($bidinfos['cat_id']) && $bidinfos['cat_id'] !=0 ? made($bidinfos['cat_id']):[];
  1478. $unit =Db::name("unit")->where(["id"=>$bidinfos['unit_id']])->find();
  1479. $info['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1480. $bidinfoe = Db::name("consult_info")->where(["infoNo"=>$info["infoNo"]])->find();
  1481. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1482. $lower_rate = isset($catinfo['lower_rate']) ? $catinfo['lower_rate']/100:0;//boss主管利率
  1483. $info['budget'] =$budget;
  1484. $god=[
  1485. "metal_id"=>$bidinfos['metal_id'],
  1486. "weight"=>$bidinfos["good_weight"],
  1487. "demo_fee"=>$bidinfos["demo_fee"],
  1488. "delivery_fee"=>$bidinfos["delivery_fee"],
  1489. "open_fee"=>$bidinfos["open_fee"],
  1490. "packing_fee"=>$bidinfos["pakge_fee"],
  1491. "mark_fee"=>$bidinfos["mark_fee"],
  1492. "nake_fee"=>$bidinfos["nake_fee"],
  1493. "cert_fee"=>$bidinfos["cert_fee"],
  1494. "cost_fee"=>$bidinfos["cost_fee"],
  1495. "num"=>$bidinfoe["num"],
  1496. ];
  1497. $info['gold_price']=0;
  1498. if($bidinfos['is_gold_price']==1 &&$bidinfos['metal_id']>0){
  1499. $gold = Db::name("gold_price1")->where(["type"=>$bidinfos["metal_id"],"is_del"=>0,"status"=>1])->order("addtime desc")
  1500. ->find();
  1501. $info['gold_price'] =$gold['price'];
  1502. $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);
  1503. }else{
  1504. if($bidinfos['nake_fee']!=0){
  1505. $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);
  1506. }else{
  1507. $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);
  1508. }
  1509. }
  1510. $info['cost_desc'] =$bidinfos['cost_desc'];
  1511. $info['work_day'] =$bidinfos['work_day'];
  1512. $info['delivery_day'] =$bidinfos['delivery_day'];
  1513. $info['expire_day'] =$bidinfos['expire_day'];
  1514. $info['origin_place'] =$bidinfos['origin_place'];
  1515. $info['origin_addr'] ="";
  1516. if($bidinfos['origin_place']!=''){
  1517. $code = explode(",",$bidinfos['origin_place']);
  1518. $temp=[];
  1519. $temp['provice_code']=isset($code[0])?$code[0]:"";
  1520. $temp['city_code']=isset($code[1])?$code[1]:"";
  1521. $temp['area_code']=isset($code[2])?$code[2]:"";
  1522. $addr= GetAddr(json_encode($temp));
  1523. $info['origin_addr'] = $addr;
  1524. }
  1525. $info['supplierNo'] =$bidinfos['supplierNo'];
  1526. $supplier = Db::name("supplier")->where(["code"=>$info['supplierNo']])->find();
  1527. $info['supplier_name'] = isset($supplier['name'])?$supplier['name']:"";
  1528. $info['pay_way'] =$bidinfos['pay_way'];
  1529. $info['tax'] =$bidinfos['tax'];
  1530. $info['send_way'] =$bidinfos['send_way'];
  1531. $info['metal_id'] =$bidinfos['metal_id'];
  1532. $info['is_gold_price'] =$bidinfos['is_gold_price'];
  1533. $info['config'] =$bidinfos['config'];
  1534. $info['other_config'] =$bidinfos['other_config'];
  1535. $info['weight'] =$bidinfos['weight'];
  1536. $info['good_weight'] =$bidinfos['good_weight'];
  1537. $info['is_diff'] =$bidinfos['is_diff'];
  1538. $info['demo_fee'] =$bidinfos['demo_fee'];
  1539. $info['delivery_fee'] =$bidinfos['delivery_fee'];
  1540. $info['open_fee'] =$bidinfos['open_fee'];
  1541. $info['pakge_fee'] =$bidinfos['pakge_fee'];
  1542. $info['nake_fee'] =$bidinfos['nake_fee'];
  1543. $info['mark_fee'] =$bidinfos['mark_fee'];
  1544. $info['cert_fee'] =$bidinfos['cert_fee'];
  1545. $info['cost_fee'] =$bidinfos['cost_fee'];
  1546. $info['total_fee'] =$bidinfos['total_fee'];
  1547. $info['supply_area'] =$bidinfos['supply_area'];
  1548. $info['remark'] =$bidinfos['remark'];
  1549. $info['is_addrs'] =$consultinfos['is_addrs'];
  1550. $info['is_custom'] =$consultinfos['is_custom'];
  1551. $info['metal_name']=isset($bidinfos['metal_id'])&& $bidinfos['metal_id']!=0?$this->noble[$bidinfos['metal_id']]:"";
  1552. // $info['sale_price'] =round($bidinfos['sale_price'],2);//议价前价格
  1553. $info['specinfo'] = isset($bidinfos['specinfo'])&&$bidinfos['specinfo']!=""?json_decode($bidinfos['specinfo'],true):[];
  1554. if($info['status']==7){
  1555. $info['lower_price'] =round($lower_price,2);
  1556. }
  1557. //获取议价原因
  1558. if ($info['result_info_id'] != 0) {
  1559. $info['result_info'] = Db::name('result_info')->where(['result_code' => $info['result_info_id'], 'type' => 7, 'status' => 1, 'is_del' => 0])->value('result');
  1560. } else {
  1561. $info['result_info'] = '';
  1562. }
  1563. return app_show(0,"获取成功",$info);
  1564. }
  1565. public function bidlist(){
  1566. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) :"1";
  1567. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) :"10";
  1568. $where=[['is_del',"=",0]];
  1569. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1570. if ($zxNo !== "") {
  1571. $where[] = ['zxNo','=',$zxNo];
  1572. }
  1573. $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
  1574. if ($infoNo !== "") {
  1575. $where[] = ['infoNo','=',$infoNo];
  1576. }
  1577. $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] !== "" ? trim($this->post['bidNo']) : "";
  1578. if ($bidNo !== "") {
  1579. $where[] = ['bidNo','=',$bidNo];
  1580. }
  1581. $pgNo = isset($this->post['pgNo']) && $this->post['pgNo'] !== "" ? trim($this->post['pgNo']) : "";
  1582. if ($pgNo !== "") {
  1583. $bidinfo = Db::name("consult_info")->where([["pgNo","=",$pgNo],["is_del","=",0]])->column("infoNo");
  1584. $where[] = ['infoNo','in',$bidinfo];
  1585. }
  1586. $bargain_status = isset($this->post['bargain_status']) && $this->post['bargain_status'] !== "" ? intval($this->post['bargain_status']) : "";
  1587. if ($bargain_status !== "") {
  1588. $bidinfo = Db::name("consult_info")->where([["bargain_status","=",$bargain_status],["is_del","=",0]])->column("infoNo");
  1589. $where[] = ['infoNo','in',$bidinfo];
  1590. }
  1591. $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
  1592. if ($projectNo !== "") {
  1593. $zxlist = Db::name("consult_order")->where(["projectNo"=>$projectNo,"is_del"=>0,"is_project"=>1])->column
  1594. ("zxNo");
  1595. $where[] = ['zxNo','in',$zxlist];
  1596. }
  1597. $is_own = isset($this->post['is_own']) ? intval($this->post['is_own']) : "0";
  1598. if($is_own==1){
  1599. $token = isset($this->post['token']) ? trim($this->post['token']) : "";
  1600. if($token==""){
  1601. return error_show(101,'token不能为空');
  1602. }
  1603. $apply_id =GetUserInfo($token);
  1604. if(empty($apply_id)||$apply_id['code']!=0){
  1605. return error_show(1002,"申请人数据不存在");
  1606. }
  1607. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  1608. $where[]=['createrid',"=",$rm];
  1609. }
  1610. $count = Db::name('consult_bids')->where($where)->count();
  1611. $total = ceil($count / $size);
  1612. $page = $page >= $total ? $total : $page;
  1613. $list =Db::name('consult_bids')->where($where)->page($page,$size)->select()->toArray();
  1614. $data=[];
  1615. foreach ($list as $value){
  1616. $catinfo = Db::name("cat")->where(["id"=>$value['cat_id']])->find();
  1617. $value['can']= isset($value['cat_id']) && $value['cat_id'] !=0 ? made($value['cat_id']):[];
  1618. $unit =Db::name("unit")->where(["id"=>$value['unit_id']])->find();
  1619. $value['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1620. $supplier = Db::name("supplier")->where(["code"=>$value['supplierNo']])->find();
  1621. $value['supplierName'] = isset($supplier['name'])?$supplier['name']:"";
  1622. if($value['brand_id']!=0){
  1623. $brand=Db::name("brand")->where(["id"=>$value['brand_id']])->find();
  1624. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1625. }else{
  1626. $value["brand_name"]="";
  1627. $value["brand_id"]="";
  1628. }
  1629. $bidinfo = Db::name("consult_info")->where(["infoNo"=>$value["infoNo"]])->find();
  1630. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1631. $god=[
  1632. "metal_id"=>$value['metal_id'],
  1633. "weight"=>$value["good_weight"],
  1634. "demo_fee"=>$value["demo_fee"],
  1635. "delivery_fee"=>$value["delivery_fee"],
  1636. "open_fee"=>$value["open_fee"],
  1637. "packing_fee"=>$value["pakge_fee"],
  1638. "mark_fee"=>$value["mark_fee"],
  1639. "nake_fee"=>$value["nake_fee"],
  1640. "cert_fee"=>$value["cert_fee"],
  1641. "cost_fee"=>$value['status']==5? $value["sale_cost_fee"]: $value["cost_fee"],
  1642. "num"=>$bidinfo["num"],
  1643. ];
  1644. if($value['is_gold_price']==1){
  1645. $price = GoldPrice($god, $budget/100);
  1646. $value['sale_price'] = round($price,2);
  1647. }
  1648. $value['cost_fee'] =$value['origin_cost_fee'];
  1649. $value['specinfo'] = json_decode($value['specinfo'],true);
  1650. $value['metal_name']=isset($value['metal_id'])&& $value['metal_id']!=0?$this->noble[$value['metal_id']]:"";
  1651. $value['bargain_status']=$bidinfo['bargain_status'];
  1652. //reject驳回原因,status==5表示驳回
  1653. $value['reject']=[];
  1654. if ($value['status'] == 5) {
  1655. $value['reject'] = Db::name('bargain_order')
  1656. ->field('id,remark,status')
  1657. ->where(['infoNo' => $infoNo, 'bidsNo' => $value['bidNo']])
  1658. ->whereIn('status', [5, 6])
  1659. ->find();
  1660. }
  1661. //产地
  1662. if($value['origin_place']!=''){
  1663. $code = explode(",",$value['origin_place']);
  1664. $temp=[];
  1665. $temp['provice_code']=isset($code[0])?$code[0]:"";
  1666. $temp['city_code']=isset($code[1])?$code[1]:"";
  1667. $temp['area_code']=isset($code[2])?$code[2]:"";
  1668. $addr= GetAddr(json_encode($temp));
  1669. $value['origin_addr'] = $addr;
  1670. }
  1671. $data[] = $value;
  1672. }
  1673. return app_show(0,"获取成功",['count'=>$count,'list'=>$data]);
  1674. }
  1675. public function feedlist(){
  1676. $where=[['is_del',"=",0]];
  1677. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1678. if ($zxNo !== "") {
  1679. $where[] = ['zxNo','=',$zxNo];
  1680. }
  1681. $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
  1682. if ($infoNo !== "") {
  1683. $where[] = ['infoNo','=',$infoNo];
  1684. }
  1685. $bidNo = isset($this->post['bidNo']) && $this->post['bidNo'] !== "" ? trim($this->post['bidNo']) : "";
  1686. if ($bidNo !== "") {
  1687. $where[] = ['bidNo','=',$bidNo];
  1688. }
  1689. $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
  1690. if ($projectNo !== "") {
  1691. $zxlist = Db::name("consult_order")->where(["projectNo"=>$projectNo,"is_del"=>0,"is_project"=>1])->column
  1692. ("zxNo");
  1693. $where[] = ['zxNo','in',$zxlist];
  1694. }
  1695. $token = isset($this->post['token'])&& $this->post['token']!='' ? trim($this->post['token']):"";
  1696. if($token==''){
  1697. return error_show(102,"参数token不能为空");
  1698. }
  1699. $is_own = isset($this->post['is_own']) ? intval($this->post['is_own']) : "0";
  1700. if($is_own==1){
  1701. $token = isset($this->post['token']) ? trim($this->post['token']) : "";
  1702. if($token==""){
  1703. return error_show(101,'token不能为空');
  1704. }
  1705. $apply_id =GetUserInfo($token);
  1706. if(empty($apply_id)||$apply_id['code']!=0){
  1707. return error_show(1002,"申请人数据不存在");
  1708. }
  1709. $rm= isset($apply_id["data"]['id']) ? $apply_id["data"]['id'] : "";
  1710. $where[]=['createrid',"=",$rm];
  1711. }
  1712. $list =Db::name('consult_bids')->where($where)->select();
  1713. $data=[];
  1714. foreach ($list as $value){
  1715. $catinfo = Db::name("cat")->where(["id"=>$value['cat_id']])->find();
  1716. $value['can']= isset($value['cat_id']) && $value['cat_id'] !=0 ? made($value['cat_id']):[];
  1717. $unit =Db::name("unit")->where(["id"=>$value['unit_id']])->find();
  1718. $value['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1719. $supplier = Db::name("supplier")->where(["code"=>$value['supplierNo']])->find();
  1720. $value['supplierName'] = isset($supplier['name'])?$supplier['name']:"";
  1721. if($value['brand_id']!=0){
  1722. $brand=Db::name("brand")->where(["id"=>$value['brand_id']])->find();
  1723. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1724. }else{
  1725. $value["brand_name"]="";
  1726. $value["brand_id"]="";
  1727. }
  1728. $bidinfo = Db::name("consult_info")->where(["infoNo"=>$value["infoNo"]])->find();
  1729. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1730. $god=[
  1731. "metal_id"=>$value['metal_id'],
  1732. "weight"=>$value["good_weight"],
  1733. "demo_fee"=>$value["demo_fee"],
  1734. "delivery_fee"=>$value["delivery_fee"],
  1735. "open_fee"=>$value["open_fee"],
  1736. "packing_fee"=>$value["pakge_fee"],
  1737. "mark_fee"=>$value["mark_fee"],
  1738. "nake_fee"=>$value["nake_fee"],
  1739. "cert_fee"=>$value["cert_fee"],
  1740. "cost_fee"=>$value["cost_fee"],
  1741. "num"=>$bidinfo["num"],
  1742. ];
  1743. if ($value['is_gold_price'] == 1 ) {
  1744. $gold = Db::name("gold_price1")->where(["type"=>$value['metal_id'],"is_del"=>0,"status"=>1])->order("addtime desc")
  1745. ->find();
  1746. //$total_fee(成本合计初始价格) =打样费/购买数量 + 开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价0+运费;
  1747. //$saleprice(最终售价) = (开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100);
  1748. $saleprice = ($value['demo_fee']/$bidinfo['num']+$value['delivery_fee']+$value["open_fee"]/$bidinfo['num'] +$value["good_weight"] *$gold["price"] +
  1749. $value["cost_fee"] * $value["good_weight"] + $value["pakge_fee"]+ $value["mark_fee"] +$value["cert_fee"] +$value["nake_fee"]) / (1 - $budget);
  1750. // //销售工艺费=((开模费/购买数量 + 商品重量* 最新金价 + 工艺费* 商品重量+包装费+加标费+证书费+产品裸价)/(1-成本售价/100)-(打样费/购买数量 + 开模费/购买数量 +包装费+加标费+证书费+产品裸价0+运费) )/商品重量-最新金价
  1751. // $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"];
  1752. }else{
  1753. if($value["nake_fee"]){
  1754. $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);
  1755. }else{
  1756. $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"]) /
  1757. (1 - $budget);
  1758. }
  1759. }
  1760. $value['metal_name']=isset($value['metal_id'])&& $value['metal_id']!=0?$this->noble[$value['metal_id']]:"";
  1761. $value['specinfo'] = json_decode($value['specinfo'],true);
  1762. $value['bargain_status']=$bidinfo['bargain_status'];
  1763. $data[]=$value;
  1764. }
  1765. return app_show(0,"获取成功",$data);
  1766. }
  1767. public function bragain_list(){
  1768. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) :"1";
  1769. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) :"10";
  1770. $where=[['is_del',"=",0]];
  1771. $bidsNo = isset($this->post['bidsNo'])&&$this->post['bidsNo']!=""?trim($this->post['bidsNo']):"";
  1772. if($bidsNo!=""){
  1773. $where[]=["bidsNo","=",$bidsNo];
  1774. }
  1775. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1776. if ($zxNo !== "") {
  1777. $where[] = ['zxNo','=',$zxNo];
  1778. }
  1779. $infoNo = isset($this->post['infoNo']) && $this->post['infoNo'] !== "" ? trim($this->post['infoNo']) : "";
  1780. if ($infoNo !== "") {
  1781. $where[] = ['infoNo','=',$infoNo];
  1782. }
  1783. $projectNo = isset($this->post['projectNo']) && $this->post['projectNo'] !== "" ? trim($this->post['projectNo']) : "";
  1784. if ($projectNo !== "") {
  1785. $zxlist = Db::name("consult_order")->where(["projectNo"=>$projectNo,"is_del"=>0,"is_project"=>1])->column
  1786. ("zxNo");
  1787. $where[] = ['zxNo','in',$zxlist];
  1788. }
  1789. $pgNo = isset($this->post['pgNo']) && $this->post['pgNo'] !== "" ? trim($this->post['pgNo']) : "";
  1790. if ($pgNo !== "") {
  1791. $bidinfo = Db::name("consult_info")->where([["pgNo","=",$pgNo],["is_del","=",0]])->column("infoNo");
  1792. $where[] = ['infoNo','in',$bidinfo];
  1793. }
  1794. $role=$this->checkRole();
  1795. if(!empty($role['write'])){
  1796. $where[]=["createrid","in",$role['write']];
  1797. }
  1798. $count=Db::name("bargain_order")->where($where)->count();
  1799. $total = ceil($count / $size);
  1800. $page = $page >= $total ? $total : $page;
  1801. $list =Db::name('bargain_order')->where($where)->page($page,$size)->order('addtime','desc')->select();
  1802. $data=[];
  1803. foreach ($list as $value){
  1804. $bidinfos = Db::name("consult_bids")->where([["bidNo","=",$value['bidsNo']],["is_del","=",0]])->find();
  1805. $value['spuCode'] = isset($bidinfos['spuCode'])?$bidinfos['spuCode']:"";
  1806. $value['good_name'] = isset($bidinfos['good_name'])?$bidinfos['good_name']:"";
  1807. $value['good_img'] = isset($bidinfos['good_img'])?$bidinfos['good_img']:"";
  1808. $value['brand_id'] = isset($bidinfos['brand_id'])?$bidinfos['brand_id']:"";
  1809. if($bidinfos['brand_id']!=0){
  1810. $value['brand_id'] = $bidinfos['brand_id'];
  1811. $brand=Db::name("brand")->where(["id"=>$bidinfos['brand_id']])->find();
  1812. $value["brand_name"]=isset($brand['brand_name'])?$brand['brand_name']:"";
  1813. }else{
  1814. $value["brand_name"]="";
  1815. $value["brand_id"]="";
  1816. }
  1817. $catinfo = Db::name("cat")->where(["id"=>$bidinfos['cat_id']])->find();
  1818. $value['can']= isset($bidinfos['cat_id']) && $bidinfos['cat_id'] !=0 ? made($bidinfos['cat_id']):[];
  1819. $unit =Db::name("unit")->where(["id"=>$bidinfos['unit_id']])->find();
  1820. $value['unit'] = isset($unit['unit'])?$unit['unit']:'';
  1821. $bidinfoe = Db::name("consult_info")->where(["infoNo"=>$value["infoNo"]])->find();
  1822. $budget = isset($catinfo['order_rate']) ? $catinfo['order_rate']:0;
  1823. $value['budget'] =$budget;
  1824. $god=[
  1825. "metal_id"=>$bidinfos['metal_id'],
  1826. "weight"=>$bidinfos["good_weight"],
  1827. "demo_fee"=>$bidinfos["demo_fee"],
  1828. "delivery_fee"=>$bidinfos["delivery_fee"],
  1829. "open_fee"=>$bidinfos["open_fee"],
  1830. "packing_fee"=>$bidinfos["pakge_fee"],
  1831. "mark_fee"=>$bidinfos["mark_fee"],
  1832. "nake_fee"=>$bidinfos["nake_fee"],
  1833. "cert_fee"=>$bidinfos["cert_fee"],
  1834. "cost_fee"=>$bidinfos["cost_fee"],
  1835. "num"=>$bidinfoe["num"],
  1836. ];
  1837. // if($bidinfos['is_gold_price']==1){
  1838. // $price = GoldPrice($god, $budget/100);
  1839. // }else{
  1840. // $price = GoodPrice($god, $budget/100);
  1841. // }
  1842. $value['metal_name']=isset($bidinfos['metal_id'])&& $bidinfos['metal_id']!=0?$this->noble[$bidinfos['metal_id']]:"";
  1843. $value['sale_price'] =round($bidinfos['origin_price'],2);
  1844. $value['cost_before_price'] =round($bidinfos['origin_cost_fee'],2);
  1845. $value['specinfo'] = isset($bidinfos['specinfo'])&&$bidinfos['specinfo']!=""?json_decode($bidinfos['specinfo'],true):[];
  1846. $data[]=$value;
  1847. }
  1848. return app_show(0,"获取成功",["list"=>$data,"count"=>$count]);
  1849. }
  1850. public function crontablist(){
  1851. $page = isset($this->post['page']) && $this->post['page'] !== "" ? intval($this->post['page']) :"1";
  1852. $size = isset($this->post['size']) && $this->post['size'] !== "" ? intval($this->post['size']) :"10";
  1853. $where=[['a.is_del',"=",0],['b.is_del',"=",0]];
  1854. $zxNo = isset($this->post['zxNo']) && $this->post['zxNo'] !== "" ? trim($this->post['zxNo']) : "";
  1855. if ($zxNo !== "") {
  1856. $where[] = ['a.zxNo','=',$zxNo];
  1857. }
  1858. $salesman = isset($this->post['salesman']) && $this->post['salesman'] !== "" ? trim($this->post['salesman']) : "";
  1859. if ($salesman !== "") {
  1860. //$where["salesman"] =Db::Raw("like '%$salesman%'");
  1861. $where[]= ["b.salesman",'like',"%$salesman%"];
  1862. }
  1863. $cpName = isset($this->post['cpName']) && $this->post['cpName'] !== "" ? trim($this->post['cpName']) : "";
  1864. if ($cpName !== "") {
  1865. //$where["cpName"]= Db::Raw("like '%$cpName%'");
  1866. $where[]= ["a.good_Name",'like',"%$cpName%"];
  1867. }
  1868. $khNo = isset($this->post['khNo']) && $this->post['khNo'] !== "" ? trim($this->post['khNo']) : "";
  1869. if ($khNo !== "") {
  1870. // $where['khNo'] = $khNo;
  1871. $where[]= ["b.khNo",'like',"%$khNo%"];
  1872. }
  1873. $start= isset($this->post['start']) && $this->post['start'] !== "" ? $this->post['start']:"";
  1874. if ($start !="") {
  1875. //$where = ["zxtime"=>Db::raw(">= '{$start}'")];
  1876. $where[]= ["a.addtime",'>=',$start];
  1877. }
  1878. $end = isset($this->post['end']) && $this->post['end'] !== "" ? $this->post['end'] :"";
  1879. if($end !=""){
  1880. $where[]= ["a.addtime",'<=',$end];
  1881. }
  1882. $status = isset($this->post['status']) && $this->post['status'] !== "" ? trim($this->post['status']) : "";
  1883. if ($status !== "") {
  1884. $where[]= ["a.status",'=',$status];
  1885. }
  1886. $count = Db::name('consult_info')->alias("a")->leftJoin("consult_order b","a.zxNo=b.zxNo")->where($where)
  1887. ->count();
  1888. $total = ceil($count / $size);
  1889. $page = $page >= $total ? $total : $page;
  1890. $list =Db::name('consult_info')->alias("a")->leftJoin("consult_order b","a.zxNo=b.zxNo")->where($where)->page($page,$size)
  1891. ->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();
  1892. $data=[];
  1893. foreach ($list as $value){
  1894. $value['can']= isset($value['cat_id']) && $value['cat_id'] !=0 ? made($value['cat_id']):[];
  1895. $brand = Db::name("brand")->where(['id'=>$value['brand_id']])->find();
  1896. $value['brand_name']= isset($brand['brand_name']) && $brand['brand_name']!='' ? $brand['brand_name']:"";
  1897. $value['khname']="";
  1898. $value['specinfo']=isset($value['specinfo'])&&$value['specinfo']!=""? json_decode($value['specinfo'],
  1899. true):[];
  1900. if($value['khNo']!==""){
  1901. $kh=Db::name("customer_info")->where(['companyNo'=>$value['khNo']])->find();
  1902. $value['khname']= isset($kh['companyName'])?$kh['companyName']:"";
  1903. }
  1904. $value['metal_name']=isset($value['metal_id'])&& $value['metal_id']!=0?$this->noble[$value['metal_id']]:"";
  1905. $data[]=$value;
  1906. }
  1907. return app_show(0,"获取成功",['count'=>$count,'list'=>$data]);
  1908. }
  1909. }