| | |
| | | else '未知' |
| | | end as auditStatusName, |
| | | pot.work_order_no as workOrderNo, |
| | | ifnull(pot.plan_quantity, 0) as schedulingNum, |
| | | cast( |
| | | case |
| | | when ifnull(pot.plan_quantity, 0) - ifnull(ppo.quantity, 0) < 0 then 0 |
| | | else ifnull(pot.plan_quantity, 0) - ifnull(ppo.quantity, 0) |
| | | end |
| | | as decimal(18,4) |
| | | ) as pendingNum, |
| | | case pot.status |
| | | when 1 then '待确认' |
| | | when 2 then '待生产' |
| | |
| | | else '未知' |
| | | end as auditStatusName, |
| | | pot.work_order_no as workOrderNo, |
| | | ifnull(pot.plan_quantity, 0) as schedulingNum, |
| | | cast( |
| | | case |
| | | when ifnull(pot.plan_quantity, 0) - ifnull(ppo.quantity, 0) < 0 then 0 |
| | | else ifnull(pot.plan_quantity, 0) - ifnull(ppo.quantity, 0) |
| | | end |
| | | as decimal(18,4) |
| | | ) as pendingNum, |
| | | p.product_name as productName, |
| | | ifnull(p.standard_quantity, 0) as productStandardQuantity, |
| | | pm.model as productModelName, |
| | |
| | | ppm.repair_work_hour as repairWorkHour, |
| | | cast(ifnull(ppm.work_hour, 0) as decimal(18,4)) as workHour, |
| | | cast(ifnull(pa.work_hours, 0) as decimal(18,4)) as workHours, |
| | | cast( |
| | | case |
| | | when poro.type = 0 then ifnull(pa.work_hours, 0) |
| | | else case |
| | | when ifnull(too.standard_quantity, 0) = 0 then 0 |
| | | else ifnull(pa.finished_num, 0) / ifnull(too.standard_quantity, 0) * 8 |
| | | end |
| | | end |
| | | + ifnull(ppm.repair_work_hour, 0) |
| | | as decimal(18,4) |
| | | ) as convertedWorkHours, |
| | | cast(ifnull(pa.adjust_amount, 0) as decimal(18,4)) as adjustAmount, |
| | | pa.adjust_remark as adjustRemark, |
| | | cast( |