Manufacture.php 58 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\controller\Api;
  4. use Monolog\Handler\IFTTTHandler;
  5. use Overtrue\Socialite\Providers\WeWorkProvider;
  6. use think\Db;
  7. use think\Request;
  8. use function fast\e;
  9. /**
  10. *
  11. * 生产排单管理
  12. */
  13. class Manufacture extends Api
  14. {
  15. protected $noNeedLogin = ['*'];
  16. protected $noNeedRight = ['*'];
  17. /**
  18. * 计划中工单
  19. * @ApiMethod (GET)
  20. * @return \think\response\Json
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\ModelNotFoundException
  23. * @throws \think\exception\DbException
  24. */
  25. public function Project()
  26. {
  27. if ($this->request->isGet() === false){
  28. $this->error('请求错误');
  29. }
  30. $param = $this->request->param();
  31. if (empty($param)){
  32. $this->error('参数错误');
  33. }
  34. if ($param['status'] === '计划中'){
  35. $status = '3-计划中';
  36. }else{
  37. $status = '1-已完工';
  38. }
  39. $page = 0;
  40. $limit = 15;
  41. if (isset($param['page'])){
  42. $page = $param['page'];
  43. }
  44. if (isset($param['limit'])){
  45. $limit = $param['limit'];
  46. }
  47. $where = [
  48. 'gd_statu' => $status,
  49. '行号' => '1',
  50. ];
  51. if (isset($param['search'])){
  52. $where['Gd_lx|Gd_gdbh|Gd_客户代号|Gd_客户名称|Gd_khdh|Gd_khmc|Gd_cpdh|Gd_cpmc|成品代号|成品名称|产品版本号'] = ['like','%'.$param['search'].'%'];
  53. }
  54. $field = 'rtrim(Gd_生产分类) as 生产分类,rtrim(Gd_gdbh) as 工单编号,rtrim(Gd_cpdh) as 产品代号,rtrim(Gd_cpmc) as 产品名称,rtrim(成品名称) as 成品名称,
  55. rtrim(接单日期) as 接单日期,rtrim(交货日期) as 交货日期,rtrim(订单数量) as 订单数量,rtrim(计量单位) as 计量单位,rtrim(Gd_khmc) as 客户名称,
  56. rtrim(Gd_客户代号) as 客户编号,rtrim(Gd_desc) as 备注,rtrim(客户料号) as 客户料号,rtrim(Sys_id) as 创建用户,rtrim(Sys_rq) as 创建时间,
  57. rtrim(Mod_rq) as 修改时间,rtrim(Uniqid) as UNIQID,rtrim(投料率) as 投料率,rtrim(销售订单号) as 销售订单号';
  58. $list = \db('工单_基本资料')->where($where)->field($field)->limit(($page-1)*$limit,$limit)->order('Uniqid desc')->select();
  59. $total = \db('工单_基本资料')->where($where)->count();
  60. if (empty($list)){
  61. $this->success('',[]);
  62. }
  63. foreach ($list as $key=>$value){
  64. $list[$key]['订单数量'] = rtrim((float)$value['订单数量']);
  65. $list[$key]['产品名称'] = $value['产品名称'] != '' ? $value['产品名称']:$value['成品名称'];
  66. $number = \db('工单_工艺资料')->where('Gy0_gdbh',$value['工单编号'])->count();
  67. if ($number === 0){
  68. $list[$key]['status'] = 0;
  69. }else{
  70. $list[$key]['status'] = 1;
  71. }
  72. unset($list[$key]['成品名称']);
  73. }
  74. $this->success('成功',['data'=>$list,'total'=>$total]);
  75. }
  76. /**
  77. * 计划中工单->工艺资料
  78. * @ApiMethod (GET)
  79. * @param string $Gd_gdbh 工单编号
  80. * @return \think\response\Json
  81. * @throws \think\db\exception\DataNotFoundException
  82. * @throws \think\db\exception\ModelNotFoundException
  83. * @throws \think\exception\DbException
  84. */
  85. public function projectCraft()
  86. {
  87. if ($this->request->isGet() === false){
  88. $this->error('请求错误');
  89. }
  90. $Gd_gdbh = input('Gd_gdbh');
  91. if (empty($Gd_gdbh)){
  92. $this->error('参数错误');
  93. }
  94. $where = [
  95. 'Gy0_gdbh' => $Gd_gdbh
  96. ];
  97. $filed = 'rtrim(Gy0_gdbh) as 工单编号,rtrim(重点工序) as 重点工序,Gy0_yjno,Gy0_gxh,Gy0_gxmc,Add_gxmc,rtrim(工序备注) as 工序备注,
  98. rtrim(Gy0_sbbh) as 机组,rtrim(Gy0_小时产能) as 小时产能,rtrim(Gy0_生产工时) as 生产工时,rtrim(Gy0_辅助工时) as 辅助工时,
  99. rtrim(印刷方式) as 印刷方式,rtrim(版距) as 版距,rtrim(Sys_id) as 创建用户,rtrim(Sys_rq) as 创建时间,rtrim(Mod_rq) as 修改时间,rtrim(UniqId) as UNIQID';
  100. $list = \db('工单_工艺资料')->where($where)->field($filed)->select();
  101. if (empty($list)){
  102. $this->success('',[]);
  103. }
  104. foreach ($list as $key=>$value){
  105. if ((int)$value['Gy0_yjno'] <10){
  106. $value['Gy0_yjno'] = '0'.rtrim($value['Gy0_yjno']);
  107. }
  108. if ((int)$value['Gy0_gxh'] <10){
  109. $value['Gy0_gxh'] = '0'.rtrim($value['Gy0_gxh']);
  110. }
  111. if (rtrim($value['Add_gxmc']) == ''){
  112. $list[$key]['印件工序及名称'] = $value['Gy0_yjno'].'-'.$value['Gy0_gxh'].'-->'.rtrim($value['Gy0_gxmc']);
  113. }else{
  114. $list[$key]['印件工序及名称'] = $value['Gy0_yjno'].'-'.$value['Gy0_gxh'].'-->'.rtrim($value['Gy0_gxmc']).'【'.rtrim($value['Add_gxmc']).'】';
  115. }
  116. unset($list[$key]['Gy0_gxmc'],$list[$key]['Add_gxmc']);
  117. }
  118. $this->success('成功',$list);
  119. }
  120. /**
  121. * 计划中工单->印件资料
  122. * @ApiMethod (GET)
  123. * @param string $Gd_gdbh 工单编号
  124. * @return \think\response\Json
  125. * @throws \think\db\exception\DataNotFoundException
  126. * @throws \think\db\exception\ModelNotFoundException
  127. * @throws \think\exception\DbException
  128. */
  129. public function projectPrint()
  130. {
  131. if ($this->request->isGet() === false){
  132. $this->error('请求错误');
  133. }
  134. $Gd_gdbh = input('Gd_gdbh');
  135. if (empty($Gd_gdbh)){
  136. $this->error('参数错误');
  137. }
  138. $where = [
  139. 'Yj_Gdbh' => $Gd_gdbh,
  140. ];
  141. $field = 'rtrim(Yj_Gdbh) as 工单编号,rtrim(yj_Yjno) as 印件号,rtrim(yj_Yjdh) as 印件代号,rtrim(yj_yjmc) as 印件名称,
  142. rtrim(yj_zzmc) as 纸张名称,rtrim(yj_tlgg) as 投料规格,rtrim(yj_成品数量) as 成品数量,rtrim(yj_实际投料) as 实际投料,
  143. rtrim(yj_Dw) as 投料单位,rtrim(yj_平张投料) as 平张投料,rtrim(yj_ls) as 联数,rtrim(yj_ks) as 开数,rtrim(Sys_id) as 创建用户,
  144. rtrim(Sys_rq) as 创建时间,rtrim(Mod_rq) as 修改时间,rtrim(Uniqid) as UNIQID';
  145. $list = \db('工单_印件资料')->where($where)->field($field)->select();
  146. if (empty($list)){
  147. $this->success('');
  148. }
  149. foreach ($list as $key=>$value){
  150. $list[$key]['成品数量'] = rtrim((float)$value['成品数量']);
  151. $list[$key]['实际投料'] = rtrim((float)$value['实际投料']);
  152. }
  153. $this->success('成功',$list);
  154. }
  155. /**
  156. * 排程中/制程中工单
  157. */
  158. public function Schedule(){
  159. if ($this->request->isGet() === false){
  160. $this->error('请求错误');
  161. }
  162. $param = $this->request->param();
  163. if (empty($param)){
  164. $this->error('参数错误');
  165. }
  166. $where = '';
  167. if (!empty($param['search'])){
  168. $where = "
  169. a.Gd_gdbh LIKE '%{$param['search']}%'
  170. OR a.`成品名称` LIKE '%{$param['search']}%'
  171. ";
  172. }
  173. if ($param['status'] === '排程中'){
  174. $list = db('工单_基本资料')->alias('a')
  175. ->field([
  176. 'rtrim(a.Gd_gdbh)' => '工单编号',
  177. 'rtrim(a.Gd_cpdh)' => '产品代号',
  178. 'rtrim(a.Gd_cpmc)' => '产品名称',
  179. 'rtrim(a.接单日期)' => '接单日期',
  180. 'rtrim(a.交货日期)' => '交货日期',
  181. 'rtrim(a.订单数量)' => '订单数量',
  182. 'rtrim(a.计量单位)' => '计量单位',
  183. 'rtrim(a.销售订单号)' => '销售订单号',
  184. 'rtrim(a.Gd_客户代号)' => '客户编号',
  185. 'rtrim(a.Gd_客户名称)' => '客户名称',
  186. 'rtrim(a.客户料号)' => '客户料号',
  187. 'rtrim(a.Uniqid)' => 'GDUID',
  188. ])
  189. ->join('工单_工艺资料 b', 'a.Gd_gdbh = b.Gy0_gdbh')
  190. ->where([
  191. 'a.gd_statu' => '2-生产中',
  192. 'a.行号' => '1',
  193. 'b.PD_WG' => '1900-01-01 00:00:00',
  194. ])
  195. ->where($where)
  196. // ->whereNotExists(function ($query) {
  197. // $query->table('工单_工艺资料')->alias('b2')
  198. // ->where('b2.Gy0_gdbh = a.Gd_gdbh')
  199. // ->where('b2.Gy0_sj1 <> "1900-01-01 00:00:00"');
  200. // })
  201. ->group('a.Gd_gdbh')
  202. ->select();
  203. }else{
  204. $list = db('工单_基本资料')->alias('a')
  205. ->field([
  206. 'rtrim(a.Gd_gdbh)' => '工单编号',
  207. 'rtrim(a.Gd_cpdh)' => '产品代号',
  208. 'rtrim(a.Gd_cpmc)' => '产品名称',
  209. 'rtrim(a.接单日期)' => '接单日期',
  210. 'rtrim(a.交货日期)' => '交货日期',
  211. 'rtrim(a.订单数量)' => '订单数量',
  212. 'rtrim(a.计量单位)' => '计量单位',
  213. 'rtrim(a.销售订单号)' => '销售订单号',
  214. 'rtrim(a.Gd_客户代号)' => '客户编号',
  215. 'rtrim(a.Gd_客户名称)' => '客户名称',
  216. 'rtrim(a.客户料号)' => '客户料号',
  217. 'rtrim(a.Uniqid)' => 'GDUID',
  218. ])
  219. ->join('工单_工艺资料 b', 'a.Gd_gdbh = b.Gy0_gdbh')
  220. ->where([
  221. 'a.gd_statu' => '2-生产中',
  222. 'a.行号' => '1',
  223. 'b.PD_WG' => '1900-01-01 00:00:00',
  224. 'b.Gy0_sj1' => ['<>', '1900-01-01 00:00:00'],
  225. ])
  226. ->where($where)
  227. ->group('a.Gd_gdbh')
  228. ->select();
  229. }
  230. if (empty($list)){
  231. $this->success('未找到工单信息');
  232. }
  233. $this->success('成功',$list);
  234. }
  235. /**
  236. * 排程中/制程中工单->工序列表
  237. * @ApiMethod (GET)
  238. * @param string $Gd_gdbh 工单编号
  239. * @return \think\response\Json
  240. * @throws \think\db\exception\DataNotFoundException
  241. * @throws \think\db\exception\ModelNotFoundException
  242. * @throws \think\exception\DbException
  243. */
  244. public function ScheduleProcess()
  245. {
  246. if ($this->request->isGet() === false){
  247. $this->error('请求错误');
  248. }
  249. $Gd_gdbh = input('Gd_gdbh');
  250. if (empty($Gd_gdbh)){
  251. $this->error('参数错误');
  252. }
  253. $sql = "SELECT rtrim(a.Gy0_gdbh) as 工单编号,a.Gy0_yjno,a.Gy0_gxh,a.Gy0_gxmc,a.Add_gxmc,rtrim(a.Gy0_sbbh) as 设备编号,rtrim(a.Gy0_小时产能) as 小时产能,
  254. rtrim(a.工价系数) as 产能系数,rtrim(a.Gy0_生产工时) as 生产工时,rtrim(a.Gy0_辅助工时) as 辅助工时,rtrim(a.Gy0_最早开工时间) as 最早开工时间,
  255. rtrim(a.Gy0_sj1) as 计划开工时间,rtrim(a.Gy0_sj2) as 计划完工时间,rtrim(a.Gy0_班次安排) as 班次安排,rtrim(a.工序备注) as 排单备注,
  256. rtrim(a.PD_WG) as 工序完工,rtrim(a.UniqId) as UniqId,COALESCE(b.cl, 0) AS 产量, c.设备名称,rtrim(d.计划投料) as 工序产量
  257. FROM `工单_工艺资料` AS a
  258. JOIN `设备_基本资料` AS c ON a.Gy0_sbbh = c.设备编号
  259. JOIN `工单_基本资料` As d ON a.Gy0_gdbh = d.Gd_Gdbh
  260. LEFT JOIN (
  261. SELECT sczl_gdbh, sczl_gxh, SUM(sczl_cl) AS cl
  262. FROM `设备_产量计酬`
  263. GROUP BY sczl_gdbh, sczl_gxh
  264. ) AS b ON a.Gy0_gdbh = b.sczl_gdbh AND (a.Gy0_gxh = b.sczl_gxh OR b.sczl_gxh IS NULL)
  265. WHERE a.Gy0_gdbh = '{$Gd_gdbh}' AND a.Gy0_sbbh != ''
  266. GROUP BY a.Gy0_yjno,a.Gy0_gxh";
  267. $list = Db::query($sql);
  268. if (empty($list)){
  269. $this->success('未找到工序');
  270. }
  271. foreach ($list as $key=>$value){
  272. if ((int)$value['Gy0_yjno'] <10){
  273. $value['Gy0_yjno'] = '0'.rtrim($value['Gy0_yjno']);
  274. }
  275. if ((int)$value['Gy0_gxh'] <10){
  276. $value['Gy0_gxh'] = '0'.rtrim($value['Gy0_gxh']);
  277. }
  278. if (rtrim($value['Add_gxmc']) == ''){
  279. $list[$key]['印件工序及名称'] = $value['Gy0_yjno'].'-'.$value['Gy0_gxh'].'-->'.rtrim($value['Gy0_gxmc']);
  280. }else{
  281. $list[$key]['印件工序及名称'] = $value['Gy0_yjno'].'-'.$value['Gy0_gxh'].'-->'.rtrim($value['Gy0_gxmc']).'【'.rtrim($value['Add_gxmc']).'】';
  282. }
  283. unset($list[$key]['Gy0_gxmc'],$list[$key]['Add_gxmc']);
  284. $list[$key]['机组'] = $value['设备编号'];
  285. $list[$key]['剩余产量'] = (int)$list[$key]['工序产量']-(int)$list[$key]['产量'];
  286. }
  287. $this->success('成功',$list);
  288. }
  289. /**
  290. * 排单页面左侧车间和机台菜单
  291. * @ApiMethod (GET)
  292. * @return \think\response\Json
  293. * @throws \think\db\exception\DataNotFoundException
  294. * @throws \think\db\exception\ModelNotFoundException
  295. * @throws \think\exception\DbException
  296. */
  297. public function workbench()
  298. {
  299. if ($this->request->isGet() === false){
  300. $this->error('请求错误');
  301. }
  302. $param = $this->request->param();
  303. if (isset($param['sort'])){
  304. $where['使用部门'] = '智能车间';
  305. }else{
  306. $where['使用部门'] = ['in',['印刷车间','印后车间']];
  307. }
  308. $data = [];
  309. $department = \db('设备_基本资料')
  310. ->distinct(true)
  311. ->where('使用部门','<>','研发中心')
  312. ->where('设备编组','<>','')
  313. ->where($where)
  314. ->order('设备编组')
  315. ->column('使用部门');
  316. if (empty($department)){
  317. $this->success('为获取到机台数据');
  318. }
  319. foreach ($department as $value){
  320. $benchClass = \db('设备_基本资料')->where('使用部门',$value)->distinct(true)->order('设备编组')->column('设备编组');
  321. foreach ($benchClass as $v){
  322. if (rtrim($v) !== ''){
  323. $machine = \db('设备_基本资料')->where('使用部门',$value)->where('设备编组',$v)->field('rtrim(设备编号) as 设备编号,rtrim(设备名称) as 设备名称')->select();
  324. foreach ($machine as $kk=>$vv){
  325. $data[rtrim($value)][rtrim($v)][$kk] = $vv['设备编号'].'-->'.$vv['设备名称'];
  326. }
  327. }
  328. }
  329. }
  330. $this->success('成功',$data);
  331. }
  332. /**
  333. * 工单状态设置
  334. * @ApiMethod (GET)
  335. * @param string $workOrder 工单编号
  336. * @param string $status 工单状态
  337. * @return void
  338. * @throws \think\Exception
  339. * @throws \think\exception\PDOException
  340. */
  341. public function StatusEdit()
  342. {
  343. if (Request::instance()->isPost() === false){
  344. $this->error('请求错误');
  345. }
  346. $workOrder = input('workOrder');
  347. $status = input('status');
  348. if (empty($workOrder) || empty($status)){
  349. $this->error('参数错误');
  350. }
  351. $sql = \db('工单_基本资料')->where('Gd_gdbh',$workOrder)->fetchSql(true)->update(['gd_statu'=>$status]);
  352. $res = Db::query($sql);
  353. if ($res !== false){
  354. $this->success('成功');
  355. }else{
  356. $this->error('失败');
  357. }
  358. }
  359. /**
  360. * 更改工序状态
  361. * @ApiMethod (GET)
  362. * @param void
  363. * @return void
  364. * @throws \think\Exception
  365. * @throws \think\exception\PDOException
  366. */
  367. public function complete()
  368. {
  369. if ($this->request->isGet() === false){
  370. $this->error('请求错误');
  371. }
  372. $data = $this->request->param();
  373. if (empty($data)){
  374. $this->error('参数错误');
  375. }
  376. $where = [
  377. 'Gy0_gdbh' => $data['workOrder'],
  378. 'Gy0_gxh' => $data['processCode']
  379. ];
  380. $sql = \db('工单_工艺资料')->where($where)->fetchSql(true)->update(['PD_WG'=>date('Y-m-d H:i:s',time())]);
  381. $res = Db::query($sql);
  382. if ($res !== false){
  383. $this->success('成功');
  384. }else{
  385. $this->error('失败');
  386. }
  387. }
  388. /**
  389. * 加入排产
  390. * @ApiMethod (POST)
  391. * @param void $data
  392. * @return void
  393. * @throws \think\Exception
  394. * @throws \think\db\exception\DataNotFoundException
  395. * @throws \think\db\exception\ModelNotFoundException
  396. * @throws \think\exception\DbException
  397. * @throws \think\exception\PDOException
  398. */
  399. public function ProductionSchedulingAdd()
  400. {
  401. if (Request::instance()->isPost() === false){
  402. $this->error('请求错误');
  403. }
  404. $data = Request::instance()->post();
  405. if (empty($data)){
  406. $this->error('参数错误');
  407. }
  408. $where = [
  409. 'Gy0_gdbh' => $data['workOrder'],
  410. 'Gy0_sbbh' => ['like','%'.$data['machine'].'%'],
  411. 'Gy0_yjno' => $data['printCode'],
  412. 'Gy0_gxh' => $data['processCode']
  413. ];
  414. $result = \db('工单_工艺资料')->where($where)->field('rtrim(Gy0_sj1) as sj1')->find();
  415. if ($result['sj1'] != '1900-01-01 00:00:00'){
  416. $this->error('该工单已经是制程中');
  417. }
  418. $lastTime = \db('工单_工艺资料')
  419. ->where(['Gy0_sbbh'=>$where['Gy0_sbbh'],'Gy0_sj2'=>['<>','1900-01-01 00:00:00'],'Gy0_sj2'=>['<','2099-01-01 00:00:00']])
  420. ->field('rtrim(Gy0_sj2) as sj2')
  421. ->order('Gy0_sj2 desc')
  422. ->find();
  423. $date = date('Y-m-d H:i:s',time());
  424. if ($lastTime['sj2'] < $date){
  425. $newTime = $date;
  426. }else{
  427. $newTime = $lastTime['sj2'];
  428. }
  429. $row = \db('工单_工艺资料')
  430. ->where($where)
  431. ->field('rtrim(Gy0_计划接货数) as 计划接货数,rtrim(Gy0_小时产能) as 小时产能,rtrim(Gy0_辅助工时) as 辅助工时')
  432. ->find();
  433. if (empty($row)){
  434. $this->success('未找到该工单工艺资料');
  435. }
  436. $endTime = date('Y-m-d H:i:s',strtotime($newTime) + ((int)round($row['计划接货数']/$row['小时产能'])+(int)$row['辅助工时'])*3600);
  437. $sql = \db('工单_工艺资料')
  438. ->where($where)
  439. ->fetchSql(true)
  440. ->update(['Gy0_sj1'=>$newTime,'Gy0_sj2'=>$endTime,'Mod_rq'=>date('Y-m-d H:i:s',time())]);
  441. $res = Db::query($sql);
  442. if ($res !== false){
  443. $this->success('成功');
  444. }else{
  445. $this->error('失败');
  446. }
  447. }
  448. /**
  449. * 暂停排产
  450. * @ApiMethod (POST)
  451. * @param void $data
  452. * @return void
  453. * @throws \think\Exception
  454. * @throws \think\db\exception\DataNotFoundException
  455. * @throws \think\db\exception\ModelNotFoundException
  456. * @throws \think\exception\DbException
  457. * @throws \think\exception\PDOException
  458. */
  459. public function ProductionSchedulingPause()
  460. {
  461. if (Request::instance()->isPost() === false){
  462. $this->error('请求错误');
  463. }
  464. $data = Request::instance()->post();
  465. if (empty($data)){
  466. $this->error('参数错误');
  467. }
  468. $where = [
  469. 'Gy0_gdbh' => $data['workOrder'],
  470. 'Gy0_sbbh' => ['like','%'.$data['machine'].'%'],
  471. 'Gy0_yjno' => $data['printCode'],
  472. 'Gy0_gxh' => $data['processCode']
  473. ];
  474. $machine = $data['machine'];
  475. $endTime = \db('工单_工艺资料')->where($where)->field('rtrim(Gy0_sj2) as sj2,rtrim(PD_WG) as wg')->find();
  476. if (empty($endTime)){
  477. $this->success('未找到该工序');
  478. }
  479. $time = $endTime['sj2'];
  480. if ($endTime['sj2'] == '1900-01-01 00:00:00' || $endTime['wg'] != '1900-01-01 00:00:00'){
  481. $this->error('该工单不是制程中工单');
  482. }
  483. $sql = \db('工单_工艺资料')
  484. ->where($where)
  485. ->fetchSql(true)
  486. ->update(['Gy0_sj1'=>'1900-01-01 00:00:00','Gy0_sj2'=>'1900-01-01 00:00:00','Mod_rq'=>date('Y-m-d H:i:s')]);
  487. $row = \db('工单_工艺资料')
  488. ->where($where)
  489. ->field('rtrim(Gy0_计划接货数) as 计划接货数,rtrim(Gy0_小时产能) as 小时产能,rtrim(Gy0_辅助工时) as 辅助工时')
  490. ->find();
  491. if (empty($row)){
  492. $this->success('未找到该工序');
  493. }
  494. $number = -(int)round($row['计划接货数']/$row['小时产能'])+(int)$row['辅助工时'];
  495. $rechSql = "UPDATE `工单_工艺资料` SET Gy0_sj1 = DATE_ADD(Gy0_sj1, INTERVAL {$number} HOUR),Gy0_sj2 = DATE_ADD(Gy0_sj2, INTERVAL {$number} HOUR) WHERE Gy0_sbbh LIKE '%{$machine}%' AND Gy0_sj1 >= '{$time}' AND Gy0_sj1 < '2099-01-01 00:00:00'";
  496. $rechres = Db::query($rechSql);
  497. $res = Db::query($sql);
  498. if ($res !== false && $rechres !== false){
  499. $this->success('成功');
  500. }else{
  501. $this->error('失败');
  502. }
  503. }
  504. /**
  505. * 工序状态更正
  506. * @ApiMethod (GET)
  507. * @param void $param
  508. * @return void
  509. * @throws \think\db\exception\DataNotFoundException
  510. * @throws \think\db\exception\ModelNotFoundException
  511. * @throws \think\exception\DbException
  512. */
  513. public function ProcessStatusCorrection()
  514. {
  515. if ($this->request->isGet() === false){
  516. $this->error('请求错误');
  517. }
  518. $param = $this->request->param();
  519. if (empty($param)){
  520. $this->error('参数错误');
  521. }
  522. $where = [
  523. 'Gy0_gdbh' => $param['workOrder'],
  524. ];
  525. $workOrder = $where['Gy0_gdbh'];
  526. $field = 'rtrim(Gy0_yjno) as yjno,rtrim(Gy0_gxh) as gxh,rtrim(Gy0_gxmc) as gxmc,rtrim(Gy0_sbbh) as 设备代号,rtrim(Gy0_计划接货数) as 计划接货数,rtrim(Gy0_ls) as ls,rtrim(PD_WG) as 完工时间,rtrim(UniqId) as UniqId';
  527. $list = \db('工单_工艺资料')->where($where)->field($field)->order('Gy0_yjno,Gy0_gxh')->select();
  528. if (empty($list)){
  529. $this->success('未找到该工单工艺资料');
  530. }
  531. $yieldSql = "SELECT
  532. a.Gy0_yjno AS yjno,
  533. a.Gy0_gxh AS gxh,
  534. SUM( b.sczl_cl ) AS cl
  535. FROM
  536. `工单_工艺资料` AS a
  537. JOIN `设备_产量计酬` AS b ON a.Gy0_gxh = b.sczl_gxh AND a.Gy0_yjno = b.sczl_yjno
  538. WHERE
  539. a.Gy0_gdbh = '{$workOrder}'
  540. GROUP BY
  541. a.Gy0_yjno,a.Gy0_gxh";
  542. $yield = Db::query($yieldSql);
  543. foreach ($list as $key=>$value){
  544. if ($value['yjno']<10){
  545. $value['yjno'] = '0'.$value['yjno'];
  546. }
  547. if ($value['gxh']<10){
  548. $value['gxh'] = '0'.$value['gxh'];
  549. }
  550. $list[$key]['印件及工序'] = $value['yjno'].'-'.$value['gxh'].'-->'.$value['gxmc'];
  551. foreach ($yield as $k=>$v){
  552. if ($v['yjno'] === $list[$key]['yjno']) {
  553. if ($v['gxh'] === $list[$key]['gxh']){
  554. $list[$key]['计划产量/已完成'] = (int)$value['计划接货数'] . '/' . $v['cl'];
  555. if ($value['计划接货数'] !== 0 && $value['计划接货数'] !== '' && !empty($value['计划接货数'])) {
  556. $num = (float)number_format(intval($v['cl']) / intval($value['计划接货数']), 4);
  557. $list[$key]['完成率'] = $num * 100 . '%';
  558. } else {
  559. $list[$key]['完成率'] = '';
  560. }
  561. }else{
  562. $list[$key]['计划产量/已完成'] = $value['计划接货数'].'/0';
  563. $list[$key]['完成率'] = '';
  564. }
  565. }
  566. }
  567. if ($value['完工时间'] == '1900-01-01 00:00:00') {
  568. $list[$key]['完工时间'] = '';
  569. }
  570. unset($list[$key]['yjno'],$list[$key]['gxh'],$list[$key]['gxmc'],$list[$key]['计划接货数'],$list[$key]['ls']);
  571. }
  572. $this->success('成功',$list);
  573. }
  574. /**
  575. * 工序状态更正->工序状态编辑
  576. * @ApiMethod (POST)
  577. * @param void
  578. * @return void
  579. * @throws \think\Exception
  580. * @throws \think\exception\PDOException
  581. */
  582. public function ProcessStatusCorrectionEdit()
  583. {
  584. if (Request::instance()->isPost() === false){
  585. $this->error('请求错误');
  586. }
  587. $param = Request::instance()->post();
  588. if (empty($param)){
  589. $this->error('参数错误');
  590. }
  591. $i = 0;
  592. foreach ($param as $key=>$value){
  593. if ($value['PD_WG'] === null || $value['PD_WG'] === ''){
  594. $endTime = '1900-01-01 00:00:00';
  595. }else{
  596. $endTime = $value['PD_WG'];
  597. }
  598. $sql = \db('工单_工艺资料')
  599. ->where('UniqId',$value['UniqId'])
  600. ->fetchSql(true)
  601. ->update(['PD_WG'=>$endTime]);
  602. $res = Db::query($sql);
  603. if ($res !== false){
  604. $i++;
  605. }
  606. }
  607. if ($i !== 0){
  608. $this->success('成功');
  609. }else{
  610. $this->error('失败');
  611. }
  612. }
  613. /**
  614. * 班次选择
  615. * @ApiMethod (GET)
  616. * @return void
  617. * @throws \think\db\exception\DataNotFoundException
  618. * @throws \think\db\exception\ModelNotFoundException
  619. * @throws \think\exception\DbException
  620. */
  621. public function ScheduleSelection()
  622. {
  623. if ($this->request->isGet() === false){
  624. $this->error('请求错误');
  625. }
  626. $list = \db('工单_排程班次')->field('rtrim(bcdh) as 班次代号,rtrim(desc_) as desc_,rtrim(stdtime) as stdtime')->select();
  627. if (empty($list)){
  628. $this->success('未找到班次数据');
  629. }
  630. foreach ($list as $key=>$value){
  631. $list[$key]['detail'] = $value['班次代号'].'||'.$value['desc_'].'||'.$value['stdtime'];
  632. unset($list[$key]['desc_'],$list[$key]['stdtime']);
  633. }
  634. $this->success('成功',$list);
  635. }
  636. /**
  637. * 车间设备制程展示
  638. * @ApiMethod (GET)
  639. * @param void $param
  640. * @return void
  641. * @throws \think\db\exception\DataNotFoundException
  642. * @throws \think\db\exception\ModelNotFoundException
  643. * @throws \think\exception\DbException
  644. */
  645. public function EquipmentScheduling()
  646. {
  647. if ($this->request->isGet() === false){
  648. $this->error('参数错误');
  649. }
  650. $param = $this->request->param();
  651. if (empty($param)){
  652. $this->error('参数错误');
  653. }
  654. $machine = $param['machine'];
  655. $list = \db('工单_基本资料')
  656. ->alias('a')
  657. ->field([
  658. 'rtrim(b.Gy0_gdbh)' => '工单编号',
  659. 'rtrim(b.Gy0_计划接货数)' => '计划接货数',
  660. 'rtrim(b.Gy0_小时产能)' => '小时产能',
  661. 'rtrim(b.Gy0_生产工时)' => '生产工时',
  662. 'rtrim(b.Gy0_辅助工时)' => '辅助工时',
  663. 'rtrim(b.Gy0_班次安排)' => '班次安排',
  664. 'rtrim(b.工序备注)' => '排单备注',
  665. 'rtrim(b.Gy0_最早开工时间)' => '最早开工时间',
  666. 'rtrim(b.Gy0_sj1)' => '计划开工时间',
  667. 'rtrim(b.Gy0_sj2)' => '计划完工时间',
  668. 'rtrim(b.Gy0_yjno)' => 'yjno',
  669. 'rtrim(b.Gy0_gxh)' => 'gxh',
  670. 'rtrim(b.Gy0_gxmc)' => 'gxmc',
  671. 'rtrim(b.Gy0_ls)' => 'ls',
  672. 'rtrim(b.UniqId)' => 'UniqId',
  673. 'SUM(c.sczl_cl)' => '已完成'
  674. ])
  675. ->join('工单_工艺资料 b','a.Gd_gdbh = b.Gy0_gdbh')
  676. ->join('设备_产量计酬 c','a.Gd_gdbh = c.sczl_gdbh AND b.Gy0_yjno = c.sczl_yjno AND b.Gy0_gxh = c.sczl_gxh','LEFT')
  677. ->where([
  678. 'b.Gy0_sbbh' => $machine,
  679. 'b.Gy0_sj1' => ['>','1900-01-01 00:00:00'],
  680. 'b.PD_WG' => '1900-01-01 00:00:00',
  681. 'a.gd_statu' => '2-生产中'
  682. ])
  683. ->where('b.Gy0_sj1','<','2099-01-01 00:00:00')
  684. ->group('a.Gd_gdbh')
  685. ->select();
  686. foreach ($list as $key=>$value){
  687. $list[$key]['计划接货数'] = (int)round($value['计划接货数']/$value['ls']);
  688. if ($value['yjno']<10){
  689. $value['yjno'] = '0'.$value['yjno'];
  690. }
  691. if ($value['gxh']<10){
  692. $value['gxh'] = '0'.$value['gxh'];
  693. }
  694. $list[$key]['印件/工序'] = $value['yjno'].'-'.$value['gxh'].'-'.$value['gxmc'];
  695. unset($list[$key]['yjno'],$list[$key]['gxh'],$list[$key]['gxmc'],$list[$key]['ls']);
  696. }
  697. $this->success('成功',$list);
  698. }
  699. /**
  700. * 车间设备排程编辑
  701. * @ApiMethod (POST)
  702. * @param void $param
  703. * @return void
  704. * @throws \think\Exception
  705. * @throws \think\exception\PDOException
  706. */
  707. public function EquipmentSchedulingEdit()
  708. {
  709. if (Request::instance()->isPost() === false){
  710. $this->error('请求错误');
  711. }
  712. $param = Request::instance()->post();
  713. if (empty($param)){
  714. $this->error('参数错误');
  715. }
  716. $i = 0;
  717. foreach ($param as $key=>$value){
  718. $data = [
  719. 'Gy0_小时产能' => $value['capacity'],
  720. 'Gy0_生产工时' => $value['ProductionHours'],
  721. 'Gy0_辅助工时' => $value['AuxiliaryHours'],
  722. 'Gy0_班次安排' => $value['shift'],
  723. '工序备注' => $value['remark'],
  724. 'Gy0_最早开工时间' => $value['start'] === ''?'1900-01-01 00:00:00':date('Y-m-d H:i:s',strtotime($value['start'])),
  725. 'Gy0_sj1' => date('Y-m-d H:i:s',strtotime($value['projectTime'])),
  726. // 'Gy0_sj2' => date('Y-m-d H:i:s',strtotime($value['projectTime'])+(ceil($value['ProductionHours'])+ceil($value['AuxiliaryHours']))*3600),
  727. 'Gy0_sj2' => date('Y-m-d H:i:s',strtotime($value['endTime'])),
  728. ];
  729. $sql = \db('工单_工艺资料')
  730. ->where('UniqId',$value['UniqId'])
  731. ->fetchSql(true)
  732. ->update($data);
  733. $res = Db::query($sql);
  734. if ($res !== false){
  735. $i++;
  736. }
  737. }
  738. if ($i !== 0){
  739. $this->success('成功');
  740. }else{
  741. $this->error('失败');
  742. }
  743. }
  744. /**
  745. * 机台工单展示
  746. * @ApiMethod ()
  747. * @return void
  748. * @throws \think\db\exception\BindParamException
  749. * @throws \think\exception\PDOException
  750. */
  751. public function MachineWorkOrderList()
  752. {
  753. if ($this->request->isGet() === false){
  754. $this->error('请求失败');
  755. }
  756. $param = $this->request->param();
  757. if (empty($param)){
  758. $this->error('参数错误');
  759. }
  760. $where = '';
  761. if (isset($param['search'])){
  762. $where = "
  763. b.Gd_gdbh LIKE '%{$param['search']}%'
  764. OR b.`成品名称` LIKE '%{$param['search']}%'
  765. ";
  766. }
  767. $list = \db('工单_工艺资料')
  768. ->alias('a')
  769. ->field([
  770. 'RTRIM( a.Gy0_yjno )' =>'yjno',
  771. 'RTRIM( a.Gy0_gxh )' => 'gxh',
  772. 'RTRIM( a.Gy0_gxmc )' => 'gxmc',
  773. 'RTRIM( a.Add_gxmc )' => 'Add_gxmc',
  774. 'RTRIM( c.yj_yjmc )' => '印件名称',
  775. 'RTRIM( a.`Gy0_计划接货数` )' => '计划接货数',
  776. 'RTRIM( a.`Gy0_小时产能` )' => '小时产能',
  777. 'RTRIM( a.`工价系数` )' => '产能系数',
  778. 'RTRIM( a.`Gy0_生产工时` )' => '生产工时',
  779. 'RTRIM( a.Gy0_ls )' => 'ls',
  780. 'RTRIM( a.`Gy0_辅助工时` )' => '辅助工时',
  781. 'RTRIM( a.`Gy0_最早开工时间` )' => '最早开工时间',
  782. 'RTRIM( a.Gy0_sj1 )' => '计划开工时间',
  783. 'RTRIM( a.Gy0_sj2 )' => '计划完工时间',
  784. 'RTRIM( a.`Gy0_班次安排` )' => '班次安排',
  785. 'RTRIM( a.`工序备注` )' => '排单备注',
  786. 'RTRIM( b.Gd_cpmc )' => '产品名称',
  787. 'RTRIM( b.`成品名称` )' => '成品名称',
  788. 'RTRIM( b.`订单数量` )' => '订单数量',
  789. 'RTRIM( b.`计量单位` )' => '计量单位',
  790. 'RTRIM( b.`交货日期` )' => '交货日期',
  791. 'RTRIM( b.Gd_cpdh )' => '产品代号',
  792. 'RTRIM( b.`成品代号` )' => '成品代号',
  793. 'RTRIM( a.Gy0_sbbh )' => '设备编号',
  794. 'RTRIM( a.Gy0_SITE )' => '车间名称',
  795. 'RTRIM( a.UniqId )' => 'GYUID',
  796. 'RTRIM( b.Uniqid )' => 'UNIQID',
  797. 'SUM( d.sczl_cl )' => '已完成产量',
  798. 'RTRIM( b.Gd_gdbh )' => '工单编号',
  799. 'RTRIM( b.`销售订单号` )' => '销售订单号',
  800. ])
  801. ->join('工单_印件资料 c','c.Yj_Gdbh = a.Gy0_gdbh AND c.yj_Yjno = a.Gy0_yjno')
  802. ->join('工单_基本资料 b','b.Gd_gdbh = a.Gy0_gdbh')
  803. ->join('设备_产量计酬 d','a.Gy0_gdbh = d.sczl_gdbh AND a.Gy0_yjno = d.sczl_yjno AND a.Gy0_gxh = d.sczl_gxh AND a.Gy0_sbbh = d.sczl_jtbh','LEFT')
  804. ->where([
  805. 'b.gd_statu' => '2-生产中',
  806. 'a.Gy0_sbbh' => ['LIKE','%'.$param['machine'].'%'],
  807. 'a.PD_WG' => '1900-01-01 00:00:00',
  808. ])
  809. ->where($where)
  810. ->group('a.Gy0_gdbh,a.Gy0_yjno,a.Gy0_gxh')
  811. ->order('Gy0_sj1')
  812. ->select();
  813. if (empty($list)){
  814. $this->success('',[]);
  815. }
  816. $data['制程'] = $data['排程'] = [];
  817. foreach ($list as $key=>$value){
  818. $list[$key]['设备编号'] = $param['machine'];
  819. if ((int)$value['yjno'] <10){
  820. $value['yjno'] = '0'.rtrim($value['yjno']);
  821. }
  822. if ((int)$value['gxh'] <10){
  823. $value['gxh'] = '0'.rtrim($value['gxh']);
  824. }
  825. if (rtrim($value['Add_gxmc']) == ''){
  826. $list[$key]['印件工序及名称'] = $value['yjno'].'-'.$value['gxh'].'-->'.rtrim($value['gxmc']);
  827. }else{
  828. $list[$key]['印件工序及名称'] = $value['yjno'].'-'.$value['gxh'].'-->'.rtrim($value['gxmc']).'【'.rtrim($value['Add_gxmc']).'】';
  829. }
  830. unset($list[$key]['Add_gxmc']);
  831. if ($value['产品名称'] == ''){
  832. $list[$key]['产品名称'] = $value['成品名称'];
  833. }
  834. if ($value['产品代号'] == ''){
  835. $list[$key]['产品代号'] = $value['成品代号'];
  836. }
  837. unset($list[$key]['成品代号'],$list[$key]['成品名称']);
  838. if ($list[$key]['计划开工时间'] !== '1900-01-01 00:00:00'){
  839. array_push($data['制程'],$list[$key]);
  840. }else{
  841. array_push($data['排程'],$list[$key]);
  842. }
  843. }
  844. $this->success('成功',$data);
  845. }
  846. /**
  847. * 机组调整
  848. * @return void
  849. * @throws \think\Exception
  850. * @throws \think\db\exception\BindParamException
  851. * @throws \think\exception\PDOException
  852. */
  853. public function MachineTeamEdit()
  854. {
  855. if ($this->request->isGet() === false){
  856. $this->error('请求错误');
  857. }
  858. $param = $this->request->param();
  859. if (empty($param) || isset($param['UniqId']) === false){
  860. $this->error('参数错误');
  861. }
  862. $sql = \db('工单_工艺资料')
  863. ->where('UniqId',$param['UniqId'])
  864. ->fetchSql(true)
  865. ->update(['Gy0_sbbh'=>$param['machine']]);
  866. $res = \db()->query($sql);
  867. if ($res !== false){
  868. $this->success('修改成功');
  869. }else{
  870. $this->error('修改失败');
  871. }
  872. }
  873. /**
  874. * 子订单领料派单
  875. * @return void
  876. * @throws \think\db\exception\BindParamException
  877. * @throws \think\exception\PDOException
  878. */
  879. public function processAdd()
  880. {
  881. if (Request::instance()->post() === false){
  882. $this->error('参数错误');
  883. }
  884. $param = Request::instance()->post();
  885. if (empty($param)){
  886. $this->error('参数错误');
  887. }
  888. $data['班组编号'] = $param['班组'];
  889. $data['订单编号'] = $param['订单编号'];
  890. $data['子订单编号'] = $param['子订单编号'];
  891. $data['sys_id'] = $param['Sys_id'];
  892. $data['sys_rq'] = date('Y-m-d H:i:s',time());
  893. $sql = \db('工单_排程班次')->fetchSql(true)->insert($data);
  894. $res = \db()->query($sql);
  895. if ($res !== false){
  896. $this->success('成功');
  897. }else{
  898. $this->error('失败');
  899. }
  900. }
  901. /**
  902. * 月度车间报工汇总-菜单显示
  903. */
  904. public function MachineList() {
  905. // 检查请求是否为 GET
  906. if (!$this->request->isGet()) {
  907. $this->error('请求错误');
  908. }
  909. // 定义要查询的生产工序及排序顺序
  910. $processList = ['裁剪', '车缝', '手工', '大烫', '总检', '包装'];
  911. // 查询所有数据
  912. $results = \db('设备_产量计酬')
  913. ->alias('a')
  914. ->join('设备_基本资料 b', 'a.sczl_jtbh = b.设备编号')
  915. ->field([
  916. 'DATE_FORMAT(a.sczl_rq, "%Y-%m-%d")' => '时间', // 转化为 "YYYY-MM-DD" 格式
  917. 'DATE_FORMAT(a.sczl_rq, "%Y-%m")' => '年月', // 转化为 "YYYY-MM" 格式
  918. 'RTRIM(a.sczl_jtbh)' => '机台编号',
  919. 'b.设备编号',
  920. 'b.设备编组',
  921. 'b.生产工序'
  922. ])
  923. ->whereNull('a.mod_rq') // 筛选无修改日期的数据
  924. ->whereIn('b.生产工序', $processList) // 筛选指定的生产工序
  925. ->order('a.sczl_rq ASC') // 按时间升序排序
  926. ->select();
  927. // 初始化按年月分组的结果
  928. $formattedData = [];
  929. // 遍历查询结果并分组
  930. foreach ($results as $row) {
  931. $yearMonth = $row['年月']; // 获取年月 "YYYY-MM"
  932. $monthDay = substr($row['时间'], 5, 5); // 获取月份和日期 "MM-DD"
  933. $process = $row['生产工序'];
  934. $machineKey = $row['设备编号'] . '--' . $row['设备编组'];
  935. // 初始化年份和工序结构
  936. if (!isset($formattedData[$yearMonth])) {
  937. $formattedData[$yearMonth] = array_fill_keys($processList, []); // 初始化月份,所有工序为空数组
  938. }
  939. if (!isset($formattedData[$yearMonth][$process][$machineKey])) {
  940. $formattedData[$yearMonth][$process][$machineKey] = [];
  941. }
  942. // 添加日期,避免重复
  943. if (!in_array($monthDay, $formattedData[$yearMonth][$process][$machineKey])) {
  944. $formattedData[$yearMonth][$process][$machineKey][] = $monthDay;
  945. }
  946. }
  947. // 对年份和月份进行排序(按年月降序排序)
  948. krsort($formattedData);
  949. // 按生产工序排序
  950. foreach ($formattedData as $yearMonth => &$processData) {
  951. // 确保每个月的工序顺序符合 $processList(即使为空也保留顺序)
  952. $sortedProcessData = array_fill_keys($processList, []);
  953. // 合并原有数据
  954. foreach ($processData as $process => $machines) {
  955. $sortedProcessData[$process] = $machines;
  956. }
  957. // 更新排序后的数据
  958. $processData = $sortedProcessData;
  959. // 对每组内的设备日期倒序排列
  960. foreach ($processData as $process => &$machines) {
  961. foreach ($machines as $machineKey => &$dates) {
  962. rsort($dates); // 每台设备的日期倒序排序
  963. }
  964. }
  965. }
  966. // 返回成功结果
  967. $this->success('成功', $formattedData);
  968. }
  969. /**
  970. * 月度车间报工汇总-列表数据
  971. */
  972. public function MachineDetail()
  973. {
  974. if ($this->request->isGet() === false) {$this->error('请求错误');}
  975. $param = $this->request->param();
  976. if (empty($param)) {$this->error('参数错误');}
  977. $where = [];
  978. // 获取当前年份
  979. $currentYear = date('Y');
  980. // 处理日期参数(可选)
  981. if (!empty($param['date'])) {
  982. // 检查 `date` 的格式是否为 "YYYY-MM"、"MM-DD" 或仅为月份 "MM"
  983. if (preg_match('/^\d{4}-\d{2}$/', $param['date'])) {
  984. // 如果格式为 "YYYY-MM",查询当月数据
  985. $where['a.sys_rq'] = ['like', "{$param['date']}%"];
  986. } elseif (preg_match('/^\d{2}-\d{2}$/', $param['date'])) {
  987. // 如果格式为 "MM-DD",查询指定的月份和日期
  988. $monthDay = $param['date'];
  989. $where['a.sys_rq'] = ['like', "%-$monthDay%"];
  990. } elseif (preg_match('/^\d{2}$/', $param['date'])) {
  991. // 如果格式为 "MM"(仅月份),自动补全为 "YYYY-MM"
  992. $where['a.sys_rq'] = ['like', "{$currentYear}-{$param['date']}%"];
  993. }
  994. }
  995. // 判断是否传入订单编号参数(可选)
  996. if (!empty($param['order'])) {
  997. $where['b.订单编号|b.款号'] = ['like', '%' . $param['order'] . '%'];
  998. }
  999. // 处理机台号参数(可选)
  1000. if (!empty($param['machine'])) {
  1001. $where['a.sczl_jtbh'] = $param['machine'];
  1002. }
  1003. // 查询数据
  1004. $list = \db('设备_产量计酬')->alias('a')
  1005. ->join('工单_印件资料 b', 'b.订单编号 = a.订单编号 AND a.子订单编号 = a.子订单编号')
  1006. ->join('工单_基本资料 j', 'b.订单编号 = j.订单编号', 'LEFT')
  1007. ->field('
  1008. b.订单编号, b.子订单编号, b.款号, b.颜色, b.船样, a.尺码, b.zdtotal as 制单数, b.颜色备注,
  1009. a.数量, MIN(a.sys_rq) as 上报时间, a.UniqId,
  1010. j.客户编号, j.生产款号, j.款式
  1011. ')
  1012. ->where($where)
  1013. ->where('a.mod_rq', null)
  1014. ->order('a.sys_rq desc, a.UniqId desc')
  1015. ->group('a.UniqId')
  1016. ->select();
  1017. // 提取所有的尺码,并去重
  1018. $sizeList = array_values(array_unique(array_column($list, '尺码')));
  1019. // **自定义排序规则**
  1020. $sizeOrder = ['XXS', 'XS', 'S', 'M', 'L', 'XL', 'XXL']; // 定义字母尺码的顺序
  1021. usort($sizeList, function ($a, $b) use ($sizeOrder) {
  1022. // 如果是数字,直接比较大小
  1023. if (is_numeric($a) && is_numeric($b)) {
  1024. return $a - $b;
  1025. }
  1026. // 如果是字母,按 $sizeOrder 的索引排序
  1027. if (in_array($a, $sizeOrder) && in_array($b, $sizeOrder)) {
  1028. return array_search($a, $sizeOrder) - array_search($b, $sizeOrder);
  1029. }
  1030. // 如果一个是数字,一个是字母,数字排在前面
  1031. if (is_numeric($a)) return -1;
  1032. if (is_numeric($b)) return 1;
  1033. // 如果都不符合,按字典顺序(备用)
  1034. return strcmp($a, $b);
  1035. });
  1036. // 动态将尺码的数量添加到每个订单中,并替换已完成字段
  1037. foreach ($list as &$item) {
  1038. $size = $item['尺码'];
  1039. $item[$size] = $item['数量'];
  1040. // unset($item['数量']); // 如果不需要保留原字段,可以取消注释
  1041. }
  1042. // 返回结果
  1043. $this->success('请求成功', [
  1044. 'table' => $list,
  1045. 'length' => count($list),
  1046. 'headers' => $sizeList // 返回所有的尺码作为表头
  1047. ]);
  1048. }
  1049. /**
  1050. * 工单审核
  1051. * @return void
  1052. * @throws \think\Exception
  1053. * @throws \think\db\exception\BindParamException
  1054. * @throws \think\exception\PDOException
  1055. */
  1056. public function Approval()
  1057. {
  1058. if ($this->request->isPost() === false){
  1059. $this->error('请求错误');
  1060. }
  1061. $param = Request::instance()->post();
  1062. if (empty($param)){
  1063. $this->error('参数错误');
  1064. }
  1065. $data['审核'] = $param['sys_id'];
  1066. $data['审核日期'] = date('Y-m-d H:i:s');
  1067. $sql = \db('工单_基本资料')
  1068. ->where('Uniqid',$param['Uniqid'])
  1069. ->fetchSql(true)
  1070. ->update($data);
  1071. $res = \db()->query($sql);
  1072. if ($res === false){
  1073. $this->error('审核失败');
  1074. }else{
  1075. $this->success('审核成功');
  1076. }
  1077. }
  1078. /**
  1079. * 订单未审核列表
  1080. * @return void
  1081. * @throws \think\db\exception\DataNotFoundException
  1082. * @throws \think\db\exception\ModelNotFoundException
  1083. * @throws \think\exception\DbException
  1084. */
  1085. public function UnapprovalList()
  1086. {
  1087. if ($this->request->isGet() === false){
  1088. $this->error('请求错误');
  1089. }
  1090. $param = $this->request->param();
  1091. if (isset($param)){
  1092. $where['订单编号|生产款号'] = ['like','%'.$param['search'].'%'];
  1093. }
  1094. // $where['审核'] = null;
  1095. // $where['审核日期'] = null;
  1096. $where['Mod_rq'] = null;
  1097. $list = \db('工单_基本资料')
  1098. ->where($where)
  1099. ->orderRaw("FIELD(gd_statu, '1-计划中', '2-生产中')")
  1100. ->order('订单编号 desc')
  1101. ->select();
  1102. // 提取所有订单编号
  1103. $orderIds = array_column($list, '订单编号');
  1104. // 查询相关附件中是否存在这些订单编号
  1105. $relatedOrders = \db('工单_相关附件')
  1106. ->whereIn('关联编号', $orderIds)
  1107. ->whereIn('附件备注', '技术附件')
  1108. ->column('关联编号');
  1109. // // 遍历数据,为每个订单设置 status
  1110. // foreach ($list as &$value) {
  1111. // if (in_array($value['订单编号'], $relatedOrders)) {
  1112. // $value['status'] = '';
  1113. // } else {
  1114. // $value['status'] = '*';
  1115. // }
  1116. // }
  1117. // $data['total'] = count($list);
  1118. // $data['table'] = $list;
  1119. // 遍历数据,为每个订单设置 status,并替换字段名
  1120. foreach ($list as &$value) {
  1121. // 设置订单状态
  1122. if (in_array($value['订单编号'], $relatedOrders)) {
  1123. $value['status'] = '';
  1124. } else {
  1125. $value['status'] = '*';
  1126. }
  1127. // 将「工单入仓数量」字段替换为「工单完工数量」
  1128. if (isset($value['工单入仓数量'])) {
  1129. $value['工单完工数量'] = $value['工单入仓数量'];
  1130. unset($value['工单入仓数量']);
  1131. }
  1132. }
  1133. $data['total'] = count($list);
  1134. $data['table'] = $list;
  1135. $this->success('成功',$data);
  1136. }
  1137. /**
  1138. * 月度客户订单汇总
  1139. */
  1140. public function OrderYieldList(){
  1141. // 获取前端传来的参数
  1142. $param = $this->request->param();
  1143. // 初始化查询条件
  1144. $where = [];
  1145. // 处理搜索条件
  1146. if (isset($param['search']) && !empty($param['search'])) {
  1147. $where['j.订单编号|j.生产款号'] = ['like', '%' . $param['search'] . '%'];
  1148. }
  1149. if (isset($param['client']) && !empty($param['client'])) {
  1150. $where['j.客户编号'] = $param['client'];
  1151. }
  1152. if (isset($param['date']) && !empty($param['date'])) {
  1153. $year = substr($param['date'], 0, 4);
  1154. $month = substr($param['date'], 4, 2);
  1155. $where['j.Sys_rq'] = ['like', "$year-$month%"];
  1156. }
  1157. // 只查询生产中的工单
  1158. $where['j.gd_statu'] = '2-生产中';
  1159. $where['j.Mod_rq'] = null;
  1160. // 执行查询
  1161. $orderList = \db('工单_基本资料')->alias('j')
  1162. ->join('工单_印件资料 y', 'j.订单编号 = y.订单编号')
  1163. ->field('j.Sys_rq, y.订单编号, j.落货日期, j.生产款号, j.款式, SUM(y.sctotal) as 裁剪总数, SUM(y.zdtotal) as 制单总数')
  1164. ->group('y.订单编号')
  1165. ->where($where)
  1166. ->select();
  1167. $orderIds = array_column($orderList, '订单编号');
  1168. // 通过订单编号关联设备_产量计酬表,获取工序名称和数量,并进行分组和汇总
  1169. $processList = \db('设备_产量计酬')
  1170. ->alias('a')
  1171. ->join('工单_基本资料 j', 'a.订单编号 = j.订单编号')
  1172. ->whereIn('a.订单编号', $orderIds) // 只查询符合条件的订单编号
  1173. ->field('a.订单编号, a.工序名称, SUM(a.数量) as 总数量')
  1174. ->group('a.订单编号, a.工序名称') // 按订单编号和工序名称分组
  1175. ->select();
  1176. //echo "<pre>";
  1177. //print_r($processList);
  1178. //echo "<pre>";
  1179. // 合并两个结果
  1180. $data = [];
  1181. foreach ($orderList as $key => $order) {
  1182. // 去掉落货日期的时间部分,只保留日期
  1183. $orderDate = substr($order['落货日期'], 0, 10); // 提取前10位
  1184. //放入结果
  1185. $data[$key] = [
  1186. '订单编号' => $order['订单编号'],
  1187. '落货日期' => $order['落货日期'],
  1188. '生产款号' => $order['生产款号'],
  1189. '款式' => $order['款式'],
  1190. '裁剪总数' => $order['裁剪总数'],
  1191. '制单总数' => $order['制单总数'],
  1192. ];
  1193. // 找到该订单编号对应的工序名称和数量
  1194. foreach ($processList as $process) {
  1195. if ($process['订单编号'] === $order['订单编号']) {
  1196. // 将工序名称和数量加入到结果中
  1197. $data[$key][$process['工序名称']] = $process['总数量'];
  1198. }
  1199. }
  1200. }
  1201. // 返回最终结果
  1202. $this->success('成功', $data);
  1203. }
  1204. /**
  1205. * 订单状态及样衣批核-左侧菜单
  1206. */
  1207. public function dateList()
  1208. {
  1209. }
  1210. /**
  1211. * 车缝派单菜单
  1212. * @return void
  1213. */
  1214. public function CfmachineList()
  1215. {
  1216. if ($this->request->isGet() === false) {
  1217. $this->error('请求错误');
  1218. }
  1219. // 查询所有生产工序为"车缝"的设备编号和设备编组
  1220. $machineList = \db('设备_基本资料')
  1221. ->where('生产工序', '车缝')
  1222. ->field('设备编号, 设备编组')
  1223. ->order('设备编号') // 按设备编号排序
  1224. ->select();
  1225. $result = [];
  1226. foreach ($machineList as $machine) {
  1227. $machineCode = $machine['设备编号'];
  1228. $machineGroup = $machine['设备编组'];
  1229. // 查询该设备编号在 设备_产量计酬 表中的订单编号及日期
  1230. $orders = \db('设备_产量计酬')
  1231. ->where('sczl_jtbh', $machineCode)
  1232. ->where('mod_rq', null)
  1233. ->order('sys_rq asc') // 按生产日期升序排序
  1234. ->select();
  1235. // 根据月份分组统计订单数量
  1236. $monthlyOrders = [];
  1237. foreach ($orders as $order) {
  1238. $yearMonth = date('Ym', strtotime($order['sys_rq']));
  1239. if (!isset($monthlyOrders[$yearMonth])) {
  1240. $monthlyOrders[$yearMonth] = [];
  1241. }
  1242. $monthlyOrders[$yearMonth][] = $order['订单编号'];
  1243. }
  1244. // 构建返回数据,格式为:设备编号【设备编组 生产中:工单数量】
  1245. foreach ($monthlyOrders as $yearMonth => $orderList) {
  1246. $workOrderCount = count(array_unique($orderList));
  1247. if (!isset($result[$yearMonth])) {
  1248. $result[$yearMonth] = [];
  1249. }
  1250. // 使用集合来去重设备编号
  1251. $deviceKey = $machineCode . '【' . $machineGroup . ' 生产中:' . $workOrderCount . '】';
  1252. if (!in_array($deviceKey, $result[$yearMonth])) {
  1253. $result[$yearMonth][] = $deviceKey;
  1254. }
  1255. }
  1256. }
  1257. // 按月份排序,确保最新的月份在前面
  1258. krsort($result);
  1259. $this->success('成功', $result);
  1260. }
  1261. /**
  1262. * 车缝派单列表
  1263. */
  1264. public function CfdataList()
  1265. {
  1266. if ($this->request->isGet() === false) {
  1267. $this->error('请求错误');
  1268. }
  1269. $param = $this->request->param();
  1270. if (empty($param['machine']) || empty($param['date'])) {
  1271. $this->error('参数错误');
  1272. }
  1273. // 将传入的 YYYYMM 格式日期转换为 YYYY-MM-01
  1274. $year = substr($param['date'], 0, 4);
  1275. $month = substr($param['date'], 4, 2);
  1276. $startDate = "$year-$month-01 00:00:00";
  1277. $endDate = date("Y-m-t 23:59:59", strtotime($startDate)); // 获取该月的最后一天
  1278. // 查询设备产量计酬与工单基本资料的关联数据
  1279. $list = \db('设备_产量计酬')->alias('c')
  1280. ->join('工单_基本资料 j', 'c.订单编号 = j.订单编号', 'left')
  1281. ->where('c.sczl_jtbh', $param['machine'])
  1282. ->where('c.mod_rq', null)
  1283. ->where('c.sczl_rq', '>=', $startDate)
  1284. ->where('c.sczl_rq', '<=', $endDate)
  1285. ->field('
  1286. c.订单编号, c.款号 as 生产款号, j.款式, j.客户编号, j.订单数量,
  1287. LEFT(j.落货日期, 10) as 落货日期,j.工单入仓数量 as 工单完工数量,j.订单数量,
  1288. c.sczl_rq as 创建时间, j.gd_statu as 工单状态
  1289. ')
  1290. ->group('c.订单编号')
  1291. ->select();
  1292. // 返回数组结果
  1293. $this->success('请求成功', ['table' => $list, 'length' => count($list)]);
  1294. }
  1295. //
  1296. // /**车缝派单菜单
  1297. // * @return void
  1298. // */
  1299. // public function CfmachineList()
  1300. // {
  1301. // if ($this->request->isGet() === false) {
  1302. // $this->error('请求错误');
  1303. // }
  1304. //
  1305. // // 查询所有生产工序为"车缝"的设备编号和设备编组
  1306. // $machineList = \db('设备_基本资料')
  1307. // ->where('生产工序', '车缝')
  1308. // ->field('设备编号, 设备编组')
  1309. // ->order('设备编号') // 按设备编号排序
  1310. // ->select();
  1311. //
  1312. // $result = [];
  1313. // $addedMachineCodes = []; // 用于跟踪已经添加的设备编号
  1314. //
  1315. // foreach ($machineList as $machine) {
  1316. // $machineCode = $machine['设备编号'];
  1317. // $machineGroup = $machine['设备编组'];
  1318. //
  1319. // // 检查是否已经添加过该设备编号
  1320. // if (in_array($machineCode, $addedMachineCodes)) {
  1321. // continue; // 跳过已添加的设备
  1322. // }
  1323. //
  1324. // // 查询该设备编号在 设备_产量计酬 表中的订单编号
  1325. // $orders = \db('设备_产量计酬')
  1326. // ->where('sczl_jtbh', $machineCode)
  1327. // ->order('sys_rq desc')
  1328. // ->where('mod_rq', null)
  1329. // ->column('订单编号');
  1330. //
  1331. // // 去重统计订单编号数量
  1332. // $workOrderCount = count(array_unique($orders));
  1333. //
  1334. // // 构建返回数据,格式为:设备编号【设备编组 生产中:工单数量】
  1335. // $result[] = $machineCode . '【' . $machineGroup . ' 生产中:' . $workOrderCount . '】';
  1336. //
  1337. // // 将设备编号添加到跟踪数组中
  1338. // $addedMachineCodes[] = $machineCode;
  1339. // }
  1340. //
  1341. // $yearMonth = date('Ym');
  1342. // $finalResult = [
  1343. // $yearMonth => $result
  1344. // ];
  1345. //
  1346. // $this->success('成功', $finalResult);
  1347. // }
  1348. //
  1349. //
  1350. // /**
  1351. // * 车缝派单列表
  1352. // */
  1353. // public function CfdataList()
  1354. // {
  1355. // if ($this->request->isGet() === false) {
  1356. // $this->error('请求错误');
  1357. // }
  1358. //
  1359. // $param = $this->request->param();
  1360. // if (empty($param)) {
  1361. // $this->error('参数错误');
  1362. // }
  1363. //
  1364. // // 查询设备产量计酬与工单基本资料的关联数据
  1365. // $list = \db('设备_产量计酬')->alias('c')
  1366. // ->join('工单_基本资料 j', 'c.订单编号 = j.订单编号', 'left')
  1367. // ->where('c.sczl_jtbh', $param['machine'])
  1368. // ->where('c.mod_rq', null)
  1369. // ->field('
  1370. // c.订单编号, c.款号, j.款式, j.客户编号, j.订单数量,
  1371. // LEFT(j.落货日期, 10) as 落货日期,
  1372. // j.Sys_rq as 创建时间, j.gd_statu as 工单状态
  1373. // ')
  1374. // ->group('c.订单编号')
  1375. // ->select();
  1376. //
  1377. //
  1378. // // 返回数组结果
  1379. // $this->success('请求成功', ['table' => $list, 'length' => count($list)]);
  1380. // }
  1381. //车缝派单删除
  1382. public function CfdataDel()
  1383. {
  1384. if ($this->request->isGet() === false)
  1385. {
  1386. $this->error('请求错误');
  1387. }
  1388. $param = $this->request->param();
  1389. if (empty($param)){
  1390. $this->error('参数错误');
  1391. }
  1392. $sql = \db('工单_排程班次')
  1393. ->where('UniqId',$param['UniqId'])
  1394. ->fetchSql(true)
  1395. ->update(['mod_rq'=>date('Y-m-d H:i:s',time())]);
  1396. $res = \db()->query($sql);
  1397. if ($res !== false){
  1398. $this->success('删除成功');
  1399. }else{
  1400. $this->error('删除失败');
  1401. }
  1402. }
  1403. //车缝派单数据
  1404. public function CfdataAllList()
  1405. {
  1406. if ($this->request->isGet() === false){
  1407. $this->error('请求错误');
  1408. }
  1409. $list = \db('工单_排程班次')
  1410. ->where('mod_rq',null)
  1411. ->order('sys_rq desc')
  1412. ->field('订单编号,子订单编号,班组编号,sys_rq as 创建时间,sys_id as 创建人员,UniqId')
  1413. ->group('子订单编号')
  1414. ->select();
  1415. $this->success('成功',$list);
  1416. }
  1417. }