gongchunyi
9 小时以前 3c4267498aa7397d2d2fe1d3a13ca75b15e98958
fix: 报废数量默认为0
已修改1个文件
4 ■■■■ 文件已修改
src/views/productionManagement/workOrderManagement/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/workOrderManagement/index.vue
@@ -421,7 +421,7 @@
  const reportForm = reactive({
    planQuantity: 0,
    quantity: null,
    scrapQty: null,
    scrapQty: 0,
    userName: "",
    workOrderId: "",
    reportWork: "",
@@ -668,7 +668,7 @@
    reportForm.reportWork = row.reportWork;
    reportForm.productMainId = row.productMainId;
    reportForm.scrapQty =
      row.scrapQty !== undefined && row.scrapQty !== null ? row.scrapQty : null;
      row.scrapQty !== undefined && row.scrapQty !== null ? row.scrapQty : 0;
    reportForm.productionOrderRoutingOperationId =
      row.productionOrderRoutingOperationId;
    reportForm.productionOrderId = row.productionOrderId;