request->isGet()) { $this->error('请求方法错误'); } $params = $this->request->param(); if (empty($params['machine'])) { $this->error('机台编号不能为空'); } //获取大工序 $majorprocess = db('设备_基本资料') ->where('设备编号', $params['machine']) ->field('生产工序,设备编组') ->find(); if (empty($majorprocess)) { $this->error('设备信息'); } //小组信息 // $person = db('人员_小组资料') // ->where('team_name', $majorprocess['设备编组']) // ->where('status', 1) // ->field('team_name as 小组名称,staff_no as 员工编号,staff_name as 员工姓名') // ->select(); $person = Db::name('人员_小组资料')->alias('a') ->field(' b.staff_no as 员工编号, b.staff_name as 员工姓名, a.team_name as 小组名称 ') ->join('人员_基本资料 b', 'a.staff_no = b.staff_no') ->where('a.team_name', $majorprocess['设备编组']) ->whereNull('a.mod_rq') ->whereNull('b.mod_rq') ->order('a.id asc') ->select(); if (empty($person)) { $this->error('未找到人员信息'); } $data['majorprocess'] = $majorprocess; $data['person'] = $person; $this->success('成功', $data); } /** * 获取订单工艺数据 * @ApiMethod (GET) * @param string $workorder 工单编号 * @param string $majorprocess 大工序 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException * */ public function GetOrderProcess() { if (!$this->request->isGet()) { $this->error('请求方法错误'); } $params = $this->request->param(); if (empty($params['workorder'])) { $this->error('工单编号不能为空'); } if (empty($params['majorprocess'])) { $this->error('大工序不能为空'); } $data = []; if($params['majorprocess'] == '车缝'){ //获取部件资料 $data = db('工单_部件资料') ->where('work_order', $params['workorder']) ->where('del_rq', null) ->where('status', 1) ->field('part_code as 部件编号,part_name as 部件名称') ->order('part_code') ->select(); if (empty($data)) { $this->error('未找到部件资料'); } }else{ $data = db('工单_基础工艺资料') ->where('work_order', $params['workorder']) ->where('big_process', $params['majorprocess']) ->where('del_rq', null) ->field('process_code as 工艺编号,process_name as 工艺名称,standard_hour as 标准工时, standard_score as 标准工分,coefficient as 系数,remark as 备注') ->order('process_code') ->select(); if (empty($data)) { $this->error('未找到工艺数据'); } } $this->success('成功', $data); } /** * 获取车缝部件的工艺资料 * @ApiMethod (GET) * @param string $part_code 部件编号 * @param string $workorder 工单编号 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function GetCarProcess() { if (!$this->request->isGet()) { $this->error('请求方法错误'); } $params = $this->request->param(); if (empty($params['workorder'])) { $this->error('工单编号不能为空'); } if (empty($params['part_code'])) { $this->error('部件编号不能为空'); } $data = db('工单_基础工艺资料') ->where('work_order', $params['workorder']) ->where('part_code', $params['part_code']) ->where('big_process', '车缝') ->where('del_rq', null) ->field('process_code as 工艺编号,process_name as 工艺名称,standard_hour as 标准工时, standard_score as 标准工分,coefficient as 系数,remark as 备注') ->order('process_code') ->select(); $this->success('成功', $data); } /** * 工分报工接口 * @ApiMethod (POST) * @param array $list 报工数据 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function ReportingWork() { if (!$this->request->isPost()) { $this->error('请求方法错误'); } $params = $this->request->post(); $reportList = []; if (isset($params[0]) && is_array($params[0])) { $reportList = $params; } elseif (!empty($params['list']) && is_array($params['list'])) { $reportList = $params['list']; } elseif (!empty($params['data']) && is_array($params['data'])) { $reportList = $params['data']; } else { $rawBody = file_get_contents('php://input'); $decoded = json_decode($rawBody, true); if (is_array($decoded)) { if (isset($decoded[0]) && is_array($decoded[0])) { $reportList = $decoded; } elseif (!empty($decoded['list']) && is_array($decoded['list'])) { $reportList = $decoded['list']; } elseif (!empty($decoded['data']) && is_array($decoded['data'])) { $reportList = $decoded['data']; } } } if (empty($reportList)) { $this->error('请传入报工数据'); } $insertData = []; $now = date('Y-m-d H:i:s'); foreach ($reportList as $idx => $item) { $rowNo = $idx + 1; if (empty($item['staff_no'])) { $this->error('第' . $rowNo . '条员工编号不能为空'); } if (empty($item['staff_name'])) { $this->error('第' . $rowNo . '条员工姓名不能为空'); } if (empty($item['work_order']) && empty($item['workorder'])) { $this->error('第' . $rowNo . '条订单编号不能为空'); } if (empty($item['majorprocess'])) { $this->error('第' . $rowNo . '条大工序不能为空'); } $isSewing = $item['majorprocess'] === '车缝'; if ($isSewing && (!isset($item['part_code']) || $item['part_code'] === '')) { $this->error('第' . $rowNo . '条车缝工序必须填写部件编号'); } if (empty($item['process_code'])) { $this->error('第' . $rowNo . '条工艺编号不能为空'); } if (empty($item['process_name'])) { $this->error('第' . $rowNo . '条工艺名称不能为空'); } if (!isset($item['standard_hour']) || $item['standard_hour'] === '') { $this->error('第' . $rowNo . '条标准工时不能为空'); } if (!isset($item['standard_score']) || $item['standard_score'] === '') { $this->error('第' . $rowNo . '条标准工分不能为空'); } if (!isset($item['number']) || $item['number'] === '') { $this->error('第' . $rowNo . '条产量不能为空'); } $standardHour = floatval($item['standard_hour']); $standardScore = floatval($item['standard_score']); $coefficient = isset($item['coefficient']) && $item['coefficient'] !== '' ? floatval($item['coefficient']) : 1; $number = floatval($item['number']); $productionHour = $standardHour * $number * $coefficient; $productionScore = $standardScore * $number * $coefficient; $partCode = null; if (isset($item['part_code']) && $item['part_code'] !== '') { $partCode = intval($item['part_code']); } $insertData[] = [ 'staff_no' => $item['staff_no'], 'staff_name' => $item['staff_name'], 'work_order' => !empty($item['work_order']) ? $item['work_order'] : $item['workorder'], 'date' => !empty($item['date']) ? $item['date'] : date('Y-m-d'), 'majorprocess' => $item['majorprocess'], 'part_code' => $partCode, 'process_code' => $item['process_code'], 'process_name' => $item['process_name'], 'standard_hour' => $standardHour, 'standard_score' => $standardScore, 'coefficient' => $coefficient, 'number' => $number, 'production_hour' => round($productionHour, 4), 'production_score' => round($productionScore, 4), 'salary' => round($productionScore*0.5,2), 'machine' => isset($item['machine']) ? $item['machine'] : '', 'sys_id' => isset($item['sys_id']) ? $item['sys_id'] : '', 'sys_rq' => $now, 'mod_id' => isset($item['mod_id']) ? $item['mod_id'] : '', 'mod_rq' => null, 'del_rq' => null, ]; } Db::startTrans(); try { $result = db('设备_工分计酬')->insertAll($insertData); if ($result === false) { Db::rollback(); $this->error('报工失败'); } Db::commit(); } catch (\Exception $e) { Db::rollback(); $this->error('报工失败:' . $e->getMessage()); } $this->success('报工成功', ['count' => count($insertData)]); } //报工工分数据表左侧菜单栏 public function GetReportingWorkLeft() { if (!$this->request->isGet()) { $this->error('请求方法错误'); } $startDate = date('Y-m-d', strtotime('-39 day')); $endDate = date('Y-m-d'); $list = db('设备_工分计酬') ->where('del_rq', null) ->where('date', 'between time', [$startDate, $endDate]) ->where('machine', '<>', '') ->field('machine,date') ->order('machine asc,date desc') ->select(); $menuMap = []; foreach ($list as $row) { $machine = $row['machine']; $date = $row['date']; if (!isset($menuMap[$machine])) { $menuMap[$machine] = []; } if (!in_array($date, $menuMap[$machine])) { $menuMap[$machine][] = $date; } } $data = []; foreach ($menuMap as $machine => $dateList) { $children = []; foreach ($dateList as $date) { $children[] = [ 'date' => $date, ]; } $data[] = [ 'machine' => $machine, 'children' => $children, ]; } $this->success('成功', $data); } /** * 机台报工数据 * @ApiMethod (GET) * @param string $date 日期 * @param string $machine 机台编号 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function GetReportingWorkData() { if (!$this->request->isGet()) { $this->error('请求方法错误'); } $params = $this->request->param(); if (empty($params['date'])) { $this->error('日期不能为空'); } if (empty($params['machine'])) { $this->error('机台编号不能为空'); } $rows = db('设备_工分计酬') ->where('del_rq', null) ->where('date', $params['date']) ->where('machine', $params['machine']) ->field('id,work_order,majorprocess,part_code,process_code,process_name,staff_no,staff_name,standard_hour,standard_score,coefficient,number,production_hour,production_score,machine,sys_id,sys_rq') ->order('process_code asc,staff_no asc') ->select(); $processMap = []; foreach ($rows as $row) { $groupKey = $row['majorprocess'] . '|' . $row['process_code'] . '|' . $row['process_name'] . '|' . $row['part_code']; if (!isset($processMap[$groupKey])) { $processMap[$groupKey] = [ 'work_order' => $row['work_order'], 'majorprocess' => $row['majorprocess'], 'part_code' => $row['part_code'], 'process_code' => $row['process_code'], 'process_name' => $row['process_name'], 'machine' => $row['machine'], 'date' => $params['date'], 'staffs' => [], ]; } $processMap[$groupKey]['staffs'][] = [ 'staff_no' => $row['staff_no'], 'staff_name' => $row['staff_name'], 'standard_hour' => $row['standard_hour'], 'standard_score' => $row['standard_score'], 'coefficient' => $row['coefficient'], 'number' => $row['number'], 'production_hour' => $row['production_hour'], 'production_score' => $row['production_score'], 'sys_id' => $row['sys_id'], 'sys_rq' => $row['sys_rq'], 'id' => $row['id'], ]; } $data = array_values($processMap); $this->success('成功', $data); } /** * 修改报工数据 * @ApiMethod (POST) * @param array $list 报工数据 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function UpdateReportingWork() { if (!$this->request->isPost()) { $this->error('请求方法错误'); } $params = $this->request->post(); if (empty($params['id'])) { $this->error('ID不能为空'); } if (empty($params['mod_id'])) { $this->error('修改人不能为空'); } $data = [ 'mod_id' => $params['mod_id'], 'mod_rq' => date('Y-m-d H:i:s'), 'number' => $params['number'], 'production_hour' => $params['production_hour'], 'production_score' => $params['production_score'], 'salary' => $params['production_score'] * 0.5, ]; $result = db('设备_工分计酬') ->where('id', $params['id']) ->update($data); if ($result === false) { $this->error('修改失败'); } $this->success('修改成功'); } /** * 删除报工数据 * @ApiMethod (POST) * @param array $id ID * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function DeleteReportingWork() { if (!$this->request->isPost()) { $this->error('请求方法错误'); } $params = $this->request->post(); if (empty($params['id'])) { $this->error('ID不能为空'); } $data = [ 'del_rq' => date('Y-m-d H:i:s'), ]; $result = db('设备_工分计酬') ->where('id', $params['id']) ->update($data); if ($result === false) { $this->error('删除失败'); } $this->success('删除成功'); } /** * 查询机台报工记录 * @ApiMethod (GET) * @param string $date 日期 * @param string $machine 机台编号 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function GetReportingWorkRecord() { if (!$this->request->isGet()) { $this->error('请求方法错误'); } $params = $this->request->param(); if (empty($params['date'])) { $this->error('日期不能为空'); } if (empty($params['machine'])) { $this->error('机台编号不能为空'); } $rows = db('设备_工分计酬') ->where('del_rq', null) ->where('date', 'like', $params['date'] . '%') ->where('machine', $params['machine']) ->field('work_order,majorprocess,part_code,process_code,process_name,staff_no,staff_name,standard_hour,standard_score,coefficient,number,production_hour,production_score,machine,sys_id,sys_rq') ->order('process_code asc,staff_no asc') ->select(); $this->success('成功', $rows); } }