军泰伟业
1.军泰伟业-库存管理增加库位
2.军泰伟业-生产入库要审核,加个入库审核菜单,入库数量,库位,通过不通过
| | |
| | | : Number(auditForm.actualStockInNum), |
| | | stockLocation: String(auditForm.stockLocation || "").trim(), |
| | | reason: auditForm.result === "rejected" ? String(auditForm.reason).trim() : "", |
| | | recordId: auditForm.result === "rejected" ? (auditRow.value.recordId ?? auditRow.value.id) : undefined, |
| | | recordId: auditRow.value.recordId |
| | | }; |
| | | |
| | | productionApprove(payload) |
| | |
| | | prop: "inventoryQuantity", |
| | | }, |
| | | { |
| | | label: "实际入库数量", |
| | | prop: "actualStockInNum", |
| | | }, |
| | | { |
| | | dataType: "slot", |
| | | label: "工序", |
| | | prop: "productWorkOrders", |
| | |
| | | width: 180, |
| | | }, |
| | | { |
| | | label: "不通过原因", |
| | | prop: "reason", |
| | | width: 120, |
| | | }, |
| | | { |
| | | label: "开始日期", |
| | | prop: "startTime", |
| | | formatData: val => (val ? dayjs(val).format("YYYY-MM-DD") : ""), |