军泰伟业
1.军泰伟业-库存管理增加库位
2.军泰伟业-生产入库要审核,加个入库审核菜单,入库数量,库位,通过不通过
已修改2个文件
11 ■■■■■ 文件已修改
src/views/inventoryManagement/inboundApproval/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productionOrder/index.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/inventoryManagement/inboundApproval/index.vue
@@ -229,7 +229,7 @@
        : 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)
src/views/productionManagement/productionOrder/index.vue
@@ -352,6 +352,10 @@
      prop: "inventoryQuantity",
    },
    {
      label: "实际入库数量",
      prop: "actualStockInNum",
    },
    {
      dataType: "slot",
      label: "工序",
      prop: "productWorkOrders",
@@ -366,6 +370,11 @@
      width: 180,
    },
    {
      label: "不通过原因",
      prop: "reason",
      width: 120,
    },
    {
      label: "开始日期",
      prop: "startTime",
      formatData: val => (val ? dayjs(val).format("YYYY-MM-DD") : ""),