Manufacture.php 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515
  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. if ($this->request->isGet() === false) {
  906. $this->error('请求错误');
  907. }
  908. $date = date('Y-m-d 00:00:00', time() - 1888000);
  909. $clwhere['mod_rq'] = null;
  910. // $clwhere['sczl_jtbh'] = 'CQ03';
  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. ->where($clwhere)
  918. ->order('sczl_rq desc')
  919. ->select();
  920. $list = ['裁剪','车缝', '手工', '大烫', '总检', '包装'];
  921. $MachineList = \db('设备_基本资料')
  922. ->where('生产工序', 'in', $list)
  923. ->select();
  924. $data = [];
  925. foreach ($list as $m => $n) {
  926. $data[$n] = [];
  927. foreach ($MachineList as $key => $value) {
  928. if ($n === $value['生产工序']) {
  929. $data[$n][$value['设备编号'] . '--' . $value['设备编组']] = [];
  930. foreach ($arr as $k => $v) {
  931. if ($value['设备编号'] === $v['机台编号']) {
  932. array_push($data[$n][$value['设备编号'] . '--' . $value['设备编组']], $v['时间']);
  933. }
  934. }
  935. }
  936. }
  937. }
  938. // 将数据转换为所需格式,保留月份和日期
  939. $formattedData = [];
  940. foreach ($data as $process => $machines) {
  941. foreach ($machines as $machine => $dates) {
  942. foreach ($dates as $date) {
  943. $yearMonth = substr($date, 0, 7); // 年份
  944. $monthDay = substr($date, 5, 5); // 月份和日期,如 "10-28"
  945. // 初始化年份、工序和机器信息
  946. if (!isset($formattedData[$yearMonth])) {
  947. $formattedData[$yearMonth] = [];
  948. }
  949. if (!isset($formattedData[$yearMonth][$process])) {
  950. $formattedData[$yearMonth][$process] = [];
  951. }
  952. if (!isset($formattedData[$yearMonth][$process][$machine])) {
  953. $formattedData[$yearMonth][$process][$machine] = [];
  954. }
  955. // 将月份和日期加入到对应机器的数组中
  956. if (!in_array($monthDay, $formattedData[$yearMonth][$process][$machine])) {
  957. $formattedData[$yearMonth][$process][$machine][] = $monthDay;
  958. }
  959. }
  960. }
  961. }
  962. // 对年月份进行降序排序,使最新的月份在最上面
  963. krsort($formattedData);
  964. $this->success('成功', $formattedData);
  965. }
  966. /**
  967. * 月度车间报工汇总-列表数据
  968. */
  969. public function MachineDetail(){
  970. if ($this->request->isGet() === false){
  971. $this->error('请求错误');
  972. }
  973. $param = $this->request->param();
  974. if (empty($param)){
  975. $this->error('参数错误');
  976. }
  977. $where = [];
  978. if (isset($param['date'])) {
  979. // 检查 `date` 的格式是否为 "YYYY-MM" 或 "MM-DD"
  980. if (preg_match('/^\d{4}-\d{2}$/', $param['date'])) {
  981. // 如果格式为 "YYYY-MM",则查询当月数据
  982. $where['a.sys_rq'] = ['like', "{$param['date']}%"];
  983. } elseif (preg_match('/^\d{2}-\d{2}$/', $param['date'])) {
  984. // 如果格式为 "MM-DD",则查询指定的月份和日期
  985. $monthDay = $param['date'];
  986. $where['a.sys_rq'] = ['like', "%-$monthDay%"];
  987. }
  988. }
  989. // 判断是否传入订单编号参数
  990. if(!empty($param['order'])){
  991. $where['b.订单编号|b.款号'] = ['like','%'.$param['order'].'%'];
  992. }
  993. $where['a.sczl_jtbh'] = $param['machine'];//机台号
  994. $list = \db('设备_产量计酬')->alias('a')
  995. ->join('工单_印件资料 b', 'b.订单编号 = a.订单编号 AND a.子订单编号 = a.子订单编号')
  996. ->join('工单_基本资料 j', 'b.订单编号 = j.订单编号', 'LEFT')
  997. ->field('
  998. b.订单编号, b.子订单编号, b.款号, b.颜色, b.船样, a.尺码, b.zdtotal as 制单数,b.颜色备注,
  999. a.数量, MIN(a.sys_rq) as 上报时间,a.UniqId,
  1000. j.客户编号,j.生产款号,j.款式
  1001. ')
  1002. ->where($where)
  1003. ->where('a.mod_rq',null)
  1004. ->order('a.UniqId asc')
  1005. ->group('a.UniqId')
  1006. ->select();
  1007. // 提取所有的尺码,并去重
  1008. $sizeList = array_values(array_unique(array_column($list, '尺码')));
  1009. // 动态将尺码的数量添加到每个订单中,并替换已完成字段
  1010. foreach ($list as &$item) {
  1011. $size = $item['尺码'];
  1012. $item[$size] = $item['数量'];
  1013. // unset($item['数量']);
  1014. }
  1015. sort($sizeList);
  1016. // 返回结果
  1017. $this->success('请求成功', [
  1018. 'table' => $list,
  1019. 'length' => count($list),
  1020. 'headers' => $sizeList // 返回所有的尺码作为表头
  1021. ]);
  1022. }
  1023. /**
  1024. * 工单审核
  1025. * @return void
  1026. * @throws \think\Exception
  1027. * @throws \think\db\exception\BindParamException
  1028. * @throws \think\exception\PDOException
  1029. */
  1030. public function Approval()
  1031. {
  1032. if ($this->request->isPost() === false){
  1033. $this->error('请求错误');
  1034. }
  1035. $param = Request::instance()->post();
  1036. if (empty($param)){
  1037. $this->error('参数错误');
  1038. }
  1039. $data['审核'] = $param['sys_id'];
  1040. $data['审核日期'] = date('Y-m-d H:i:s');
  1041. $sql = \db('工单_基本资料')
  1042. ->where('Uniqid',$param['Uniqid'])
  1043. ->fetchSql(true)
  1044. ->update($data);
  1045. $res = \db()->query($sql);
  1046. if ($res === false){
  1047. $this->error('审核失败');
  1048. }else{
  1049. $this->success('审核成功');
  1050. }
  1051. }
  1052. /**
  1053. * 订单未审核列表
  1054. * @return void
  1055. * @throws \think\db\exception\DataNotFoundException
  1056. * @throws \think\db\exception\ModelNotFoundException
  1057. * @throws \think\exception\DbException
  1058. */
  1059. public function UnapprovalList()
  1060. {
  1061. if ($this->request->isGet() === false){
  1062. $this->error('请求错误');
  1063. }
  1064. $param = $this->request->param();
  1065. if (isset($param)){
  1066. $where['订单编号|生产款号'] = ['like','%'.$param['search'].'%'];
  1067. }
  1068. // $where['审核'] = null;
  1069. // $where['审核日期'] = null;
  1070. $where['Mod_rq'] = null;
  1071. $list = \db('工单_基本资料')
  1072. ->where($where)
  1073. ->orderRaw("FIELD(gd_statu, '1-计划中', '2-生产中')")
  1074. ->order('订单编号 desc')
  1075. ->select();
  1076. // 提取所有订单编号
  1077. $orderIds = array_column($list, '订单编号');
  1078. // 查询相关附件中是否存在这些订单编号
  1079. $relatedOrders = \db('工单_相关附件')
  1080. ->whereIn('关联编号', $orderIds)
  1081. ->whereIn('附件备注', '技术附件')
  1082. ->column('关联编号');
  1083. // 遍历数据,为每个订单设置 status
  1084. foreach ($list as &$value) {
  1085. if (in_array($value['订单编号'], $relatedOrders)) {
  1086. $value['status'] = '';
  1087. } else {
  1088. $value['status'] = '*';
  1089. }
  1090. }
  1091. $data['total'] = count($list);
  1092. $data['table'] = $list;
  1093. $this->success('成功',$data);
  1094. }
  1095. /**
  1096. * 月度客户订单汇总
  1097. */
  1098. public function OrderYieldList(){
  1099. // 获取前端传来的参数
  1100. $param = $this->request->param();
  1101. // 处理搜索条件
  1102. if (isset($param['search'])){
  1103. $where['j.订单编号|j.生产款号'] = ['like','%'.$param['search'].'%'];
  1104. }
  1105. if (isset($param['client'])){
  1106. $where['j.客户编号'] = $param['client'];
  1107. }
  1108. if (isset($param['date'])) {
  1109. $year = substr($param['date'], 0, 4);
  1110. $month = substr($param['date'], 4, 2);
  1111. $where['j.Sys_rq'] = ['like', "$year-$month%"];
  1112. }
  1113. // 只查询生产中的工单
  1114. $where['j.gd_statu'] = '2-生产中';
  1115. $where['j.Mod_rq'] = null;
  1116. $orderList = \db('工单_基本资料')
  1117. ->alias('j')
  1118. ->join('工单_印件资料 y', 'j.订单编号 = y.订单编号')
  1119. ->field('y.订单编号, j.落货日期, j.生产款号, j.款式, SUM(y.sctotal) as 裁剪总数, SUM(y.zdtotal) as 制单总数')
  1120. ->group('y.订单编号') // 去重订单编号
  1121. ->where($where)
  1122. ->select();
  1123. $orderIds = array_column($orderList, '订单编号');
  1124. // 通过订单编号关联设备_产量计酬表,获取工序名称和数量,并进行分组和汇总
  1125. $processList = \db('设备_产量计酬')
  1126. ->alias('a')
  1127. ->join('工单_基本资料 j', 'a.订单编号 = j.订单编号')
  1128. ->whereIn('a.订单编号', $orderIds) // 只查询符合条件的订单编号
  1129. ->field('a.订单编号, a.工序名称, SUM(a.数量) as 总数量')
  1130. ->group('a.订单编号, a.工序名称') // 按订单编号和工序名称分组
  1131. ->select();
  1132. // 合并两个结果
  1133. $data = [];
  1134. foreach ($orderList as $key => $order) {
  1135. // 去掉落货日期的时间部分,只保留日期
  1136. $orderDate = substr($order['落货日期'], 0, 10); // 提取前10位
  1137. //放入结果
  1138. $data[$key] = [
  1139. '订单编号' => $order['订单编号'],
  1140. '落货日期' => $order['落货日期'],
  1141. '生产款号' => $order['生产款号'],
  1142. '款式' => $order['款式'],
  1143. '裁剪总数' => $order['裁剪总数'],
  1144. '制单总数' => $order['制单总数'],
  1145. ];
  1146. // 找到该订单编号对应的工序名称和数量
  1147. foreach ($processList as $process) {
  1148. if ($process['订单编号'] === $order['订单编号']) {
  1149. // 将工序名称和数量加入到结果中
  1150. $data[$key][$process['工序名称']] = $process['总数量'];
  1151. }
  1152. }
  1153. }
  1154. // 返回最终结果
  1155. $this->success('成功', $data);
  1156. die;
  1157. // // 判断是否是GET请求
  1158. // if ($this->request->isGet() === false){
  1159. // $this->error('请求错误');
  1160. // }
  1161. //
  1162. // // 获取请求参数
  1163. // $param = $this->request->param();
  1164. //
  1165. // // 处理搜索条件
  1166. // if (isset($param['search'])){
  1167. // $where['a.订单编号'] = ['like','%'.$param['search'].'%'];
  1168. // }
  1169. // if (isset($param['client'])){
  1170. // $where['b.客户编号'] = $param['client'];
  1171. // }
  1172. // if (isset($param['date'])) {
  1173. // $year = substr($param['date'], 0, 4);
  1174. // $month = substr($param['date'], 4, 2);
  1175. // $where['b.Sys_rq'] = ['like', "$year-$month%"];
  1176. // }
  1177. // // 只查询生产中的工单
  1178. // $where['b.gd_statu'] = '2-生产中';
  1179. // $where['b.Mod_rq'] = null;
  1180. //
  1181. // // 查询第一个表,获取产量信息,添加a.sys_rq字段
  1182. // $list = \db('设备_产量计酬')->alias('a')
  1183. // ->join('工单_基本资料 b', 'a.订单编号 = b.订单编号')
  1184. // ->join('工单_印件资料 c', 'a.订单编号 = c.订单编号 AND a.子订单编号 = c.子订单编号')
  1185. // ->field('b.订单编号, SUM(c.zdtotal) as 制单总数, SUM(c.sctotal) as 裁剪总数, SUM(a.数量) as 产量, a.工序名称, b.落货日期,
  1186. // c.颜色, a.sys_rq')
  1187. // ->where($where)
  1188. // ->whereNotNull('c.sc_rq')
  1189. // ->group('a.子订单编号, a.工序名称, c.颜色')
  1190. // ->order('c.Uniqid')
  1191. // ->select();
  1192. //
  1193. //
  1194. // // 查询第二个表,获取订单的基本信息
  1195. // $orderList = \db('工单_印件资料')
  1196. // ->alias('a')
  1197. // ->join('工单_基本资料 b', 'a.订单编号 = b.订单编号')
  1198. // ->field('a.订单编号, b.生产款号, SUM(a.zdtotal) as 制单总数, SUM(a.sctotal) as 裁剪总数, b.落货日期,
  1199. // a.颜色, a.ck_rq as 出库日期')
  1200. // ->where($where)
  1201. // ->whereNotNull('a.sc_rq')
  1202. // ->group('a.子订单编号, a.颜色')
  1203. // ->order('a.Uniqid')
  1204. // ->select();
  1205. //
  1206. // $data = [];
  1207. //
  1208. // // 合并两个查询结果
  1209. // foreach ($orderList as $key => $value){
  1210. // $data[$key] = $value; // 先将订单基本信息放入$data
  1211. // foreach ($list as $k => $v){
  1212. // if ($value['订单编号'] === $v['订单编号'] && $value['颜色'] === $v['颜色']) {
  1213. // // 根据工序名称,将对应的产量数据加入到订单信息中
  1214. // if (!isset($data[$key][$v['工序名称']])){
  1215. // $data[$key][$v['工序名称']] = $v['产量'];
  1216. // }
  1217. // // 添加sys_rq到结果
  1218. // $data[$key]['sys_rq'] = $v['sys_rq'];
  1219. // }
  1220. // }
  1221. // }
  1222. //
  1223. // // 返回成功的结果,包含合并后的数据
  1224. // $this->success('成功', $data);
  1225. }
  1226. /**
  1227. * 订单状态及样衣批核-左侧菜单
  1228. */
  1229. public function dateList()
  1230. {
  1231. }
  1232. /**
  1233. * 车缝派单菜单
  1234. * @return void
  1235. */
  1236. public function CfmachineList()
  1237. {
  1238. if ($this->request->isGet() === false) {
  1239. $this->error('请求错误');
  1240. }
  1241. // 查询所有生产工序为"车缝"的设备编号和设备编组
  1242. $machineList = \db('设备_基本资料')
  1243. ->where('生产工序', '车缝')
  1244. ->field('设备编号, 设备编组')
  1245. ->order('设备编号') // 按设备编号排序
  1246. ->select();
  1247. $result = [];
  1248. foreach ($machineList as $machine) {
  1249. $machineCode = $machine['设备编号'];
  1250. $machineGroup = $machine['设备编组'];
  1251. // 查询该设备编号在 设备_产量计酬 表中的订单编号及日期
  1252. $orders = \db('设备_产量计酬')
  1253. ->where('sczl_jtbh', $machineCode)
  1254. ->where('mod_rq', null)
  1255. ->order('sys_rq asc') // 按生产日期升序排序
  1256. ->select();
  1257. // 根据月份分组统计订单数量
  1258. $monthlyOrders = [];
  1259. foreach ($orders as $order) {
  1260. $yearMonth = date('Ym', strtotime($order['sys_rq']));
  1261. if (!isset($monthlyOrders[$yearMonth])) {
  1262. $monthlyOrders[$yearMonth] = [];
  1263. }
  1264. $monthlyOrders[$yearMonth][] = $order['订单编号'];
  1265. }
  1266. // 构建返回数据,格式为:设备编号【设备编组 生产中:工单数量】
  1267. foreach ($monthlyOrders as $yearMonth => $orderList) {
  1268. $workOrderCount = count(array_unique($orderList));
  1269. if (!isset($result[$yearMonth])) {
  1270. $result[$yearMonth] = [];
  1271. }
  1272. // 使用集合来去重设备编号
  1273. $deviceKey = $machineCode . '【' . $machineGroup . ' 生产中:' . $workOrderCount . '】';
  1274. if (!in_array($deviceKey, $result[$yearMonth])) {
  1275. $result[$yearMonth][] = $deviceKey;
  1276. }
  1277. }
  1278. }
  1279. // 按月份排序,确保最新的月份在前面
  1280. krsort($result);
  1281. $this->success('成功', $result);
  1282. }
  1283. /**
  1284. * 车缝派单列表
  1285. */
  1286. public function CfdataList()
  1287. {
  1288. if ($this->request->isGet() === false) {
  1289. $this->error('请求错误');
  1290. }
  1291. $param = $this->request->param();
  1292. if (empty($param['machine']) || empty($param['date'])) {
  1293. $this->error('参数错误');
  1294. }
  1295. // 将传入的 YYYYMM 格式日期转换为 YYYY-MM-01
  1296. $year = substr($param['date'], 0, 4);
  1297. $month = substr($param['date'], 4, 2);
  1298. $startDate = "$year-$month-01 00:00:00";
  1299. $endDate = date("Y-m-t 23:59:59", strtotime($startDate)); // 获取该月的最后一天
  1300. // 查询设备产量计酬与工单基本资料的关联数据
  1301. $list = \db('设备_产量计酬')->alias('c')
  1302. ->join('工单_基本资料 j', 'c.订单编号 = j.订单编号', 'left')
  1303. ->where('c.sczl_jtbh', $param['machine'])
  1304. ->where('c.mod_rq', null)
  1305. ->where('c.sczl_rq', '>=', $startDate)
  1306. ->where('c.sczl_rq', '<=', $endDate)
  1307. ->field('
  1308. c.订单编号, c.款号, j.款式, j.客户编号, j.订单数量,
  1309. LEFT(j.落货日期, 10) as 落货日期,
  1310. c.sczl_rq as 创建时间, j.gd_statu as 工单状态
  1311. ')
  1312. ->group('c.订单编号')
  1313. ->select();
  1314. // 返回数组结果
  1315. $this->success('请求成功', ['table' => $list, 'length' => count($list)]);
  1316. }
  1317. //
  1318. // /**车缝派单菜单
  1319. // * @return void
  1320. // */
  1321. // public function CfmachineList()
  1322. // {
  1323. // if ($this->request->isGet() === false) {
  1324. // $this->error('请求错误');
  1325. // }
  1326. //
  1327. // // 查询所有生产工序为"车缝"的设备编号和设备编组
  1328. // $machineList = \db('设备_基本资料')
  1329. // ->where('生产工序', '车缝')
  1330. // ->field('设备编号, 设备编组')
  1331. // ->order('设备编号') // 按设备编号排序
  1332. // ->select();
  1333. //
  1334. // $result = [];
  1335. // $addedMachineCodes = []; // 用于跟踪已经添加的设备编号
  1336. //
  1337. // foreach ($machineList as $machine) {
  1338. // $machineCode = $machine['设备编号'];
  1339. // $machineGroup = $machine['设备编组'];
  1340. //
  1341. // // 检查是否已经添加过该设备编号
  1342. // if (in_array($machineCode, $addedMachineCodes)) {
  1343. // continue; // 跳过已添加的设备
  1344. // }
  1345. //
  1346. // // 查询该设备编号在 设备_产量计酬 表中的订单编号
  1347. // $orders = \db('设备_产量计酬')
  1348. // ->where('sczl_jtbh', $machineCode)
  1349. // ->order('sys_rq desc')
  1350. // ->where('mod_rq', null)
  1351. // ->column('订单编号');
  1352. //
  1353. // // 去重统计订单编号数量
  1354. // $workOrderCount = count(array_unique($orders));
  1355. //
  1356. // // 构建返回数据,格式为:设备编号【设备编组 生产中:工单数量】
  1357. // $result[] = $machineCode . '【' . $machineGroup . ' 生产中:' . $workOrderCount . '】';
  1358. //
  1359. // // 将设备编号添加到跟踪数组中
  1360. // $addedMachineCodes[] = $machineCode;
  1361. // }
  1362. //
  1363. // $yearMonth = date('Ym');
  1364. // $finalResult = [
  1365. // $yearMonth => $result
  1366. // ];
  1367. //
  1368. // $this->success('成功', $finalResult);
  1369. // }
  1370. //
  1371. //
  1372. // /**
  1373. // * 车缝派单列表
  1374. // */
  1375. // public function CfdataList()
  1376. // {
  1377. // if ($this->request->isGet() === false) {
  1378. // $this->error('请求错误');
  1379. // }
  1380. //
  1381. // $param = $this->request->param();
  1382. // if (empty($param)) {
  1383. // $this->error('参数错误');
  1384. // }
  1385. //
  1386. // // 查询设备产量计酬与工单基本资料的关联数据
  1387. // $list = \db('设备_产量计酬')->alias('c')
  1388. // ->join('工单_基本资料 j', 'c.订单编号 = j.订单编号', 'left')
  1389. // ->where('c.sczl_jtbh', $param['machine'])
  1390. // ->where('c.mod_rq', null)
  1391. // ->field('
  1392. // c.订单编号, c.款号, j.款式, j.客户编号, j.订单数量,
  1393. // LEFT(j.落货日期, 10) as 落货日期,
  1394. // j.Sys_rq as 创建时间, j.gd_statu as 工单状态
  1395. // ')
  1396. // ->group('c.订单编号')
  1397. // ->select();
  1398. //
  1399. //
  1400. // // 返回数组结果
  1401. // $this->success('请求成功', ['table' => $list, 'length' => count($list)]);
  1402. // }
  1403. //车缝派单删除
  1404. public function CfdataDel()
  1405. {
  1406. if ($this->request->isGet() === false)
  1407. {
  1408. $this->error('请求错误');
  1409. }
  1410. $param = $this->request->param();
  1411. if (empty($param)){
  1412. $this->error('参数错误');
  1413. }
  1414. $sql = \db('工单_排程班次')
  1415. ->where('UniqId',$param['UniqId'])
  1416. ->fetchSql(true)
  1417. ->update(['mod_rq'=>date('Y-m-d H:i:s',time())]);
  1418. $res = \db()->query($sql);
  1419. if ($res !== false){
  1420. $this->success('删除成功');
  1421. }else{
  1422. $this->error('删除失败');
  1423. }
  1424. }
  1425. //车缝派单数据
  1426. public function CfdataAllList()
  1427. {
  1428. if ($this->request->isGet() === false){
  1429. $this->error('请求错误');
  1430. }
  1431. $list = \db('工单_排程班次')
  1432. ->where('mod_rq',null)
  1433. ->order('sys_rq desc')
  1434. ->field('订单编号,子订单编号,班组编号,sys_rq as 创建时间,sys_id as 创建人员,UniqId')
  1435. ->group('子订单编号')
  1436. ->select();
  1437. $this->success('成功',$list);
  1438. }
  1439. }