ConstructionService.php 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902
  1. <?php
  2. namespace App\Service;
  3. use App\Model\BasicType;
  4. use App\Model\Construction;
  5. use App\Model\ConstructionFile;
  6. use App\Model\ConstructionInfo;
  7. use App\Model\ConstructionProductInfo;
  8. use App\Model\Customer;
  9. use App\Model\CustomerInfo;
  10. use App\Model\DeliveryNote;
  11. use App\Model\Depart;
  12. use App\Model\Employee;
  13. use App\Model\SalesOrder;
  14. use App\Model\SalesOrderInfo;
  15. use App\Model\SalesOrderProductInfo;
  16. use App\Model\ScheduleInfo;
  17. use App\Model\SeeRange;
  18. use App\Model\Storehouse;
  19. use Illuminate\Support\Facades\DB;
  20. /**
  21. * 施工订单
  22. */
  23. class ConstructionService extends Service
  24. {
  25. /**
  26. * 施工订单编辑
  27. * @param $data
  28. * @param $user
  29. * @return array
  30. */
  31. public function constructionEdit($data,$user){
  32. list($status,$msg) = $this->constructionRule($data, $user, false);
  33. if(!$status) return [$status,$msg];
  34. $params = $this->getDataFile($data);
  35. (new OperationLogService())->setOperationList($params,$user,2);
  36. try {
  37. DB::beginTransaction();
  38. $model = Construction::where('id', $data['id'])->first();
  39. $model->model_type = $data['model_type'];
  40. $model->order_number = $data['order_number'];
  41. $model->title = $data['title'] ?? '';
  42. $model->customer_id = $data['customer_id'] ?? 0;
  43. $model->customer_contact_id = $data['customer_contact_id'] ?? 0;
  44. $model->install_method = $data['install_method'] ?? 0;
  45. $model->install_position = $data['install_position'] ?? 0;
  46. $model->sales_order_id = $data['sales_order_id'] ?? 0;
  47. $model->construction_fee = $data['construction_fee'] ?? 0;
  48. $model->service_price = $data['service_price'] ?? 0;
  49. $model->construction_time = $data['construction_time'] ?? 0;
  50. $model->handover_time = $data['handover_time'] ?? 0;
  51. $model->urgency = $data['urgency'] ?? 0;
  52. $model->mark = $data['mark'] ?? '';
  53. $model->address1 = ! empty($data['address1']) ? json_encode($data['address1']) : '';
  54. $model->address2 = $data['address2'] ?? '';
  55. $model->introduction = $data['introduction'] ?? '';
  56. $model->storehouse_id = $data['storehouse_id'] ?? 0;
  57. $model->start_time = $data['start_time'] ?? 0;
  58. $model->end_time = $data['end_time'] ?? 0;
  59. $model->schedule_id = $data['schedule_id'] ?? 0;
  60. $model->day_stamp = $data['day_stamp'] ?? 0;
  61. $model->day_start_stamp = $data['day_start_stamp'] ?? 0;
  62. $model->day_end_stamp = $data['day_end_stamp'] ?? 0;
  63. $model->save();
  64. $time = time();
  65. ConstructionInfo::where('del_time',0)
  66. ->where('construction_id',$data['id'])
  67. ->update(['del_time' => $time]);
  68. ConstructionProductInfo::where('del_time',0)
  69. ->where('construction_id',$data['id'])
  70. ->update(['del_time' => $time]);
  71. $old = ConstructionFile::where('del_time',0)
  72. ->where('construction_id',$data['id'])
  73. ->select('file')
  74. ->get()->toArray();
  75. $old = array_column($old,'file');
  76. ConstructionFile::where('del_time',0)
  77. ->where('construction_id',$data['id'])
  78. ->update(['del_time' => $time]);
  79. if(! empty($data['construction_contact'])){
  80. $insert = [];
  81. foreach ($data['construction_contact'] as $value){
  82. $insert[] = [
  83. 'construction_id' => $model->id,
  84. 'contact_type' => $value['id'],
  85. 'contact_info' => $value['info'],
  86. 'type' => ConstructionInfo::type_one,
  87. 'crt_time' => $time,
  88. ];
  89. }
  90. ConstructionInfo::insert($insert);
  91. }
  92. if(! empty($data['employee_one'])){
  93. $insert = [];
  94. foreach ($data['employee_one'] as $value){
  95. $insert[] = [
  96. 'construction_id' => $model->id,
  97. 'employee_id' => $value,
  98. 'type' => ConstructionInfo::type_two,
  99. 'crt_time' => $time,
  100. ];
  101. }
  102. ConstructionInfo::insert($insert);
  103. }
  104. if(! empty($data['product'])){
  105. $insert = [];
  106. foreach ($data['product'] as $value){
  107. $insert[] = [
  108. 'construction_id' => $model->id,
  109. 'product_id' => $value['product_id'],
  110. 'number' => $value['number'],
  111. 'cost' => $value['cost'] ?? 0,
  112. 'retail_price' => $value['retail_price'] ?? 0,
  113. 'mark' => $value['mark'] ?? '',
  114. 'crt_time' => $time,
  115. 'storehouse_id' => $data['storehouse_id'] ?? 0,
  116. 'basic_type_id' => $value['basic_type_id'],
  117. 'price' => $value['price'],
  118. 'final_amount' => $value['final_amount'] ?? 0,
  119. ];
  120. }
  121. ConstructionProductInfo::insert($insert);
  122. //锁定库存
  123. ProductInventoryService::changeLockNumber($user,$msg[0],$msg[1]);
  124. }
  125. if(! empty($data['schedule_info_id'])) ScheduleInfo::where('id',$data['schedule_info_id'])->update(['is_use' => 1]);
  126. $new = [];
  127. if(! empty($data['file'])){
  128. $insert = [];
  129. foreach ($data['file'] as $value){
  130. $insert[] = [
  131. 'order_number' => $data['order_number'],
  132. 'construction_id' => $data['id'],
  133. 'file' => $value['url'],
  134. 'name' => $value['name'],
  135. 'mark' => $value['mark'] ?? "",
  136. 'crt_time' => $time,
  137. ];
  138. $new[]= $value['url'];
  139. }
  140. ConstructionFile::insert($insert);
  141. }
  142. DB::commit();
  143. }catch (\Exception $exception){
  144. DB::rollBack();
  145. return [false,$exception->getMessage()];
  146. }
  147. $this->delStorageFile($old, $new);
  148. return [true,''];
  149. }
  150. /**
  151. * 施工订单新增
  152. * @param $data
  153. * @param $user
  154. * @return array
  155. */
  156. public function constructionAdd($data,$user){
  157. list($status,$msg) = $this->constructionRule($data,$user);
  158. if(!$status) return [$status,$msg];
  159. try {
  160. DB::beginTransaction();
  161. $model = new Construction();
  162. $model->model_type = $data['model_type'];
  163. $model->order_number = $data['order_number'];
  164. $model->title = $data['title'] ?? '';
  165. $model->customer_id = $data['customer_id'] ?? 0;
  166. $model->customer_contact_id = $data['customer_contact_id'] ?? 0;
  167. $model->install_method = $data['install_method'] ?? 0;
  168. $model->install_position = $data['install_position'] ?? 0;
  169. $model->sales_order_id = $data['sales_order_id'] ?? 0;
  170. $model->construction_fee = $data['construction_fee'] ?? 0;
  171. $model->service_price = $data['service_price'] ?? 0;
  172. $model->construction_time = $data['construction_time'] ?? 0;
  173. $model->handover_time = $data['handover_time'] ?? 0;
  174. $model->urgency = $data['urgency'] ?? 0;
  175. $model->mark = $data['mark'] ?? '';
  176. $model->address1 = ! empty($data['address1']) ? json_encode($data['address1']) : '';
  177. $model->address2 = $data['address2'] ?? '';
  178. $model->introduction = $data['introduction'] ?? '';
  179. $model->crt_id = $user['id'];
  180. $model->depart_id = $data['depart_id'] ?? 0;
  181. $model->top_depart_id = $data['top_depart_id'] ?? 0;
  182. $model->storehouse_id = $data['storehouse_id'] ?? 0;
  183. $model->start_time = $data['start_time'] ?? 0;
  184. $model->end_time = $data['end_time'] ?? 0;
  185. $model->schedule_id = $data['schedule_id'] ?? 0;
  186. $model->day_stamp = $data['day_stamp'] ?? 0;
  187. $model->day_start_stamp = $data['day_start_stamp'] ?? 0;
  188. $model->day_end_stamp = $data['day_end_stamp'] ?? 0;
  189. $model->save();
  190. $time = time();
  191. if(! empty($data['construction_contact'])){
  192. $insert = [];
  193. foreach ($data['construction_contact'] as $value){
  194. $insert[] = [
  195. 'construction_id' => $model->id,
  196. 'contact_type' => $value['id'],
  197. 'contact_info' => $value['info'],
  198. 'type' => ConstructionInfo::type_one,
  199. 'crt_time' => $time,
  200. ];
  201. }
  202. ConstructionInfo::insert($insert);
  203. }
  204. if(! empty($data['employee_one'])){
  205. $insert = [];
  206. foreach ($data['employee_one'] as $value){
  207. $insert[] = [
  208. 'construction_id' => $model->id,
  209. 'employee_id' => $value,
  210. 'type' => ConstructionInfo::type_two,
  211. 'crt_time' => $time,
  212. ];
  213. }
  214. ConstructionInfo::insert($insert);
  215. }
  216. if(! empty($data['product'])){
  217. $insert = [];
  218. foreach ($data['product'] as $value){
  219. $insert[] = [
  220. 'construction_id' => $model->id,
  221. 'product_id' => $value['product_id'],
  222. 'number' => $value['number'],
  223. 'cost' => $value['cost'] ?? 0,
  224. 'retail_price' => $value['retail_price'] ?? 0,
  225. 'mark' => $value['mark'] ?? '',
  226. 'crt_time' => $time,
  227. 'storehouse_id' => $data['storehouse_id'] ?? 0,
  228. 'basic_type_id' => $value['basic_type_id'],
  229. 'price' => $value['price'],
  230. 'final_amount' => $value['final_amount'] ?? 0,
  231. ];
  232. }
  233. ConstructionProductInfo::insert($insert);
  234. //锁定库存
  235. ProductInventoryService::changeLockNumber($user,$msg[0],[]);
  236. }
  237. if(! empty($data['schedule_info_id'])) ScheduleInfo::where('id',$data['schedule_info_id'])->update(['is_use' => 1]);
  238. if(! empty($data['file'])){
  239. $insert = [];
  240. foreach ($data['file'] as $value){
  241. $insert[] = [
  242. 'order_number' => $data['order_number'],
  243. 'construction_id' => $model->id,
  244. 'file' => $value['url'],
  245. 'name' => $value['name'],
  246. 'mark' => $value['mark'] ?? "",
  247. 'crt_time' => $time,
  248. ];
  249. }
  250. ConstructionFile::insert($insert);
  251. }
  252. DB::commit();
  253. }catch (\Exception $exception){
  254. DB::rollBack();
  255. return [false,$exception->getMessage()];
  256. }
  257. (new OperationLogService())->setOperationList($data,$user);
  258. return [true,''];
  259. }
  260. /**
  261. * 施工订单删除
  262. * @param $data
  263. * @return array
  264. */
  265. public function constructionDel($data,$user){
  266. if($this->isEmpty($data,'id')) return [false,'请选择数据!'];
  267. $construction = Construction::where('del_time',0)->where('id',$data['id'])->first();
  268. if(empty($construction)) return [false,'施工单不存在或已被删除'];
  269. $construction = $construction->toArray();
  270. if($construction['state'] > Construction::STATE_ZERO) return [false,'请确认施工单状态,操作失败'];
  271. $product_save = $this->getSaveDetail($data['id']);
  272. try {
  273. DB::beginTransaction();
  274. Construction::where('id',$data['id'])->update([
  275. 'del_time'=> time()
  276. ]);
  277. ConstructionInfo::where('del_time',0)
  278. ->where('construction_id',$data['id'])
  279. ->update(['del_time' => time()]);
  280. $old = ConstructionFile::where('del_time',0)
  281. ->where('construction_id',$data['id'])
  282. ->select('file')
  283. ->get()->toArray();
  284. $old = array_column($old,'file');
  285. ConstructionFile::where('del_time',0)
  286. ->where('construction_id',$data['id'])
  287. ->update(['del_time' => time()]);
  288. ConstructionProductInfo::where('del_time',0)
  289. ->where('construction_id',$data['id'])
  290. ->update(['del_time' => time()]);
  291. (new RangeService())->RangeDelete($data['id'],SeeRange::type_two);
  292. //锁定库存释放
  293. ProductInventoryService::changeLockNumber($user,[],$product_save);
  294. //排班修改
  295. // $schedule = ScheduleInfo::where('del_time',0)
  296. // ->where('schedule_id',$construction['schedule_id'])
  297. // ->where('start_time',$construction['day_start_stamp'])
  298. // ->where('end_time',$construction['day_end_stamp'])
  299. // ->where('is_use','>', ScheduleInfo::not_use)
  300. // ->first();
  301. // if(! empty($schedule)) ScheduleInfo::where('id',$schedule->id)->update(['is_use' => ScheduleInfo::not_use]);
  302. DB::commit();
  303. }catch (\Exception $exception){
  304. DB::rollBack();
  305. return [false,$exception->getMessage()];
  306. }
  307. $this->delStorageFile($old);
  308. return [true,''];
  309. }
  310. /**
  311. * 施工订单详情
  312. * @param $data
  313. * @return array
  314. */
  315. public function detail($data){
  316. if(empty($data['id']) && empty($data['order_number'])) return [false,'请选择数据!'];
  317. if(! empty($data['id'])){
  318. $construction = Construction::where('del_time',0)
  319. ->where('id',$data['id'])
  320. ->first();
  321. }else{
  322. $construction = Construction::where('del_time',0)
  323. ->where('order_number',$data['order_number'])
  324. ->first();
  325. $data['id'] = empty($construction->id) ? 0 : $construction->id;
  326. }
  327. if(empty($construction)) return [false,'施工订单不存在或已被删除'];
  328. $construction = $construction->toArray();
  329. $construction['state_title'] = Construction::$name[$construction['state']] ?? '';
  330. $construction['pq_state_title'] = Construction::$pq_name[$construction['pq_state']] ?? '';
  331. if(! empty($construction['address1'])) {
  332. $tmp = json_decode($construction['address1'],true);
  333. $construction['address1'] = $tmp;
  334. $tmp = implode(' ',$tmp);
  335. $tmp .= ' ' . $construction['address2'];
  336. $address = $tmp;
  337. }else{
  338. $address = $construction['address2'];
  339. }
  340. $construction['address'] = $address;
  341. $start_time = $construction['start_time'] ? date("Y-m-d H:i",$construction['start_time']) : '';
  342. $end_time = $construction['end_time'] ? date("Y-m-d H:i",$construction['end_time']) : '';
  343. $construction['construction_period'] = $start_time . '——' . $end_time;
  344. $sales = SalesOrder::where('id',$construction['sales_order_id'])->value('order_number');
  345. $construction['sales_order_number'] = $sales;
  346. $customer_title = Customer::where('id',$construction['customer_id'])->value('title');
  347. $construction['customer_title'] = $customer_title ?? "";
  348. $info = CustomerInfo::from('customer_info as a')
  349. ->leftJoin('basic_type as b','b.id','a.contact_type')
  350. ->where('a.del_time',0)
  351. ->where('a.customer_id',$construction['customer_id'])
  352. ->where('a.contact_type','>',0)
  353. ->select('b.title','a.contact_info')
  354. ->get()->toArray();
  355. $construction['customer_array'] = $info;
  356. $info = CustomerInfo::from('customer_info as a')
  357. ->leftJoin('basic_type as b','b.id','a.contact_type')
  358. ->where('a.del_time',0)
  359. ->where('a.customer_id',$construction['customer_id'])
  360. ->where('a.contact_type','>',0)
  361. ->select('b.title','a.contact_info')
  362. ->get()->toArray();
  363. $construction['customer_array'] = $info;
  364. $construction['storehouse_title'] = Storehouse::where('id',$construction['storehouse_id'])->value('title');
  365. $emp_title = Employee::where('id',$construction['customer_contact_id'])->value('emp_name');
  366. $construction['customer_contact_title'] = $emp_title;
  367. $construction['employee_one'] = $construction['construction_contact'] = $construction['product'] = [];
  368. $array = [
  369. $construction['install_method'],
  370. $construction['install_position'],
  371. $construction['urgency'],
  372. ];
  373. $basic_map = BasicType::whereIn('id',$array)
  374. ->pluck('title','id')
  375. ->toArray();
  376. $construction = [$construction];
  377. foreach ($construction as $key => $value){
  378. $construction[$key]['install_method_title'] = $basic_map[$value['install_method']] ?? '';
  379. $construction[$key]['install_position_title'] = $basic_map[$value['install_position']] ?? '';
  380. $construction[$key]['urgency_title'] = $basic_map[$value['urgency']] ?? '';
  381. }
  382. $construction = $construction[0];
  383. $construction['file'] = [];
  384. $file = ConstructionFile::where('del_time',0)
  385. ->where('construction_id',$construction['id'])
  386. ->select('id','construction_id','file','name','mark')
  387. ->get()->toArray();
  388. foreach ($file as $value){
  389. $construction['file'][] = [
  390. 'url' => $value['file'],
  391. 'name' => $value['name'],
  392. 'mark' => $value['mark'],
  393. ];
  394. }
  395. $construction_info = ConstructionInfo::where('del_time',0)
  396. ->where('construction_id',$construction['id'])
  397. ->select('id','construction_id','employee_id','type','contact_type','contact_info')
  398. ->get()->toArray();
  399. $emp_map = Employee::whereIn('id',array_unique(array_merge_recursive([$construction['crt_id']],array_column($construction_info,'employee_id'))))
  400. ->pluck('emp_name','id')
  401. ->toArray();
  402. $basic_map2 = BasicType::whereIn('id',array_unique(array_column($construction_info,'contact_type')))
  403. ->pluck('title','id')
  404. ->toArray();
  405. foreach ($construction_info as $value){
  406. if($value['type'] == ConstructionInfo::type_one){
  407. $tmp = [
  408. 'id' => $value['contact_type'],
  409. 'title' => $basic_map2[$value['contact_type']] ?? '',
  410. 'info' => $value['contact_info']
  411. ];
  412. $construction['construction_contact'][] = $tmp;
  413. }elseif ($value['type'] == ConstructionInfo::type_two){
  414. $tmp = [
  415. 'id' => $value['employee_id'],
  416. 'name' => $emp_map[$value['employee_id']] ?? '',
  417. ];
  418. $construction['employee_one'][] = $tmp;
  419. }
  420. }
  421. $p_info = ConstructionProductInfo::where('del_time',0)
  422. ->where('construction_id',$construction['id'])
  423. ->get()->toArray();
  424. $basic_price = BasicType::whereIn('id',array_unique(array_column($p_info,'basic_type_id')))->pluck('title','id')->toArray();
  425. $map = (new ProductService())->getProductDetail(array_column($p_info,'product_id'));
  426. foreach ($p_info as $value){
  427. $tmp = $map[$value['product_id']] ?? [];
  428. $value['title'] = $tmp['title'] ?? "";
  429. $value['code'] = $tmp['code'] ?? "";
  430. $value['size'] = $tmp['size'] ?? "";
  431. $value['unit'] = $tmp['unit'] ?? "";
  432. $value['bar_code'] = $tmp['bar_code'] ?? "";
  433. $value['basic_type_title'] = $basic_price[$value['basic_type_id']] ?? "";
  434. $construction['product'][] = $value;
  435. }
  436. $construction['crt_name'] = $emp_map[$construction['crt_id']] ?? '';
  437. $construction['crt_time'] = $construction['crt_time'] ? date("Y-m-d H:i:s",$construction['crt_time']): '';
  438. //可见范围
  439. $return = (new RangeService())->RangeDetail($data['id'],SeeRange::type_two);
  440. $construction['depart'] = $return[0] ?? [];
  441. $construction['employee'] = $return[1] ?? [];
  442. return [true, $construction];
  443. }
  444. /**
  445. * 施工订单列表
  446. * @param $data
  447. * @param $user
  448. * @return array
  449. */
  450. public function constructionList($data,$user){
  451. $model = Construction::Clear($user,$data);
  452. $model = $model->where('del_time',0)
  453. ->select('title','id','model_type','order_number','customer_id','customer_contact_id','install_method','install_position','sales_order_id','construction_fee','construction_time','handover_time','urgency','crt_id','crt_time','mark','state','address1','address2','introduction','service_price','storehouse_id','start_time','end_time','pq_state','day_start_stamp','day_end_stamp')
  454. ->orderby('id', 'desc');
  455. if(isset($data['state'])) $model->where('state', $data['state']);
  456. if(isset($data['pq_state'])) $model->where('pq_state', $data['pq_state']);
  457. if(! empty($data['title'])) $model->where('title', 'LIKE', '%'.$data['title'].'%');
  458. if(! empty($data['model_type'])) $model->where('model_type',$data['model_type']);
  459. if(! empty($data['time_type'])) {
  460. if($data['time_type'] == 1) {
  461. $start = strtotime('today');
  462. $end = strtotime('tomorrow') - 1;
  463. }elseif ($data['time_type'] == 2){
  464. $start = strtotime('this week',strtotime('today'));
  465. $end = strtotime('this week +6 days 23:59:59', strtotime('today'));
  466. }
  467. if(! empty($start) && ! empty($end)) {
  468. $model->where('crt_time','>=',$start);
  469. $model->where('crt_time','<=',$end);
  470. }
  471. }
  472. if(! empty($data['construction_period'][0]) && ! empty($data['construction_period'][1])) {
  473. $return = $this->changeDateToTimeStampAboutRange($data['construction_period']);
  474. $model->where('start_time','>=',$return[0]);
  475. $model->where('end_time','<=',$return[1]);
  476. }
  477. if(! empty($data['pq_period'][0]) && ! empty($data['pq_period'][1])) {
  478. $model->where('day_start_stamp','>=',$this->changeDateToDateMin($data['pq_period'][0]));
  479. $model->where('day_end_stamp','<=',$this->changeDateToDateMin($data['pq_period'][1]));
  480. }
  481. if(! empty($data['sale_order'])){
  482. $model2 = SalesOrder::Clear($user,$data);
  483. $sale = $model2->where('del_time',0)
  484. ->where('order_number', 'LIKE', '%'.$data['sale_order'].'%')
  485. ->select('id')
  486. ->get()->toArray();
  487. $model->whereIn('sales_order_id',array_unique(array_column($sale,'id')));
  488. }
  489. if(! empty($data['install_method'])) $model->where('install_method',$data['install_method']);
  490. if(! empty($data['install_position'])) $model->where('install_position',$data['install_position']);
  491. $list = $this->limit($model,'',$data);
  492. $list = $this->fillData($list);
  493. return [true, $list];
  494. }
  495. /**
  496. * 参数规则
  497. * @param $data
  498. * @param $user
  499. * @param $is_add
  500. * @return array
  501. */
  502. public function constructionRule(&$data, $user, $is_add = true){
  503. if(empty($data['model_type'])) return [false,'工单模板类型不能为空'];
  504. if(! in_array($data['model_type'],Construction::$model_type)) return [false,'工单模板类型错误'];
  505. if(empty($data['order_number'])) return [false,'工单编号不能为空'];
  506. if(empty($data['storehouse_id'])) return [false,'请选择仓库'];
  507. if(empty($data['sales_order_id'])) return [false,'请选择合同'];
  508. $sale = SalesOrder::where('del_time',0)->where('id',$data['sales_order_id'])->first();
  509. if(empty($sale)) return [false,'合同不存在或已被删除'];
  510. if($sale['state'] < SalesOrder::State_two) return [false,'合同未派单,不允许新建施工单'];
  511. $sale = $sale->toArray();
  512. if(empty($data['product'])) return [false,'请选择产品'];
  513. if(empty($data['construction_period'][0]) || empty($data['construction_period'][1])) return [false,'请填写施工时间范围'];
  514. $data['start_time'] = $this->changeDateToDateMin($data['construction_period'][0]);
  515. $data['end_time'] = $this->changeDateToDateMin($data['construction_period'][1]);
  516. if(! empty($data['construction_fee'])){
  517. $res = $this->checkNumber($data['construction_fee']);
  518. if(! $res) return [false,'施工费用请输入不超过两位小数并且大于0的数值'];
  519. }
  520. if(! empty($data['service_price'])){
  521. $res = $this->checkNumber($data['service_price']);
  522. if(! $res) return [false,'服务价格请输入不超过两位小数并且大于0的数值'];
  523. }
  524. if(! empty($data['construction_time'])) $data['construction_time'] = $this->changeDateToDateMin($data['construction_time']);
  525. if(! empty($data['handover_time'])) $data['handover_time'] = $this->changeDateToDateMin($data['handover_time']);
  526. if($data['model_type'] == Construction::Model_type_one){
  527. // if(empty($data['install_method'])) return [false,'安装方式不能为空'];
  528. // if(empty($data['install_position'])) return [false,'安装地点不能为空'];
  529. }else{
  530. // if(empty($data['construction_contact'])) return [false,'联系方式不能为空'];
  531. // if(empty($data['address1']) || empty($data['address2'])) return [false,'地址不能为空'];
  532. }
  533. //所属部门 以及 顶级部门
  534. if(empty($data['depart_id'])) {
  535. $data['depart_id'] = $this->getDepart($user);
  536. $data['top_depart_id'] = $user['depart_map'][$data['depart_id']] ?? 0;
  537. }
  538. $product_submit = $product_id = [];
  539. foreach ($data['product'] as $value){
  540. if(empty($value['number'])) return [false,'产品数量不能为空'];
  541. $res = $this->checkNumber($value['number']);
  542. if(! $res) return [false,'请输入正确的产品数量'];
  543. $key = $value['product_id'] . ',' .$data['storehouse_id'];
  544. if(isset($product_submit[$key])){
  545. $product_submit[$key] += $value['number'];
  546. }else{
  547. $product_submit[$key] = $value['number'];
  548. }
  549. $product_id[] = $value['product_id'];
  550. }
  551. //剩余能施工
  552. $id = $data['id'] ?? 0;
  553. $s_product = $this->getSaveReturnCompareMessage($id, $data['sales_order_id']);
  554. //比较
  555. foreach ($product_submit as $pro => $number){
  556. $tmp = explode(',',$pro);
  557. $p = $tmp[0];
  558. if(! isset($s_product[$p])) return [false,'施工产品错误,合同中不存在该产品'];
  559. $s_number = $s_product[$p];
  560. if($number > $s_number) return [false,'施工产品数量不能超过合同产品数据'];
  561. }
  562. $id = $data['id'] ?? 0;
  563. $product_save = $this->getSaveDetail($id);
  564. //是否校验库存
  565. ProductInventoryService::is_check($user,$data);
  566. list($status,$msg) = (new ProductInventoryService())->compareStock($user,$product_id, $product_submit, $product_save);
  567. if(! $status) return [false, $msg];
  568. $start_time = date("Y-m-d H:i",$data['start_time']);
  569. $end_time = date("Y-m-d H:i",$data['end_time']);
  570. if($is_add){
  571. $bool = Construction::where('del_time',0)
  572. ->where('order_number',$data['order_number'])
  573. ->exists();
  574. if($bool) return [false,'工单编号已存在,请重新获取'];
  575. $bool = Construction::where('del_time',0)
  576. ->where('sales_order_id',$data['sales_order_id'])
  577. ->where('start_time', '<=', $data['end_time'])
  578. ->where('end_time', '>=', $data['start_time'])
  579. ->exists();
  580. if($bool) return [false,'合同:' . $sale['order_number'] . '在' . $start_time . '——' . $end_time . '已下施工单'];
  581. }else{
  582. if(empty($data['id'])) return [false,'ID不能为空'];
  583. $bool = Construction::where('del_time',0)
  584. ->where('id','<>',$data['id'])
  585. ->where('sales_order_id',$data['sales_order_id'])
  586. ->where('start_time', '<=', $data['end_time'])
  587. ->where('end_time', '>=', $data['start_time'])
  588. ->exists();
  589. if($bool) return [false,'合同:' . $sale['order_number'] . '在' . $start_time . '——' . $end_time . '已下施工单'];
  590. }
  591. return [true, [$product_submit, $product_save]];
  592. }
  593. /**
  594. * 数据拼接
  595. * @param $data
  596. * @return array
  597. */
  598. public function fillData($data){
  599. if(empty($data['data'])) return $data;
  600. $array = array_unique(array_merge_recursive(array_column($data['data'],'install_method'),array_column($data['data'],'urgency'),array_column($data['data'],'install_position')));
  601. $basic_map = BasicType::whereIn('id',$array)
  602. ->pluck('title','id')
  603. ->toArray();
  604. $emp = Employee::whereIn('id',array_unique(array_merge_recursive(array_column($data['data'],'crt_id'),array_column($data['data'],'customer_contact_id'))))
  605. ->pluck('emp_name','id')
  606. ->toArray();
  607. $customer = Customer::whereIn('id',array_unique(array_column($data['data'],'customer_id')))
  608. ->pluck('title','id')
  609. ->toArray();
  610. $sales = SalesOrder::whereIn('id',array_unique(array_column($data['data'],'sales_order_id')))->select('order_number','id','handover_time')->get()->toArray();
  611. $sales_map = [];
  612. foreach ($sales as $value){
  613. $sales_map[$value['id']] = $value;
  614. }
  615. $storehouse = Storehouse::whereIn('id',array_unique(array_column($data['data'],'storehouse_id')))
  616. ->pluck('title','id')
  617. ->toArray();
  618. //分派的总社或分社
  619. $dispatch = $this->getDispatchData($data['data']);
  620. foreach ($data['data'] as $key => $value){
  621. if(! empty($value['address1'])) {
  622. $tmp = json_decode($value['address1'],true);
  623. $tmp = implode(' ',$tmp);
  624. $tmp .= ' ' . $value['address2'];
  625. $address = $tmp;
  626. }else{
  627. $address = $value['address2'];
  628. }
  629. $start_time = $value['start_time'] ? date("Y-m-d H:i",$value['start_time']) : '';
  630. $end_time = $value['end_time'] ? date("Y-m-d H:i",$value['end_time']) : '';
  631. $data['data'][$key]['construction_period'] = $start_time . '——' . $end_time;
  632. $data['data'][$key]['address'] = $address;
  633. $data['data'][$key]['model_type_title'] = Construction::$model_type_title[$value['model_type']] ?? '';
  634. $data['data'][$key]['install_position_title'] = $basic_map[$value['install_position']] ?? '';
  635. $data['data'][$key]['install_method_title'] = $basic_map[$value['install_method']] ?? '';
  636. $data['data'][$key]['urgency_title'] = $basic_map[$value['urgency']] ?? '';
  637. $data['data'][$key]['customer_title'] = $customer[$value['customer_id']] ?? '';
  638. $data['data'][$key]['crt_time'] = $value['crt_time'] ? date('Y-m-d H:i:s',$value['crt_time']) : '';
  639. $data['data'][$key]['crt_name'] = $emp[$value['crt_id']] ?? '';
  640. $data['data'][$key]['customer_contact_title'] = $emp[$value['customer_contact_id']] ?? '';
  641. $data['data'][$key]['state_title'] = Construction::$name[$value['state']] ?? '';
  642. $tmp_sales = $sales_map[$value['sales_order_id']] ?? [];
  643. $tmp_sales_time = $tmp_sales['handover_time'] ? date("Y-m-d") : "";
  644. $data['data'][$key]['sales_order_number'] = $tmp_sales['order_number'];
  645. $data['data'][$key]['handover_time'] = $tmp_sales_time;
  646. $data['data'][$key]['storehouse_title'] = $storehouse[$value['storehouse_id']] ?? '';
  647. $data['data'][$key]['dispatch_company'] = $dispatch[$value['sales_order_id']] ?? '';
  648. $data['data'][$key]['pq_state_title'] = Construction::$pq_name[$value['pq_state']] ?? '';
  649. $str = "";
  650. $start_time = $value['day_start_stamp'] ? date("Y-m-d H:i",$value['day_start_stamp']) : '';
  651. $end_time = $value['day_end_stamp'] ? date("Y-m-d H:i",$value['day_end_stamp']) : '';
  652. if(! empty($start_time) && ! empty($end_time)) $str = $start_time . '——' . $end_time;
  653. $data['data'][$key]['pq_period'] = $str;
  654. }
  655. return $data;
  656. }
  657. public function getDispatchData($data){
  658. $search_id = [];
  659. foreach ($data as $value){
  660. $search_id[] = $value['sales_order_id'];
  661. }
  662. if(empty($search_id)) return [];
  663. $see = SeeRange::where('del_time',0)
  664. ->whereIn('data_id',$search_id)
  665. ->where('data_type',SeeRange::type_seven)
  666. ->where('type',SeeRange::data_three)
  667. ->select('data_id','param_id')
  668. ->get()->toArray();
  669. $map = Depart::whereIn('id',array_unique(array_column($see,'param_id')))
  670. ->pluck('title','id')
  671. ->toArray();
  672. $see_array = [];
  673. foreach ($see as $value){
  674. $see_array[$value['data_id']] = $map[$value['param_id']] ?? "";
  675. }
  676. return $see_array;
  677. }
  678. /**
  679. * 获取施工单号
  680. * @param $data
  681. * @return array
  682. */
  683. public function constructionGet($data){
  684. if(empty($data['model_type'])) return [false,'工单模板类型不能为空'];
  685. if(! isset(Construction::$prefix[$data['model_type']])) return [false,'工单模板类型错误'];
  686. $prefix = Construction::$prefix[$data['model_type']];
  687. $order_number = OrderNoService::createConstructionOrderNumber($prefix);
  688. if(! $order_number) return [false,'工单编号生成失败!'];
  689. return [true,['order_number' => $order_number]];
  690. }
  691. /**
  692. * 获取保存详情
  693. * @param $id
  694. * @return array
  695. */
  696. public function getSaveDetail($id){
  697. $product_save = [];
  698. if(empty($id)) return $product_save;
  699. $sub = ConstructionProductInfo::where('construction_id',$id)
  700. ->where('del_time',0)
  701. ->get()->toArray();
  702. foreach ($sub as $value){
  703. $key = $value['product_id'] . ',' . $value['storehouse_id'];
  704. if(isset($product_save[$key])){
  705. $product_save[$key] += $value['number'];
  706. }else{
  707. $product_save[$key] = $value['number'];
  708. }
  709. }
  710. return $product_save;
  711. }
  712. public function getSaveReturnCompareMessage($id = 0, $sales_order_id = 0){
  713. $construction = Construction::where('del_time',0)
  714. ->where('sales_order_id',$sales_order_id)
  715. ->select('id')->get()->toArray();
  716. $construction_id = array_column($construction,'id');
  717. $product_save = [];
  718. $sub = ConstructionProductInfo::where('del_time',0)
  719. ->whereIn('construction_id',$construction_id)
  720. ->when(! empty($id), function ($query) use ($id) {
  721. return $query->where('construction_id', '<>',$id);
  722. })
  723. ->get()->toArray();
  724. foreach ($sub as $value){
  725. if(isset($product_save[$value['product_id']])){
  726. $product_save[$value['product_id']] += $value['number'];
  727. }else{
  728. $product_save[$value['product_id']] = $value['number'];
  729. }
  730. }
  731. $sales_order_product = [];
  732. $sales_product = SalesOrderProductInfo::where('del_time',0)
  733. ->where('sales_order_id',$sales_order_id)
  734. ->get()->toArray();
  735. foreach ($sales_product as $value){
  736. $product_save_tmp = $product_save[$value['product_id']] ?? 0;
  737. if(isset($sales_order_product[$value['product_id']])){
  738. $sales_order_product[$value['product_id']] += $value['number'];
  739. }else{
  740. $sales_order_product[$value['product_id']] = $value['number'] - $product_save_tmp;
  741. }
  742. }
  743. return $sales_order_product;
  744. }
  745. public function deliveryNoteEdit($data,$user){
  746. $id = $user['id'];
  747. if(isset($data['id'])) {
  748. $model = DeliveryNote::where('id',$data['id'])->first();
  749. if($model->img3) return [false,'客户已签字,无法编辑!'];
  750. if(DeliveryNote::where('del_time',0)->where('construction_order_number',$data['construction_order_number'])->where('id','<>',$data['id'])->first()) return [false,'施工单客户确认单已存在!'];
  751. }
  752. else {
  753. $model = new DeliveryNote();
  754. $model->crt_id = $id;
  755. }
  756. try {
  757. $model->upd_id = $id;
  758. $model->construction_order_number = $data['construction_order_number'] ?? '';
  759. $model->start_time = $data['start_time'] ?? '';
  760. $model->end_time = $data['end_time'] ?? '';
  761. $model->vin_no = $data['vin_no'] ?? '';
  762. $model->system = $data['system'] ?? '';
  763. $model->mile = $data['mile'] ?? '';
  764. $model->is_wait = $data['is_wait'] ?? '';
  765. $model->customer_name = $data['customer_name'] ?? '';
  766. $model->customer_mobile = $data['customer_mobile'] ?? '';
  767. $model->sale_man = $data['sale_man'] ?? '';
  768. $model->install_man = $data['install_man'] ?? '';
  769. $model->is_brash = $data['is_brash'] ?? '';
  770. $model->is_chong = $data['is_chong'] ?? '';
  771. $model->service_mark = $data['service_mark'] ?? '';
  772. $model->mark = $data['mark'] ?? '';
  773. $model->break = $data['break'] ? json_encode($data['break']):json_encode([]);
  774. $model->break_mark = $data['break_mark'] ? json_encode($data['break_mark']):json_encode([]);
  775. $model->project_id = $data['project_id'] ? json_encode($data['project_id']):json_encode([]);
  776. $model->other_project_mark = $data['other_project_mark'] ?? '';
  777. $model->img = $data['img'] ?? '';
  778. $model->img1 = $data['img1'] ?? '';
  779. $model->img2 = $data['img2'] ?? '';
  780. $model->img3 = $data['img3'] ?? '';
  781. $model->save();
  782. return [true,'保存成功!'];
  783. }catch (\Throwable $e){
  784. return [true,'保存成功!'];
  785. }
  786. }
  787. public function deliveryNoteList($data)
  788. {
  789. $list = DeliveryNote::where('del_time',0);
  790. $list = $this->limit($list,'*',$data);
  791. return [true,$list];
  792. }
  793. public function deliveryNoteDetail($data){
  794. if(isset($data['id'])) $model = DeliveryNote::where('id',$data['id'])->where('del_time',0)->first();
  795. if(isset($data['construction_order_number'])) $model = DeliveryNote::where('id',$data['construction_order_number'])->where('del_time',0)->first();
  796. if(empty($model)) return [false,'数据不存在!'];
  797. $employee_key_list = Employee::pluck('emp_name','id')->toArray();
  798. $detail = $model->toArray();
  799. $detail['install_man_title'] = $employee_key_list[$detail['install_man']] ?? "";
  800. $detail['sale_man_title'] = $employee_key_list[$detail['sale_man']] ?? "";
  801. $img_list = ConstructionFile::where('order_number',$detail['construction_order_number'])->where('del_time',0)->select('file as url','name','mark')->get()->toArray();
  802. $detail['file'] = $img_list;
  803. return [true,$detail];
  804. }
  805. public function deliveryNoteDel($data,$user){
  806. DeliveryNote::where('id',$data['id'])->update(
  807. [
  808. 'del_time' => time(),
  809. 'upd_id' => $user['id'],
  810. ]
  811. );
  812. return [true,'删除成功!'];
  813. }
  814. }