Consult.php 122 KB

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