Manufacture.php 48 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243
  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. * @return void
  904. */
  905. public function MachineList()
  906. {
  907. if ($this->request->isGet() === false){
  908. $this->error('请求错误');
  909. }
  910. $date = date('Y-m-d 00:00:00',time()-1888000);
  911. $arr = \db('设备_产量计酬')
  912. ->field([
  913. 'DISTINCT(date_format(sczl_rq,"%Y-%m-%d"))' => '时间',
  914. 'rtrim(sczl_jtbh)' => '机台编号'
  915. ])
  916. ->where('sczl_rq','>',$date)
  917. ->order('sczl_rq desc')
  918. ->select();
  919. $MachineList = \db('设备_基本资料')
  920. ->where('生产工序','in',['车缝','后道','总检','大烫','包装'])
  921. ->select();
  922. $list = ['车缝','后道','总检','大烫','包装'];
  923. $data =[];
  924. foreach ($list as $m=>$n){
  925. $data[$n] = [];
  926. foreach ($MachineList as $key=>$value){
  927. if ($n === $value['生产工序']){
  928. $data[$n][$value['设备编号'].'--'.$value['设备编组']] = [];
  929. foreach ($arr as $k=>$v){
  930. if ($value['设备编号'] === $v['机台编号']){
  931. array_push($data[$n][$value['设备编号'].'--'.$value['设备编组']],$v['时间']);
  932. }
  933. }
  934. }
  935. }
  936. }
  937. $this->success('成功',$data);
  938. }
  939. /**
  940. * 班组生产数据
  941. * @return void
  942. * @throws \think\db\exception\DataNotFoundException
  943. * @throws \think\db\exception\ModelNotFoundException
  944. * @throws \think\exception\DbException
  945. */
  946. public function MachineDetail()
  947. {
  948. if ($this->request->isGet() === false){
  949. $this->error('请求错误');
  950. }
  951. $param = $this->request->param();
  952. if (empty($param)){
  953. $this->error('参数错误');
  954. }
  955. if (isset($param['date'])){
  956. $where['a.sczl_rq'] = $param['date'];
  957. }
  958. $where['a.sczl_jtbh'] = $param['machine'];
  959. $list = \db('设备_产量计酬')
  960. ->alias('a')
  961. ->join('工单_印件资料 b','b.订单编号 = a.订单编号 AND a.子订单编号 = a.子订单编号')
  962. ->field('b.订单编号,b.子订单编号,b.款号,b.颜色,b.船样,a.尺码,b.zdtotal as 制单数,a.数量 as 已完成,a.sys_rq as 上报时间')
  963. ->where($where)
  964. ->group('a.UniqId')
  965. ->select();
  966. $this->success('成功',$list);
  967. }
  968. /**
  969. * 工单审核
  970. * @return void
  971. * @throws \think\Exception
  972. * @throws \think\db\exception\BindParamException
  973. * @throws \think\exception\PDOException
  974. */
  975. public function Approval()
  976. {
  977. if ($this->request->isPost() === false){
  978. $this->error('请求错误');
  979. }
  980. $param = Request::instance()->post();
  981. if (empty($param)){
  982. $this->error('参数错误');
  983. }
  984. $data['审核'] = $param['sys_id'];
  985. $data['审核日期'] = date('Y-m-d H:i:s');
  986. $sql = \db('工单_基本资料')
  987. ->where('Uniqid',$param['Uniqid'])
  988. ->fetchSql(true)
  989. ->update($data);
  990. $res = \db()->query($sql);
  991. if ($res === false){
  992. $this->error('审核失败');
  993. }else{
  994. $this->success('审核成功');
  995. }
  996. }
  997. /**
  998. * 订单未审核列表
  999. * @return void
  1000. * @throws \think\db\exception\DataNotFoundException
  1001. * @throws \think\db\exception\ModelNotFoundException
  1002. * @throws \think\exception\DbException
  1003. */
  1004. public function UnapprovalList()
  1005. {
  1006. if ($this->request->isGet() === false){
  1007. $this->error('请求错误');
  1008. }
  1009. $param = $this->request->param();
  1010. if (isset($param)){
  1011. $where['订单编号'] = ['like','%'.$param['search'].'%'];
  1012. }
  1013. // $where['审核'] = null;
  1014. // $where['审核日期'] = null;
  1015. $where['Mod_rq'] = null;
  1016. $list = \db('工单_基本资料')
  1017. ->where($where)
  1018. ->orderRaw("FIELD(gd_statu, '1-计划中', '2-生产中')") // 自定义状态排序,'1-计划中'排在前
  1019. ->order('订单编号 desc') // 按订单编号降序排序
  1020. ->select();
  1021. $this->success('成功',$list);
  1022. }
  1023. /**
  1024. * 月度工序产量列表
  1025. * @return void
  1026. * @throws \think\db\exception\DataNotFoundException
  1027. * @throws \think\db\exception\ModelNotFoundException
  1028. * @throws \think\exception\DbException
  1029. */
  1030. public function OrderYieldList()
  1031. {
  1032. // 判断是否是GET请求
  1033. if ($this->request->isGet() === false){
  1034. $this->error('请求错误');
  1035. }
  1036. // 获取请求参数
  1037. $param = $this->request->param();
  1038. // 处理搜索条件
  1039. if (isset($param['search'])){
  1040. $where['a.订单编号'] = ['like','%'.$param['search'].'%'];
  1041. }
  1042. if (isset($param['client'])){
  1043. $where['b.客户编号'] = $param['client'];
  1044. }
  1045. // 只查询生产中的工单
  1046. $where['b.gd_statu'] = '2-生产中';
  1047. // 查询第一个表,获取产量信息,添加a.sys_rq字段
  1048. $list = \db('设备_产量计酬')
  1049. ->alias('a')
  1050. ->join('工单_基本资料 b', 'a.订单编号 = b.订单编号')
  1051. ->join('工单_印件资料 c', 'a.订单编号 = c.订单编号 AND a.子订单编号 = c.子订单编号')
  1052. ->field('c.订单编号, c.子订单编号, c.款号, c.颜色, c.zdtotal as 制单总数, c.sctotal as 裁切总数, c.ck_rq as 出库日期, a.sys_rq,
  1053. SUM(a.数量) as 产量, a.工序名称')
  1054. ->where($where)
  1055. ->whereNotNull('c.sc_rq') // 过滤出生产日期不为空的数据
  1056. ->group('a.订单编号, a.工序名称')
  1057. ->order('c.Uniqid')
  1058. ->select();
  1059. // 查询第二个表,获取订单的基本信息
  1060. $orderList = \db('工单_印件资料')
  1061. ->alias('a')
  1062. ->join('工单_基本资料 b', 'a.订单编号 = b.订单编号')
  1063. ->field('a.订单编号, a.子订单编号, a.款号, a.颜色, a.zdtotal as 制单总数, a.sctotal as 裁切总数, a.ck_rq as 出库日期')
  1064. ->where($where)
  1065. ->whereNotNull('a.sc_rq')
  1066. ->group('a.子订单编号')
  1067. ->order('a.Uniqid')
  1068. ->select();
  1069. $data = [];
  1070. // 合并两个查询结果
  1071. foreach ($orderList as $key => $value){
  1072. $data[$key] = $value; // 先将订单基本信息放入$data
  1073. foreach ($list as $k => $v){
  1074. if ($value['子订单编号'] === $v['子订单编号']) {
  1075. // 根据工序名称,将对应的产量数据加入到订单信息中
  1076. if (!isset($data[$key][$v['工序名称']])){
  1077. $data[$key][$v['工序名称']] = $v['产量'];
  1078. }
  1079. // 添加sys_rq到结果
  1080. $data[$key]['sys_rq'] = $v['sys_rq'];
  1081. }
  1082. }
  1083. }
  1084. // 返回成功的结果,包含合并后的数据
  1085. $this->success('成功', $data);
  1086. }
  1087. /**
  1088. * 月度工序产量左侧菜单
  1089. * @return void
  1090. * @throws \think\db\exception\DataNotFoundException
  1091. * @throws \think\db\exception\ModelNotFoundException
  1092. * @throws \think\exception\DbException
  1093. */
  1094. // public function dateList()
  1095. // {
  1096. // if ($this->request->isGet() === false){
  1097. // $this->error('请求错误');
  1098. // }
  1099. // // 查询并按月份统计
  1100. // $result = Db::name('工单_基本资料')
  1101. // ->field("DATE_FORMAT(Sys_rq, '%Y-%m') as month")
  1102. // ->group("DATE_FORMAT(Sys_rq, '%Y-%m')")
  1103. // ->select();
  1104. // $list = $this->array_flatten($result);
  1105. // $this->success('成功',$list);
  1106. // }
  1107. //
  1108. // function array_flatten($array) {
  1109. // $result = [];
  1110. // foreach ($array as $value) {
  1111. // if (is_array($value)) {
  1112. // $result = array_merge($result, $this->array_flatten($value));
  1113. // } else {
  1114. // $result[] = $value;
  1115. // }
  1116. // }
  1117. // return $result;
  1118. // }
  1119. /**车缝派单菜单
  1120. * @return void
  1121. */
  1122. public function CfmachineList()
  1123. {
  1124. if ($this->request->isGet() === false){
  1125. $this->error('请求错误');
  1126. }
  1127. $list = \db('设备_基本资料')
  1128. ->where('生产工序','车缝')
  1129. ->column('设备编号');
  1130. $this->success('成功',$list);
  1131. }
  1132. /**
  1133. * 车缝派单列表
  1134. * @return void
  1135. * @throws \think\db\exception\DataNotFoundException
  1136. * @throws \think\db\exception\ModelNotFoundException
  1137. * @throws \think\exception\DbException
  1138. */
  1139. public function CfdataList()
  1140. {
  1141. if ($this->request->isGet() === false){
  1142. $this->error('请求错误');
  1143. }
  1144. $param = $this->request->param();
  1145. if (empty($param)){
  1146. $this->error('参数错误');
  1147. }
  1148. $list = \db('工单_排程班次')
  1149. ->where('班组编号',$param['machine'])
  1150. ->where('mod_rq',null)
  1151. ->order('sys_rq desc')
  1152. ->field('订单编号,子订单编号,班组编号,sys_rq as 创建时间,sys_id as 创建人员,UniqId')
  1153. ->group('子订单编号')
  1154. ->select();
  1155. $this->success('成功',$list);
  1156. }
  1157. //车缝派单删除
  1158. public function CfdataDel()
  1159. {
  1160. if ($this->request->isGet() === false)
  1161. {
  1162. $this->error('请求错误');
  1163. }
  1164. $param = $this->request->param();
  1165. if (empty($param)){
  1166. $this->error('参数错误');
  1167. }
  1168. $sql = \db('工单_排程班次')
  1169. ->where('UniqId',$param['UniqId'])
  1170. ->fetchSql(true)
  1171. ->update(['mod_rq'=>date('Y-m-d H:i:s',time())]);
  1172. $res = \db()->query($sql);
  1173. if ($res !== false){
  1174. $this->success('删除成功');
  1175. }else{
  1176. $this->error('删除失败');
  1177. }
  1178. }
  1179. //车缝派单数据
  1180. public function CfdataAllList()
  1181. {
  1182. if ($this->request->isGet() === false){
  1183. $this->error('请求错误');
  1184. }
  1185. $list = \db('工单_排程班次')
  1186. ->where('mod_rq',null)
  1187. ->order('sys_rq desc')
  1188. ->field('订单编号,子订单编号,班组编号,sys_rq as 创建时间,sys_id as 创建人员,UniqId')
  1189. ->group('子订单编号')
  1190. ->select();
  1191. $this->success('成功',$list);
  1192. }
  1193. }