| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use \think\Request;
- use \think\Db;
- /**
- * 车间工分报工
- */
- class ReportingWork extends Api
- {
- protected $noNeedLogin = ['*'];
- protected $noNeedRight = ['*'];
- /** @var bool */
- private static $reportingWorkLogTableReady = false;
- /**
- * 根据机台编号获取大工序和人员信息
- * @ApiMethod (GET)
- * @param string $machine 机台编号
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function getMajorprocessAndPerson()
- {
- if (!$this->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 = db('工单_基础工艺资料')
- ->where('work_order', $params['workorder'])
- ->where('big_process', $params['majorprocess'])
- ->whereNull('del_rq')
- // ->where('status', 1)
- ->field('part_code as 部件编号,part_name as 部件名称')
- ->group('part_code')
- ->select();
- usort($data, function ($a, $b) {
- return strnatcmp((string)$a['部件编号'], (string)$b['部件编号']);
- });
- $this->success('成功', $data);
- }
- /**
- * 获取车缝部件的工艺资料
- * @ApiMethod (GET)
- * @param string $part_code 部件编号
- * @param string $workorder 工单编号
- * @param string $sys_id 小组名称(可选,传了则返回本组完成数)
- * @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('部件编号不能为空');
- }
- $sysId = isset($params['sys_id']) ? trim((string)$params['sys_id']) : '';
- $orderInfo = db('工单_基本资料')
- ->where('订单编号', $params['workorder'])
- ->whereNull('Mod_rq')
- ->field('订单数量')
- ->find();
- $manufactureQty = !empty($orderInfo) ? $orderInfo['订单数量'] : 0;
- $data = db('工单_基础工艺资料')
- ->where('work_order', $params['workorder'])
- ->where('part_code', $params['part_code'])
- ->whereNull('del_rq')
- // 已拆分母工序 status=1 不展示,仅返回可报工工序 status=0
- ->where('status', 0)
- ->field('process_code as 工艺编号,process_name as 工艺名称,standard_hour as 标准工时,standard_minutes as 标准分钟,
- standard_score as 标准工分,coefficient as 系数,remark as 备注,money as 金额,status')
- ->select();
- usort($data, function ($a, $b) {
- return strnatcmp((string)$a['工艺编号'], (string)$b['工艺编号']);
- });
- // 累计完成数:全部小组
- $reportList = db('设备_工分计酬')
- ->where('work_order', $params['workorder'])
- ->where('part_code', $params['part_code'])
- ->whereNull('del_rq')
- ->field('process_code, SUM(number) as completed_qty')
- ->group('process_code')
- ->select();
- $completedMap = [];
- foreach ($reportList as $report) {
- $completedMap[trim((string)$report['process_code'])] = floatval($report['completed_qty']);
- }
- // 本组完成数:按 sys_id(小组名称)过滤
- $groupCompletedMap = [];
- if ($sysId !== '') {
- $groupReportList = db('设备_工分计酬')
- ->where('work_order', $params['workorder'])
- ->where('part_code', $params['part_code'])
- ->where('sys_id', $sysId)
- ->whereNull('del_rq')
- ->field('process_code, SUM(number) as completed_qty')
- ->group('process_code')
- ->select();
- foreach ($groupReportList as $report) {
- $groupCompletedMap[trim((string)$report['process_code'])] = floatval($report['completed_qty']);
- }
- }
- foreach ($data as $key => $row) {
- $processCode = trim((string)$row['工艺编号']);
- $completedQty = $completedMap[$processCode] ?? 0;
- $groupCompletedQty = $groupCompletedMap[$processCode] ?? 0;
- $data[$key]['制造数量'] = $manufactureQty;
- $data[$key]['累计完成数'] = $completedQty;
- $data[$key]['本组完成数'] = $groupCompletedQty;
- $data[$key]['未完成数'] = floatval($manufactureQty) - $completedQty;
- }
- $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 = [];
- $logList = [];
- $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 (!isset($item['number']) || $item['number'] === '') {
- $this->error('第' . $rowNo . '条产量不能为空');
- }
- $workOrder = !empty($item['work_order']) ? trim((string)$item['work_order']) : trim((string)$item['workorder']);
- $processCode = trim((string)$item['process_code']);
- $partCode = null;
- if (isset($item['part_code']) && $item['part_code'] !== '') {
- $partCode = intval($item['part_code']);
- }
- $number = floatval($item['number']);
- if ($number <= 0) {
- $this->error('第' . $rowNo . '条产量必须大于0');
- }
- // 校验工序在工艺资料中仍存在,并以工艺表为准写入名称/工分(避免前端缓存旧数据)
- $processQuery = db('工单_基础工艺资料')
- ->where('work_order', $workOrder)
- ->where('process_code', $processCode)
- ->whereNull('del_rq');
- if ($partCode !== null) {
- $processQuery->where('part_code', $partCode);
- }
- $processInfo = $processQuery
- ->field('process_code,process_name,part_code,standard_hour,standard_minutes,standard_score,money,coefficient,big_process')
- ->find();
- if (empty($processInfo)) {
- $this->error('第' . $rowNo . '条工序不存在或已删除(订单' . $workOrder . ' 工序号' . $processCode
- . ($partCode !== null ? ' 部件' . $partCode : '') . '),请刷新工艺后重试');
- }
- $processName = trim((string)$processInfo['process_name']);
- $standardHour = floatval($processInfo['standard_hour']);
- $standardScore = floatval($processInfo['standard_score']);
- $standardMinutes = floatval($processInfo['standard_minutes']);
- $money = floatval($processInfo['money']);
- $coefficient = isset($processInfo['coefficient']) && $processInfo['coefficient'] !== ''
- ? $processInfo['coefficient']
- : (isset($item['coefficient']) && $item['coefficient'] !== '' ? $item['coefficient'] : 'C');
- if ($partCode === null && isset($processInfo['part_code']) && $processInfo['part_code'] !== '') {
- $partCode = intval($processInfo['part_code']);
- }
- $productionHour = round($standardHour * $number, 2);
- $productionScore = round($standardScore * $number, 2);
- $salary = $this->calcReportSalary($number, $standardScore);
- $sysId = isset($item['sys_id']) ? trim((string)$item['sys_id']) : '';
- $insertData[] = [
- 'staff_no' => $item['staff_no'],
- 'staff_name' => $item['staff_name'],
- 'work_order' => $workOrder,
- 'date' => !empty($item['date']) ? $item['date'] : date('Y-m-d'),
- 'majorprocess' => $item['majorprocess'],
- 'part_code' => $partCode,
- 'process_code' => $processCode,
- 'process_name' => $processName,
- 'standard_hour' => $standardHour,
- 'standard_score' => $standardScore,
- 'standard_minutes' => $standardMinutes,
- 'money' => $money,
- 'coefficient' => $coefficient,
- 'number' => $number,
- 'production_hour' => $productionHour,
- 'production_score' => $productionScore,
- 'salary' => $salary,
- 'machine' => isset($item['machine']) ? trim((string)$item['machine']) : '',
- 'sys_id' => $sysId,
- 'sys_rq' => $now,
- 'mod_id' => isset($item['mod_id']) ? $item['mod_id'] : '',
- 'mod_rq' => null,
- 'del_rq' => null,
- ];
- $logList[] = $this->buildReportingWorkLogRow([
- 'oper_type' => '新增报工',
- 'oper_user' => $sysId !== '' ? $sysId : (isset($item['mod_id']) ? $item['mod_id'] : ''),
- 'oper_time' => $now,
- 'work_order' => $workOrder,
- 'majorprocess' => $item['majorprocess'],
- 'part_code' => $partCode,
- 'process_code' => $processCode,
- 'process_name' => $processName,
- 'staff_no' => $item['staff_no'],
- 'staff_name' => $item['staff_name'],
- 'machine' => isset($item['machine']) ? trim((string)$item['machine']) : '',
- 'report_date' => !empty($item['date']) ? $item['date'] : date('Y-m-d'),
- ], '数量', '', (string)$number);
- }
- Db::startTrans();
- try {
- $result = db('设备_工分计酬')->insertAll($insertData);
- if ($result === false) {
- throw new \Exception('报工失败');
- }
- $this->writeReportingWorkLogs($logList);
- Db::commit();
- } catch (\think\exception\HttpResponseException $e) {
- throw $e;
- } 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', 'like', $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,money,coefficient,number,production_hour,production_score,
- salary,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'],
- 'money' => $row['money'],
- 'coefficient' => $row['coefficient'],
- 'number' => $row['number'],
- 'production_hour' => $row['production_hour'],
- 'production_score' => $row['production_score'],
- 'salary' => $row['salary'],
- 'sys_id' => $row['sys_id'],
- 'sys_rq' => $row['sys_rq'],
- 'id' => $row['id'],
- ];
- }
- $data = array_values($processMap);
- $this->success('成功', $data);
- }
- /**
- * 修改工分报工数据
- * @ApiMethod (POST)
- * @param int $id 报工记录ID
- * @param float $number 数量
- * @param float $production_hour 报工工时(可选,不传则按标准工时×数量重算)
- * @param float $production_score 报工工分(可选,不传则按标准工分×数量重算)
- * @param string $mod_id 修改人(可选)
- * @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 (!isset($params['number']) || $params['number'] === '') {
- $this->error('产量不能为空');
- }
- $record = db('设备_工分计酬')
- ->where('id', $params['id'])
- ->whereNull('del_rq')
- ->find();
- if (empty($record)) {
- $this->error('报工记录不存在或已删除');
- }
- $number = floatval($params['number']);
- if ($number <= 0) {
- $this->error('产量必须大于0');
- }
- $standardHour = floatval($record['standard_hour']);
- $standardScore = floatval($record['standard_score']);
- $productionHour = round($standardHour * $number, 2);
- $productionScore = round($standardScore * $number, 2);
- $salary = $this->calcReportSalary($number, $standardScore);
- $operTime = date('Y-m-d H:i:s');
- $operUser = !empty($params['mod_id']) ? $params['mod_id'] : ($record['sys_id'] ?? '');
- $data = [
- 'mod_rq' => $operTime,
- 'number' => $number,
- 'production_hour' => $productionHour,
- 'production_score' => $productionScore,
- 'salary' => $salary,
- ];
- if (!empty($params['mod_id'])) {
- $data['mod_id'] = $params['mod_id'];
- }
- $logContext = [
- 'report_id' => intval($record['id']),
- 'oper_type' => '修改报工',
- 'oper_user' => $operUser,
- 'oper_time' => $operTime,
- 'work_order' => $record['work_order'],
- 'majorprocess' => $record['majorprocess'],
- 'part_code' => $record['part_code'],
- 'process_code' => $record['process_code'],
- 'process_name' => $record['process_name'],
- 'staff_no' => $record['staff_no'],
- 'staff_name' => $record['staff_name'],
- 'machine' => $record['machine'] ?? '',
- 'report_date' => $record['date'] ?? null,
- ];
- $logList = $this->buildReportingWorkChangeLogs($logContext, [
- '数量' => [$record['number'], $number],
- '报工工时' => [$record['production_hour'], $productionHour],
- '报工工分' => [$record['production_score'], $productionScore],
- '工资' => [$record['salary'], $salary],
- ]);
- Db::startTrans();
- try {
- $result = db('设备_工分计酬')
- ->where('id', $params['id'])
- ->whereNull('del_rq')
- ->update($data);
- if ($result === false) {
- throw new \Exception('修改失败');
- }
- if ($result === 0) {
- throw new \Exception('报工记录不存在或已删除');
- }
- $this->writeReportingWorkLogs($logList);
- Db::commit();
- } catch (\think\exception\HttpResponseException $e) {
- throw $e;
- } catch (\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- $this->success('修改成功', [
- 'number' => $number,
- 'production_hour' => $productionHour,
- 'production_score' => $productionScore,
- 'salary' => $salary,
- ]);
- }
- /**
- * 删除报工数据
- * @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不能为空');
- }
- $record = db('设备_工分计酬')
- ->where('id', $params['id'])
- ->whereNull('del_rq')
- ->find();
- if (empty($record)) {
- $this->error('报工记录不存在或已删除');
- }
- $operTime = date('Y-m-d H:i:s');
- $operUser = !empty($params['mod_id']) ? $params['mod_id'] : ($record['sys_id'] ?? '');
- $logContext = [
- 'report_id' => intval($record['id']),
- 'oper_type' => '删除报工',
- 'oper_user' => $operUser,
- 'oper_time' => $operTime,
- 'work_order' => $record['work_order'],
- 'majorprocess' => $record['majorprocess'],
- 'part_code' => $record['part_code'],
- 'process_code' => $record['process_code'],
- 'process_name' => $record['process_name'],
- 'staff_no' => $record['staff_no'],
- 'staff_name' => $record['staff_name'],
- 'machine' => $record['machine'] ?? '',
- 'report_date' => $record['date'] ?? null,
- ];
- $logList = $this->buildReportingWorkChangeLogs($logContext, [
- '数量' => [$record['number'], ''],
- '报工工分' => [$record['production_score'], ''],
- '工资' => [$record['salary'], ''],
- ]);
- $data = [
- 'del_rq' => $operTime,
- ];
- if (!empty($params['mod_id'])) {
- $data['mod_id'] = $params['mod_id'];
- $data['mod_rq'] = $operTime;
- }
- Db::startTrans();
- try {
- $result = db('设备_工分计酬')
- ->where('id', $params['id'])
- ->whereNull('del_rq')
- ->update($data);
- if ($result === false) {
- throw new \Exception('删除失败');
- }
- if ($result === 0) {
- throw new \Exception('报工记录不存在或已删除');
- }
- $this->writeReportingWorkLogs($logList);
- Db::commit();
- } catch (\think\exception\HttpResponseException $e) {
- throw $e;
- } catch (\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- $this->success('删除成功');
- }
- /**
- * 工分报工操作日志查询
- * @ApiMethod (GET)
- * @param string $workorder 订单编号(可选)
- * @param int $report_id 报工记录ID(可选)
- * @param string $oper_type 操作类型(可选)
- * @param string $date_start 操作时间起(可选,Y-m-d)
- * @param string $date_end 操作时间止(可选,Y-m-d)
- * @param int $page 页码,默认1
- * @param int $limit 每页条数,默认20
- */
- public function GetReportingWorkLog()
- {
- if (!$this->request->isGet()) {
- $this->error('请求方法错误');
- }
- $this->ensureReportingWorkLogTable();
- $params = $this->request->param();
- $page = max(1, intval($params['page'] ?? 1));
- $limit = max(1, min(200, intval($params['limit'] ?? 20)));
- $offset = ($page - 1) * $limit;
- $query = Db::table('设备_工分报工操作日志');
- if (!empty($params['workorder'])) {
- $query->where('work_order', $params['workorder']);
- }
- if (!empty($params['report_id'])) {
- $query->where('report_id', intval($params['report_id']));
- }
- if (!empty($params['oper_type'])) {
- $query->where('oper_type', $params['oper_type']);
- }
- if (!empty($params['date_start'])) {
- $query->where('oper_time', '>=', $params['date_start'] . ' 00:00:00');
- }
- if (!empty($params['date_end'])) {
- $query->where('oper_time', '<=', $params['date_end'] . ' 23:59:59');
- }
- $total = (int)(clone $query)->count();
- $list = $query
- ->order('oper_time desc,id desc')
- ->limit($offset, $limit)
- ->select();
- $this->success('成功', [
- 'total' => $total,
- 'page' => $page,
- 'limit' => $limit,
- 'list' => $list,
- ]);
- }
- /**
- * 查询机台报工记录
- * @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('设备_工分计酬')->alias('a')
- ->join('工单_基本资料 b', 'a.work_order = b.订单编号', 'LEFT')
- ->where('a.del_rq', null)
- ->where('b.Mod_rq', null)
- ->where('a.date', 'like', $params['date'] . '%')
- ->where('a.machine', $params['machine'])
- ->field('
- a.work_order,
- a.majorprocess,
- a.part_code,
- a.process_code,
- a.process_name,
- a.staff_no,
- a.staff_name,
- a.standard_hour,
- a.standard_score,
- a.money,
- a.coefficient,
- a.number,
- a.production_hour,
- a.production_score,
- a.salary,machine,
- a.sys_id,
- a.sys_rq,
- a.id,
- b.生产款号,
- b.款式
- ')
- ->order('a.process_code asc,a.staff_no asc,a.sys_rq desc')
- ->select();
- $this->success('成功', $rows);
- }
- /**
- * 按新公式批量重算历史报工工资(数量 × 工分 × 0.067,保留2位)
- * @ApiMethod (POST)
- * @param string workorder 可选,限定工单编号
- * @param string date_start 可选,报工日期起(Y-m-d)
- * @param string date_end 可选,报工日期止(Y-m-d)
- */
- public function recalculateHistoricalSalary()
- {
- if (!$this->request->isPost()) {
- $this->error('请求方法错误');
- }
- $params = $this->request->post();
- $applyFilters = function ($query) use ($params) {
- if (!empty($params['workorder'])) {
- $query->where('work_order', $params['workorder']);
- }
- if (!empty($params['date_start'])) {
- $query->where('date', '>=', $params['date_start']);
- }
- if (!empty($params['date_end'])) {
- $query->where('date', '<=', $params['date_end']);
- }
- return $query;
- };
- $total = (int)$applyFilters(Db::table('设备_工分计酬')->whereNull('del_rq'))->count();
- if ($total === 0) {
- $this->error('没有需要重算的报工数据');
- }
- Db::startTrans();
- try {
- $affected = $applyFilters(Db::table('设备_工分计酬')->whereNull('del_rq'))->update([
- 'production_score' => Db::raw('ROUND(`number` * `standard_score`, 2)'),
- 'salary' => Db::raw('ROUND(`number` * `standard_score` * 0.067, 2)'),
- ]);
- if ($affected === false) {
- throw new \Exception('批量更新失败');
- }
- Db::commit();
- } catch (\think\exception\HttpResponseException $e) {
- throw $e;
- } catch (\Exception $e) {
- Db::rollback();
- $this->error('重算失败:' . $e->getMessage());
- }
- $this->success('重算成功', [
- 'matched' => $total,
- 'updated' => (int)$affected,
- ]);
- }
- /**
- * 确保工分报工操作日志表存在
- */
- private function ensureReportingWorkLogTable()
- {
- if (self::$reportingWorkLogTableReady) {
- return;
- }
- $sql = <<<SQL
- CREATE TABLE IF NOT EXISTS `设备_工分报工操作日志` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
- `report_id` int(11) DEFAULT NULL COMMENT '报工记录ID',
- `oper_type` varchar(32) NOT NULL DEFAULT '' COMMENT '操作类型',
- `oper_user` varchar(64) NOT NULL DEFAULT '' COMMENT '操作人',
- `oper_time` datetime NOT NULL COMMENT '操作时间',
- `work_order` varchar(64) NOT NULL DEFAULT '' COMMENT '订单编号',
- `majorprocess` varchar(32) NOT NULL DEFAULT '' COMMENT '大工序',
- `part_code` int(11) DEFAULT NULL COMMENT '部件编号',
- `process_code` varchar(32) NOT NULL DEFAULT '' COMMENT '工艺编号',
- `process_name` varchar(128) NOT NULL DEFAULT '' COMMENT '工艺名称',
- `staff_no` varchar(32) NOT NULL DEFAULT '' COMMENT '员工编号',
- `staff_name` varchar(64) NOT NULL DEFAULT '' COMMENT '员工姓名',
- `machine` varchar(64) NOT NULL DEFAULT '' COMMENT '机台编号',
- `report_date` date DEFAULT NULL COMMENT '报工日期',
- `change_field` varchar(32) NOT NULL DEFAULT '' COMMENT '变更字段',
- `old_value` varchar(255) NOT NULL DEFAULT '' COMMENT '旧值',
- `new_value` varchar(255) NOT NULL DEFAULT '' COMMENT '新值',
- PRIMARY KEY (`id`),
- KEY `idx_report_id` (`report_id`),
- KEY `idx_work_order` (`work_order`),
- KEY `idx_oper_time` (`oper_time`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='工分报工操作日志'
- SQL;
- Db::execute($sql);
- self::$reportingWorkLogTableReady = true;
- }
- /**
- * 写入工分报工操作日志
- * @param array $logs
- */
- private function writeReportingWorkLogs(array $logs)
- {
- if (empty($logs)) {
- return;
- }
- $this->ensureReportingWorkLogTable();
- $result = Db::table('设备_工分报工操作日志')->insertAll($logs);
- if ($result === false) {
- throw new \Exception('写入工分报工操作日志失败');
- }
- }
- /**
- * 构建单条工分报工操作日志
- */
- private function buildReportingWorkLogRow(array $context, $changeField, $oldValue, $newValue)
- {
- return [
- 'report_id' => isset($context['report_id']) ? $context['report_id'] : null,
- 'oper_type' => $context['oper_type'] ?? '',
- 'oper_user' => $context['oper_user'] ?? '',
- 'oper_time' => $context['oper_time'] ?? date('Y-m-d H:i:s'),
- 'work_order' => $context['work_order'] ?? '',
- 'majorprocess' => $context['majorprocess'] ?? '',
- 'part_code' => isset($context['part_code']) ? $context['part_code'] : null,
- 'process_code' => $context['process_code'] ?? '',
- 'process_name' => $context['process_name'] ?? '',
- 'staff_no' => $context['staff_no'] ?? '',
- 'staff_name' => $context['staff_name'] ?? '',
- 'machine' => $context['machine'] ?? '',
- 'report_date' => !empty($context['report_date']) ? $context['report_date'] : null,
- 'change_field' => (string)$changeField,
- 'old_value' => $oldValue === null ? '' : (string)$oldValue,
- 'new_value' => $newValue === null ? '' : (string)$newValue,
- ];
- }
- /**
- * 构建字段变更日志(仅记录有变化的字段)
- */
- private function buildReportingWorkChangeLogs(array $context, array $changes)
- {
- $logs = [];
- foreach ($changes as $field => $values) {
- $oldValue = $values[0];
- $newValue = $values[1];
- if ((string)$oldValue === (string)$newValue) {
- continue;
- }
- $logs[] = $this->buildReportingWorkLogRow($context, $field, $oldValue, $newValue);
- }
- return $logs;
- }
- /**
- * 报工工资:数量 × 工分 × 0.067(保留2位,与库字段 decimal(10,2) 一致)
- * @param mixed $number
- * @param mixed $standardScore
- * @return float
- */
- private function calcReportSalary($number, $standardScore)
- {
- return round(floatval($number) * floatval($standardScore) * 0.067, 2);
- }
- }
|