Manufacture.php 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896
  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. // 1. 确保每个月的工序顺序符合 $processList(即使为空也保留顺序)
  952. $sortedProcessData = array_fill_keys($processList, []);
  953. // 将原有数据合并到排序后的结构中
  954. $processData = array_merge($sortedProcessData, $processData);
  955. // 2. 对每个工序下的设备组进行日期倒序排序
  956. foreach ($processData as $process => &$machines) {
  957. if (is_array($machines)) { // 确保 $machines 是数组
  958. foreach ($machines as $machineKey => &$dates) {
  959. if (is_array($dates) && !empty($dates)) { // 确保 $dates 存在并且是非空数组
  960. rsort($dates); // 每台设备的日期倒序排序
  961. }
  962. }
  963. }
  964. }
  965. }
  966. $this->success('成功', $formattedData);
  967. // // 按生产工序排序
  968. // foreach ($formattedData as $yearMonth => &$processData) {
  969. // // 确保每个月的工序顺序符合 $processList(即使为空也保留顺序)
  970. // $sortedProcessData = array_fill_keys($processList, []);
  971. //
  972. // // 合并原有数据
  973. // foreach ($processData as $process => $machines) {
  974. // $sortedProcessData[$process] = $machines;
  975. // }
  976. //
  977. // // 更新排序后的数据
  978. // $processData = $sortedProcessData;
  979. //
  980. // // 对每组内的设备日期倒序排列
  981. // foreach ($processData as $process => &$machines) {
  982. // foreach ($machines as $machineKey => &$dates) {
  983. // rsort($dates); // 每台设备的日期倒序排序
  984. // }
  985. // }
  986. //
  987. // }
  988. //
  989. // // 返回成功结果
  990. // $this->success('成功', $formattedData);
  991. }
  992. /**
  993. * 月度车间报工汇总-列表数据
  994. */
  995. // public function MachineDetail()
  996. // {
  997. // if ($this->request->isGet() === false) {
  998. // $this->error('请求错误');
  999. // }
  1000. //
  1001. // $param = $this->request->param();
  1002. // if (empty($param)) {
  1003. // $this->error('参数错误');
  1004. // }
  1005. //
  1006. // $where = [];
  1007. //
  1008. // // 获取当前年份
  1009. // $currentYear = date('Y');
  1010. //
  1011. // // 处理日期参数(可选)
  1012. // if (!empty($param['date'])) {
  1013. // if (preg_match('/^\d{4}-\d{2}$/', $param['date'])) {
  1014. // $where['a.sys_rq'] = ['like', "{$param['date']}%"];
  1015. // } elseif (preg_match('/^\d{2}-\d{2}$/', $param['date'])) {
  1016. // $monthDay = $param['date'];
  1017. // $where['a.sys_rq'] = ['like', "%-$monthDay%"];
  1018. // } elseif (preg_match('/^\d{2}$/', $param['date'])) {
  1019. // $where['a.sys_rq'] = ['like', "{$currentYear}-{$param['date']}%"];
  1020. // }
  1021. // }
  1022. //
  1023. // // 订单编号筛选
  1024. // if (!empty($param['order'])) {
  1025. // $where['b.订单编号|b.款号|b.子订单编号'] = ['like', '%' . $param['order'] . '%'];
  1026. // }
  1027. //
  1028. // // 机台号筛选
  1029. // if (!empty($param['machine'])) {
  1030. // $machineMapping = [
  1031. // '裁剪' => 'CQ', '车缝' => 'CF', '手工' => 'HD',
  1032. // '大烫' => 'DT', '总检' => 'ZJ', '包装' => 'BZ'
  1033. // ];
  1034. //
  1035. // if (isset($machineMapping[$param['machine']])) {
  1036. // $where['a.sczl_jtbh'] = ['like', '%' . $machineMapping[$param['machine']] . '%'];
  1037. // } elseif (preg_match('/^\d{4}-\d{2}$/', $param['machine'])) {
  1038. // $where['a.sczl_jtbh'] = ''; // 若为日期格式,清空该字段
  1039. // } else {
  1040. // $where['a.sczl_jtbh'] = $param['machine'];
  1041. // }
  1042. // }
  1043. //
  1044. // // 查询数据
  1045. // $list = \db('设备_产量计酬')->alias('a')
  1046. // ->join('工单_印件资料 b', 'b.订单编号 = a.订单编号 AND a.子订单编号 = a.子订单编号')
  1047. // ->join('工单_基本资料 j', 'b.订单编号 = j.订单编号', 'LEFT')
  1048. // ->field('
  1049. // a.工序名称, b.订单编号, b.子订单编号, b.款号, b.颜色, b.船样, a.尺码, b.zdtotal as 制单数, b.颜色备注,
  1050. // a.数量, MIN(a.sys_rq) as 上报时间, a.UniqId,
  1051. // j.客户编号, j.生产款号, j.款式
  1052. // ')
  1053. // ->where($where)
  1054. // ->where('a.mod_rq', null)
  1055. // ->order('a.sys_rq desc, a.UniqId desc')
  1056. // ->group('a.UniqId')
  1057. // ->select();
  1058. //
  1059. // // 提取所有的尺码,并去重,去除空格
  1060. // $sizeList = array_values(array_unique(array_map('trim', array_column($list, '尺码'))));
  1061. //
  1062. // // 自定义排序规则(已存在的排序逻辑)
  1063. // $sizeOrder = ['XXS', 'XS', 'S', 'M', 'L', 'XL', 'XXL', 'XXXL', 'XXXXL'];
  1064. // usort($sizeList, function ($a, $b) use ($sizeOrder) {
  1065. // // 数字优先比较
  1066. // if (is_numeric($a) && is_numeric($b)) {
  1067. // return $a - $b;
  1068. // }
  1069. // if (in_array($a, $sizeOrder) && in_array($b, $sizeOrder)) {
  1070. // return array_search($a, $sizeOrder) - array_search($b, $sizeOrder);
  1071. // }
  1072. // if (is_numeric($a)) return -1;
  1073. // if (is_numeric($b)) return 1;
  1074. //
  1075. // return strcmp($a, $b);
  1076. // });
  1077. //
  1078. // // 不合并相同的子订单编号,而是按 "子订单编号 + 工序名称" 作为唯一键
  1079. // $mergedList = [];
  1080. // foreach ($list as $item) {
  1081. // $uniqueKey = $item['子订单编号'] . '-' . $item['工序名称']; // 关键点:加入工序名称
  1082. //
  1083. // if (!isset($mergedList[$uniqueKey])) {
  1084. // $mergedList[$uniqueKey] = $item;
  1085. // } else {
  1086. // // 汇总数量
  1087. // foreach ($sizeList as $size) {
  1088. // // 如果当前行有这个尺码,累加数量
  1089. // if (isset($item['尺码']) && $item['尺码'] == $size) {
  1090. // $mergedList[$uniqueKey][$size] = isset($mergedList[$uniqueKey][$size])
  1091. // ? $mergedList[$uniqueKey][$size] + $item['数量']
  1092. // : $item['数量'];
  1093. // }
  1094. // }
  1095. // }
  1096. // }
  1097. //
  1098. // // 转换合并后的数组为列表
  1099. // $finalList = array_values($mergedList);
  1100. //
  1101. // // 将合并后的结果转换为列表形式
  1102. // $finalList = array_values($mergedList);
  1103. //
  1104. // // 返回结果
  1105. // $this->success('请求成功', [
  1106. // 'table' => $finalList,
  1107. // 'length' => count($finalList),
  1108. // 'headers' => $sizeList // 返回所有的尺码作为表头
  1109. // ]);
  1110. // }
  1111. /**
  1112. * 月度车间报工汇总-列表详情数据
  1113. */
  1114. public function MachineDetail()
  1115. {
  1116. if ($this->request->isGet() === false) {
  1117. $this->error('请求错误');
  1118. }
  1119. $param = $this->request->param();
  1120. if (empty($param)) {
  1121. $this->error('参数错误');
  1122. }
  1123. $where = [];
  1124. // 获取当前年份
  1125. $currentYear = date('Y');
  1126. // 处理日期参数(可选)
  1127. if (!empty($param['date'])) {
  1128. // 日期参数的格式处理
  1129. if (preg_match('/^\d{4}-\d{2}$/', $param['date'])) {
  1130. $where['a.sys_rq'] = ['like', "{$param['date']}%"];
  1131. } elseif (preg_match('/^\d{2}-\d{2}$/', $param['date'])) {
  1132. $monthDay = $param['date'];
  1133. $where['a.sys_rq'] = ['like', "%-$monthDay%"];
  1134. } elseif (preg_match('/^\d{2}$/', $param['date'])) {
  1135. $where['a.sys_rq'] = ['like', "{$currentYear}-{$param['date']}%"];
  1136. }
  1137. }
  1138. // 订单编号筛选
  1139. if (!empty($param['order'])) {
  1140. $where['b.订单编号|b.款号|b.子订单编号'] = ['like', '%' . $param['order'] . '%'];
  1141. }
  1142. // 机台号筛选
  1143. if (!empty($param['machine'])) {
  1144. // 针对机台号的特定条件判断
  1145. $machineMapping = [
  1146. '裁剪' => 'CQ', '车缝' => 'CF', '手工' => 'HD',
  1147. '大烫' => 'DT', '总检' => 'ZJ', '包装' => 'BZ'
  1148. ];
  1149. if (isset($machineMapping[$param['machine']])) {
  1150. $where['a.sczl_jtbh'] = ['like', '%' . $machineMapping[$param['machine']] . '%'];
  1151. } elseif (preg_match('/^\d{4}-\d{2}$/', $param['machine'])) {
  1152. $where['a.sczl_jtbh'] = ''; // 若为日期格式,清空该字段
  1153. } else {
  1154. $where['a.sczl_jtbh'] = $param['machine'];
  1155. }
  1156. }
  1157. // 查询数据
  1158. $offset = ($param['page'] - 1) * $param['limit'];
  1159. $list = \db('设备_产量计酬')->alias('a')
  1160. ->join('工单_印件资料 b', 'b.订单编号 = a.订单编号 AND a.子订单编号 = a.子订单编号')
  1161. ->join('工单_基本资料 j', 'b.订单编号 = j.订单编号', 'LEFT')
  1162. ->field('
  1163. a.工序名称,a.sczl_bh,b.订单编号, b.子订单编号, b.款号, b.颜色, b.船样, a.尺码, b.zdtotal as 制单数, b.颜色备注,
  1164. CASE
  1165. WHEN a.工序名称 IN ("裁剪", "车缝") THEN a.数量
  1166. ELSE a.s_num
  1167. END as 数量,
  1168. MIN(a.sys_rq) as 上报时间, a.UniqId,
  1169. j.客户编号, j.生产款号, j.款式
  1170. ')
  1171. ->where($where)
  1172. ->where('a.mod_rq', null)
  1173. ->order('a.sys_rq desc, a.UniqId desc')
  1174. ->limit($offset, $param['limit'])
  1175. ->group('a.UniqId')
  1176. ->select();
  1177. $count = \db('设备_产量计酬')->alias('a')
  1178. ->join('工单_印件资料 b', 'b.订单编号 = a.订单编号 AND a.子订单编号 = a.子订单编号')
  1179. ->join('工单_基本资料 j', 'b.订单编号 = j.订单编号', 'LEFT')
  1180. ->field('
  1181. a.工序名称,a.sczl_bh,b.订单编号, b.子订单编号, b.款号, b.颜色, b.船样, a.尺码, b.zdtotal as 制单数, b.颜色备注,
  1182. CASE
  1183. WHEN a.工序名称 IN ("裁剪", "车缝") THEN a.数量
  1184. ELSE a.s_num
  1185. END as 数量,
  1186. MIN(a.sys_rq) as 上报时间, a.UniqId,
  1187. j.客户编号, j.生产款号, j.款式
  1188. ')
  1189. ->where($where)
  1190. ->where('a.mod_rq', null)
  1191. ->order('a.sys_rq desc, a.UniqId desc')
  1192. ->group('a.UniqId')
  1193. ->select();
  1194. // 提取所有的尺码,并去重,去除空格
  1195. $sizeList = array_values(array_unique(array_map('trim', array_column($list, '尺码'))));
  1196. // 自定义排序规则(已存在的排序逻辑)
  1197. $sizeOrder = ['XXS', 'XS', 'S', 'M', 'L', 'XL', 'XXL', 'XXXL', 'XXXXL'];
  1198. usort($sizeList, function ($a, $b) use ($sizeOrder) {
  1199. // 数字优先比较
  1200. if (is_numeric($a) && is_numeric($b)) {
  1201. return $a - $b;
  1202. }
  1203. if (in_array($a, $sizeOrder) && in_array($b, $sizeOrder)) {
  1204. return array_search($a, $sizeOrder) - array_search($b, $sizeOrder);
  1205. }
  1206. if (is_numeric($a)) return -1;
  1207. if (is_numeric($b)) return 1;
  1208. return strcmp($a, $b);
  1209. });
  1210. // 动态将尺码的数量添加到每个订单中,并替换已完成字段
  1211. foreach ($list as &$item) {
  1212. $size = $item['尺码'];
  1213. $item[$size] = $item['数量'];
  1214. }
  1215. // 返回结果
  1216. $this->success('请求成功', [
  1217. 'table' => $list,
  1218. 'length' => count($count),
  1219. 'headers' => $sizeList // 返回所有的尺码作为表头
  1220. ]);
  1221. }
  1222. // public function MachineDetail()
  1223. // {
  1224. // if ($this->request->isGet() === false) {$this->error('请求错误');}
  1225. // $param = $this->request->param();
  1226. // if (empty($param)) {$this->error('参数错误');}
  1227. //
  1228. // $where = [];
  1229. //
  1230. // // 获取当前年份
  1231. // $currentYear = date('Y');
  1232. //
  1233. // // 处理日期参数(可选)
  1234. // if (!empty($param['date'])) {
  1235. // // 检查 `date` 的格式是否为 "YYYY-MM"、"MM-DD" 或仅为月份 "MM"
  1236. // if (preg_match('/^\d{4}-\d{2}$/', $param['date'])) {
  1237. // // 如果格式为 "YYYY-MM",查询当月数据
  1238. // $where['a.sys_rq'] = ['like', "{$param['date']}%"];
  1239. // } elseif (preg_match('/^\d{2}-\d{2}$/', $param['date'])) {
  1240. // // 如果格式为 "MM-DD",查询指定的月份和日期
  1241. // $monthDay = $param['date'];
  1242. // $where['a.sys_rq'] = ['like', "%-$monthDay%"];
  1243. // } elseif (preg_match('/^\d{2}$/', $param['date'])) {
  1244. // // 如果格式为 "MM"(仅月份),自动补全为 "YYYY-MM"
  1245. // $where['a.sys_rq'] = ['like', "{$currentYear}-{$param['date']}%"];
  1246. // }
  1247. // }
  1248. //
  1249. // // 判断是否传入订单编号参数(可选)
  1250. // if (!empty($param['order'])) {
  1251. // $where['b.订单编号|b.款号|b.子订单编号'] = ['like', '%' . $param['order'] . '%'];
  1252. // }
  1253. //
  1254. // // 处理机台号参数(可选)
  1255. // if (!empty($param['machine'])) {
  1256. // // 判断是否为年-月格式(2025-02)
  1257. // if (preg_match('/^\d{4}-\d{2}$/', $param['machine'])) {
  1258. // // 如果是日期格式,则设为空
  1259. // $where['a.sczl_jtbh'] = '';
  1260. // } else {
  1261. // // 如果不是日期格式,则正常赋值
  1262. // $where['a.sczl_jtbh'] = $param['machine'];
  1263. // }
  1264. // }
  1265. //
  1266. // if($param['machine'] === '裁剪'){
  1267. // $where['a.sczl_jtbh'] = ['like', '%' . 'CQ' . '%'];
  1268. // }else if($param['machine'] === '车缝'){
  1269. // $where['a.sczl_jtbh'] = ['like', '%' . 'CF' . '%'];
  1270. // }else if($param['machine'] === '手工'){
  1271. // $where['a.sczl_jtbh'] = ['like', '%' . 'HD' . '%'];
  1272. // }else if($param['machine'] === '大烫'){
  1273. // $where['a.sczl_jtbh'] = ['like', '%' . 'DT' . '%'];
  1274. // }else if($param['machine'] === '总检'){
  1275. // $where['a.sczl_jtbh'] = ['like', '%' . 'ZJ' . '%'];
  1276. // }else if($param['machine'] === '包装'){
  1277. // $where['a.sczl_jtbh'] = ['like', '%' . 'BZ' . '%'];
  1278. // }
  1279. //
  1280. //
  1281. // // 查询数据
  1282. // $list = \db('设备_产量计酬')->alias('a')
  1283. // ->join('工单_印件资料 b', 'b.订单编号 = a.订单编号 AND a.子订单编号 = a.子订单编号')
  1284. // ->join('工单_基本资料 j', 'b.订单编号 = j.订单编号', 'LEFT')
  1285. // ->field('
  1286. // a.工序名称,b.订单编号, b.子订单编号, b.款号, b.颜色, b.船样, a.尺码, b.zdtotal as 制单数, b.颜色备注,
  1287. // a.数量, MIN(a.sys_rq) as 上报时间, a.UniqId,
  1288. // j.客户编号, j.生产款号, j.款式
  1289. // ')
  1290. // ->where($where)
  1291. // ->where('a.mod_rq', null)
  1292. // ->order('a.sys_rq desc, a.UniqId desc')
  1293. // ->group('a.UniqId')
  1294. // ->select();
  1295. //
  1296. // // 提取所有的尺码,并去重
  1297. // $sizeList = array_values(array_unique(array_column($list, '尺码')));
  1298. //
  1299. // // **自定义排序规则**
  1300. // $sizeOrder = ['XXS', 'XS', 'S', 'M', 'L', 'XL', 'XXL']; // 定义字母尺码的顺序
  1301. //
  1302. // usort($sizeList, function ($a, $b) use ($sizeOrder) {
  1303. // // 如果是数字,直接比较大小
  1304. // if (is_numeric($a) && is_numeric($b)) {
  1305. // return $a - $b;
  1306. // }
  1307. // // 如果是字母,按 $sizeOrder 的索引排序
  1308. // if (in_array($a, $sizeOrder) && in_array($b, $sizeOrder)) {
  1309. // return array_search($a, $sizeOrder) - array_search($b, $sizeOrder);
  1310. // }
  1311. // // 如果一个是数字,一个是字母,数字排在前面
  1312. // if (is_numeric($a)) return -1;
  1313. // if (is_numeric($b)) return 1;
  1314. //
  1315. // // 如果都不符合,按字典顺序(备用)
  1316. // return strcmp($a, $b);
  1317. // });
  1318. //
  1319. // // 动态将尺码的数量添加到每个订单中,并替换已完成字段
  1320. // foreach ($list as &$item) {
  1321. // $size = $item['尺码'];
  1322. // $item[$size] = $item['数量'];
  1323. // // unset($item['数量']); // 如果不需要保留原字段,可以取消注释
  1324. // }
  1325. //
  1326. // // 返回结果
  1327. // $this->success('请求成功', [
  1328. // 'table' => $list,
  1329. // 'length' => count($list),
  1330. // 'headers' => $sizeList // 返回所有的尺码作为表头
  1331. // ]);
  1332. // }
  1333. /**
  1334. * 工单审核
  1335. * @return void
  1336. * @throws \think\Exception
  1337. * @throws \think\db\exception\BindParamException
  1338. * @throws \think\exception\PDOException
  1339. */
  1340. public function Approval()
  1341. {
  1342. if ($this->request->isPost() === false) {
  1343. $this->error('请求错误');
  1344. }
  1345. $param = Request::instance()->post();
  1346. if (empty($param)) {
  1347. $this->error('参数错误');
  1348. }
  1349. // 判断sys_id是否为多个,多个以逗号分隔
  1350. $sys_ids = strpos($param['sys_id'], ',') !== false ? explode(',', $param['sys_id']) : [$param['sys_id']];
  1351. $data['审核日期'] = date('Y-m-d H:i:s');
  1352. // 遍历所有sys_id进行更新
  1353. foreach ($sys_ids as $sys_id) {
  1354. $data['审核'] = $sys_id;
  1355. $sql = \db('工单_基本资料')
  1356. ->where('Uniqid', $param['Uniqid'])
  1357. ->fetchSql(true)
  1358. ->update($data);
  1359. // 执行SQL语句
  1360. $res = \db()->query($sql);
  1361. if ($res === false) {
  1362. $this->error('审核失败');
  1363. }
  1364. }
  1365. $this->success('审核成功');
  1366. }
  1367. /**
  1368. * 订单状态及样衣批核
  1369. */
  1370. public function UnapprovalList()
  1371. {
  1372. if ($this->request->isGet() === false) {
  1373. $this->error('请求错误');
  1374. }
  1375. $param = $this->request->param();
  1376. // // 参数为空时返回错误
  1377. // if (empty($param['search'])) {
  1378. // $this->error('搜索关键词不能为空');
  1379. // }
  1380. // 设置查询条件
  1381. $where = [
  1382. 'Mod_rq' => null,
  1383. '订单编号|生产款号' => ['like', '%' . $param['search'] . '%'],
  1384. ];
  1385. $page = isset($param['page']) ? $param['page'] : 1;
  1386. $limit = isset($param['limit']) ? $param['limit'] : 20;
  1387. // 获取工单列表
  1388. $list = \db('工单_基本资料')
  1389. ->where($where)
  1390. ->orderRaw("FIELD(gd_statu, '1-计划中', '2-生产中')")
  1391. ->order('订单编号 desc')
  1392. ->limit(($page - 1) * $limit, $limit)
  1393. ->select();
  1394. // 获取总记录数
  1395. $count = \db('工单_基本资料')
  1396. ->where($where)
  1397. ->count(); // 使用 count() 方法优化
  1398. // 提取所有订单编号
  1399. $orderIds = array_column($list, '订单编号');
  1400. // 合并查询相关附件
  1401. $relatedOrders = \db('工单_相关附件')
  1402. ->whereIn('关联编号', $orderIds)
  1403. ->whereIn('附件备注', ['技术附件', '订单资料附件'])
  1404. ->column('关联编号,附件备注');
  1405. // 重新组织附件数据
  1406. $groupedRelatedOrders = [
  1407. 'technical' => [],
  1408. 'order' => []
  1409. ];
  1410. foreach ($relatedOrders as $orderNumber => $attachmentRemark) {
  1411. if ($attachmentRemark === '技术附件') {
  1412. $groupedRelatedOrders['technical'][] = $orderNumber;
  1413. } elseif ($attachmentRemark === '订单资料附件') {
  1414. $groupedRelatedOrders['order'][] = $orderNumber;
  1415. }
  1416. }
  1417. // 遍历工单列表并设置状态
  1418. foreach ($list as &$value) {
  1419. // 设置订单状态
  1420. $value['status'] = in_array($value['订单编号'], $groupedRelatedOrders['technical']) ? '' : '*';
  1421. $value['orderstatus'] = in_array($value['订单编号'], $groupedRelatedOrders['order']) ? '' : '*';
  1422. // 查询 设备_产量计酬表,统计 s_num 总和
  1423. $s_num_sum = \db('设备_产量计酬')
  1424. ->where('订单编号', $value['订单编号'])
  1425. ->where('工序编号', 7)
  1426. ->sum('s_num'); // 获取s_num的总和
  1427. // 将 s_num 总和赋值给 工单完工数量
  1428. $value['工单完工数量'] = $s_num_sum;
  1429. }
  1430. // 返回数据
  1431. $data = [
  1432. 'total' => $count,
  1433. 'table' => $list,
  1434. ];
  1435. $this->success('成功', $data);
  1436. }
  1437. // public function UnapprovalList()
  1438. // {
  1439. // if ($this->request->isGet() === false){
  1440. // $this->error('请求错误');
  1441. // }
  1442. // $param = $this->request->param();
  1443. // if (isset($param)){
  1444. // $where['订单编号|生产款号'] = ['like','%'.$param['search'].'%'];
  1445. // }
  1446. // $page = $param['page'];
  1447. // $limit = $param['limit'];
  1448. // $where['Mod_rq'] = null;
  1449. // $list = \db('工单_基本资料')
  1450. // ->where($where)
  1451. // ->orderRaw("FIELD(gd_statu, '1-计划中', '2-生产中')")
  1452. // ->order('订单编号 desc')
  1453. // ->limit(($page-1)*$limit,$limit)
  1454. // ->select();
  1455. //
  1456. // $count = \db('工单_基本资料')
  1457. // ->where($where)
  1458. // ->orderRaw("FIELD(gd_statu, '1-计划中', '2-生产中')")
  1459. // ->order('订单编号 desc')
  1460. // ->select();
  1461. //
  1462. // // 提取所有订单编号
  1463. // $orderIds = array_column($list, '订单编号');
  1464. // // 查询相关附件中是否存在这些订单编号
  1465. // $relatedOrders = \db('工单_相关附件')
  1466. // ->whereIn('关联编号', $orderIds)
  1467. // ->whereIn('附件备注', '技术附件')
  1468. // ->column('关联编号');
  1469. // $orderAttachments = \db('工单_相关附件')
  1470. // ->whereIn('关联编号', $orderIds)
  1471. // ->whereIn('附件备注', '订单资料附件')
  1472. // ->column('关联编号');
  1473. // // 遍历数据,为每个订单设置 status,并替换字段名
  1474. // foreach ($list as &$value) {
  1475. // // 设置订单状态
  1476. // if (in_array($value['订单编号'], $relatedOrders)) {
  1477. // $value['status'] = '';
  1478. // } else {
  1479. // $value['status'] = '*';
  1480. // }
  1481. // if (in_array($value['订单编号'], $orderAttachments)) {
  1482. // $value['orderstatus'] = '';
  1483. // } else {
  1484. // $value['orderstatus'] = '*';
  1485. // }
  1486. // // 将「工单入仓数量」字段替换为「工单完工数量」
  1487. // if (isset($value['工单入仓数量'])) {
  1488. // $value['工单完工数量'] = $value['工单入仓数量'];
  1489. // unset($value['工单入仓数量']);
  1490. // }
  1491. // }
  1492. // $data['total'] = count($count);
  1493. // $data['table'] = $list;
  1494. // $this->success('成功',$data);
  1495. // }
  1496. /**
  1497. * 月度客户订单汇总
  1498. */
  1499. public function OrderYieldList(){
  1500. // 获取前端传来的参数
  1501. $param = $this->request->param();
  1502. // 初始化查询条件
  1503. $where = [];
  1504. // 处理搜索条件
  1505. if (isset($param['search']) && !empty($param['search'])) {
  1506. $where['j.订单编号|j.生产款号'] = ['like', '%' . $param['search'] . '%'];
  1507. }
  1508. if (isset($param['client']) && !empty($param['client'])) {
  1509. $where['j.客户编号'] = $param['client'];
  1510. }
  1511. if (isset($param['date']) && !empty($param['date'])) {
  1512. $year = substr($param['date'], 0, 4);
  1513. $month = substr($param['date'], 4, 2);
  1514. $where['j.Sys_rq'] = ['like', "$year-$month%"];
  1515. }
  1516. // 只查询生产中的工单
  1517. // $where['j.gd_statu'] = '2-生产中';
  1518. $where['j.Mod_rq'] = null;
  1519. // 执行查询
  1520. $orderList = \db('工单_基本资料')->alias('j')
  1521. ->join('工单_印件资料 y', 'j.订单编号 = y.订单编号')
  1522. ->field('j.Sys_rq, y.订单编号, j.落货日期, j.生产款号, j.款式, SUM(y.sctotal) as 裁剪总数, SUM(y.zdtotal) as 制单总数,j.gd_statu,j.客户编号')
  1523. ->group('y.订单编号')
  1524. ->where($where)
  1525. ->select();
  1526. $orderIds = array_column($orderList, '订单编号');
  1527. // 通过订单编号关联设备_产量计酬表,获取工序名称和数量,并进行分组和汇总
  1528. $wheres['a.mod_rq'] = null;
  1529. $processList = \db('设备_产量计酬')
  1530. ->alias('a')
  1531. ->join('工单_基本资料 j', 'a.订单编号 = j.订单编号')
  1532. ->whereIn('a.订单编号', $orderIds) // 只查询符合条件的订单编号
  1533. ->field('a.订单编号, a.工序名称, SUM(a.数量) as 总数量,SUM(a.s_num) as 上报数量,a.mod_rq')
  1534. ->where($wheres)
  1535. ->group('a.订单编号, a.工序名称') // 按订单编号和工序名称分组
  1536. ->select();
  1537. // 合并两个结果
  1538. $data = [];
  1539. foreach ($orderList as $key => $order) {
  1540. // 去掉落货日期的时间部分,只保留日期
  1541. $orderDate = substr($order['落货日期'], 0, 10); // 提取前10位
  1542. //放入结果
  1543. $data[$key] = [
  1544. '订单编号' => $order['订单编号'],
  1545. '落货日期' => $order['落货日期'],
  1546. '生产款号' => $order['生产款号'],
  1547. '款式' => $order['款式'],
  1548. '客户编号' => $order['客户编号'],
  1549. '订单状态' => $order['gd_statu'],
  1550. '裁剪总数' => $order['裁剪总数'],
  1551. '制单总数' => $order['制单总数'],
  1552. ];
  1553. //找到该订单编号对应的工序名称和数量
  1554. //裁剪、车缝计算数量,其他计算s_num合计
  1555. foreach ($processList as $process) {
  1556. if($process['工序名称'] == '裁剪' || $process['工序名称'] == '车缝'){
  1557. if ($process['订单编号'] === $order['订单编号']) {
  1558. // 将工序名称和数量加入到结果中
  1559. $data[$key][$process['工序名称']] = $process['总数量'];
  1560. }
  1561. }else{
  1562. if ($process['订单编号'] === $order['订单编号']) {
  1563. // 将工序名称和数量加入到结果中
  1564. $data[$key][$process['工序名称']] = $process['上报数量'];
  1565. }
  1566. }
  1567. }
  1568. }
  1569. $this->success('成功', $data);
  1570. }
  1571. /**
  1572. * 订单状态及样衣批核-左侧菜单
  1573. */
  1574. public function dateList()
  1575. {
  1576. }
  1577. /**
  1578. * 车缝派单菜单
  1579. * @return void
  1580. */
  1581. public function CfmachineList()
  1582. {
  1583. if ($this->request->isGet() === false) {
  1584. $this->error('请求错误');
  1585. }
  1586. // 查询所有生产工序为"车缝"的设备编号和设备编组
  1587. $machineList = \db('设备_基本资料')
  1588. ->where('生产工序', '车缝')
  1589. ->field('设备编号, 设备编组')
  1590. ->order('设备编号') // 按设备编号排序
  1591. ->select();
  1592. $result = [];
  1593. foreach ($machineList as $machine) {
  1594. $machineCode = $machine['设备编号'];
  1595. $machineGroup = $machine['设备编组'];
  1596. // 查询该设备编号在 设备_产量计酬 表中的订单编号及日期
  1597. $orders = \db('设备_产量计酬')
  1598. ->where('sczl_jtbh', $machineCode)
  1599. ->where('mod_rq', null)
  1600. ->order('sys_rq asc') // 按生产日期升序排序
  1601. ->select();
  1602. // 根据月份分组统计订单数量
  1603. $monthlyOrders = [];
  1604. foreach ($orders as $order) {
  1605. $yearMonth = date('Ym', strtotime($order['sys_rq']));
  1606. if (!isset($monthlyOrders[$yearMonth])) {
  1607. $monthlyOrders[$yearMonth] = [];
  1608. }
  1609. $monthlyOrders[$yearMonth][] = $order['订单编号'];
  1610. }
  1611. // 构建返回数据,格式为:设备编号【设备编组 生产中:工单数量】
  1612. foreach ($monthlyOrders as $yearMonth => $orderList) {
  1613. $workOrderCount = count(array_unique($orderList));
  1614. if (!isset($result[$yearMonth])) {
  1615. $result[$yearMonth] = [];
  1616. }
  1617. // 使用集合来去重设备编号
  1618. $deviceKey = $machineCode . '【' . $machineGroup . ' 生产中:' . $workOrderCount . '】';
  1619. if (!in_array($deviceKey, $result[$yearMonth])) {
  1620. $result[$yearMonth][] = $deviceKey;
  1621. }
  1622. }
  1623. }
  1624. // 按月份排序,确保最新的月份在前面
  1625. krsort($result);
  1626. $this->success('成功', $result);
  1627. }
  1628. /**
  1629. * 车缝派单列表
  1630. */
  1631. public function CfdataList()
  1632. {
  1633. if ($this->request->isGet() === false) {
  1634. $this->error('请求错误');
  1635. }
  1636. $param = $this->request->param();
  1637. if (empty($param['machine']) || empty($param['date'])) {
  1638. $this->error('参数错误');
  1639. }
  1640. // 将传入的 YYYYMM 格式日期转换为 YYYY-MM-01
  1641. $year = substr($param['date'], 0, 4);
  1642. $month = substr($param['date'], 4, 2);
  1643. $startDate = "$year-$month-01 00:00:00";
  1644. $endDate = date("Y-m-t 23:59:59", strtotime($startDate)); // 获取该月的最后一天
  1645. // 查询设备产量计酬与工单基本资料的关联数据
  1646. $list = \db('设备_产量计酬')->alias('c')
  1647. ->join('工单_基本资料 j', 'c.订单编号 = j.订单编号', 'left')
  1648. ->where('c.sczl_jtbh', $param['machine'])
  1649. ->where('c.mod_rq', null)
  1650. ->where('c.sczl_rq', '>=', $startDate)
  1651. ->where('c.sczl_rq', '<=', $endDate)
  1652. ->field('
  1653. c.订单编号, c.款号 as 生产款号, j.款式, j.客户编号, j.订单数量,
  1654. LEFT(j.落货日期, 10) as 落货日期,j.工单入仓数量 as 工单完工数量,j.订单数量,
  1655. c.sczl_rq as 创建时间, j.gd_statu as 工单状态
  1656. ')
  1657. ->group('c.订单编号')
  1658. ->select();
  1659. // 返回数组结果
  1660. $this->success('请求成功', ['table' => $list, 'length' => count($list)]);
  1661. }
  1662. //
  1663. // /**车缝派单菜单
  1664. // * @return void
  1665. // */
  1666. // public function CfmachineList()
  1667. // {
  1668. // if ($this->request->isGet() === false) {
  1669. // $this->error('请求错误');
  1670. // }
  1671. //
  1672. // // 查询所有生产工序为"车缝"的设备编号和设备编组
  1673. // $machineList = \db('设备_基本资料')
  1674. // ->where('生产工序', '车缝')
  1675. // ->field('设备编号, 设备编组')
  1676. // ->order('设备编号') // 按设备编号排序
  1677. // ->select();
  1678. //
  1679. // $result = [];
  1680. // $addedMachineCodes = []; // 用于跟踪已经添加的设备编号
  1681. //
  1682. // foreach ($machineList as $machine) {
  1683. // $machineCode = $machine['设备编号'];
  1684. // $machineGroup = $machine['设备编组'];
  1685. //
  1686. // // 检查是否已经添加过该设备编号
  1687. // if (in_array($machineCode, $addedMachineCodes)) {
  1688. // continue; // 跳过已添加的设备
  1689. // }
  1690. //
  1691. // // 查询该设备编号在 设备_产量计酬 表中的订单编号
  1692. // $orders = \db('设备_产量计酬')
  1693. // ->where('sczl_jtbh', $machineCode)
  1694. // ->order('sys_rq desc')
  1695. // ->where('mod_rq', null)
  1696. // ->column('订单编号');
  1697. //
  1698. // // 去重统计订单编号数量
  1699. // $workOrderCount = count(array_unique($orders));
  1700. //
  1701. // // 构建返回数据,格式为:设备编号【设备编组 生产中:工单数量】
  1702. // $result[] = $machineCode . '【' . $machineGroup . ' 生产中:' . $workOrderCount . '】';
  1703. //
  1704. // // 将设备编号添加到跟踪数组中
  1705. // $addedMachineCodes[] = $machineCode;
  1706. // }
  1707. //
  1708. // $yearMonth = date('Ym');
  1709. // $finalResult = [
  1710. // $yearMonth => $result
  1711. // ];
  1712. //
  1713. // $this->success('成功', $finalResult);
  1714. // }
  1715. //
  1716. //
  1717. // /**
  1718. // * 车缝派单列表
  1719. // */
  1720. // public function CfdataList()
  1721. // {
  1722. // if ($this->request->isGet() === false) {
  1723. // $this->error('请求错误');
  1724. // }
  1725. //
  1726. // $param = $this->request->param();
  1727. // if (empty($param)) {
  1728. // $this->error('参数错误');
  1729. // }
  1730. //
  1731. // // 查询设备产量计酬与工单基本资料的关联数据
  1732. // $list = \db('设备_产量计酬')->alias('c')
  1733. // ->join('工单_基本资料 j', 'c.订单编号 = j.订单编号', 'left')
  1734. // ->where('c.sczl_jtbh', $param['machine'])
  1735. // ->where('c.mod_rq', null)
  1736. // ->field('
  1737. // c.订单编号, c.款号, j.款式, j.客户编号, j.订单数量,
  1738. // LEFT(j.落货日期, 10) as 落货日期,
  1739. // j.Sys_rq as 创建时间, j.gd_statu as 工单状态
  1740. // ')
  1741. // ->group('c.订单编号')
  1742. // ->select();
  1743. //
  1744. //
  1745. // // 返回数组结果
  1746. // $this->success('请求成功', ['table' => $list, 'length' => count($list)]);
  1747. // }
  1748. //车缝派单删除
  1749. public function CfdataDel()
  1750. {
  1751. if ($this->request->isGet() === false)
  1752. {
  1753. $this->error('请求错误');
  1754. }
  1755. $param = $this->request->param();
  1756. if (empty($param)){
  1757. $this->error('参数错误');
  1758. }
  1759. $sql = \db('工单_排程班次')
  1760. ->where('UniqId',$param['UniqId'])
  1761. ->fetchSql(true)
  1762. ->update(['mod_rq'=>date('Y-m-d H:i:s',time())]);
  1763. $res = \db()->query($sql);
  1764. if ($res !== false){
  1765. $this->success('删除成功');
  1766. }else{
  1767. $this->error('删除失败');
  1768. }
  1769. }
  1770. //车缝派单数据
  1771. public function CfdataAllList()
  1772. {
  1773. if ($this->request->isGet() === false){
  1774. $this->error('请求错误');
  1775. }
  1776. $list = \db('工单_排程班次')
  1777. ->where('mod_rq',null)
  1778. ->order('sys_rq desc')
  1779. ->field('订单编号,子订单编号,班组编号,sys_rq as 创建时间,sys_id as 创建人员,UniqId')
  1780. ->group('子订单编号')
  1781. ->select();
  1782. $this->success('成功',$list);
  1783. }
  1784. }