yuan
2 天以前 12024b31332e054c322b62d5512f3d0c3a4c86ff
生产管理模块优化:统一"需求数量"为"预计生产数量"
已修改4个文件
13 ■■■■ 文件已修改
src/views/productionManagement/productStructure/Detail/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productionOrder/New.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productionOrder/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/workOrder/index.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/productionManagement/productStructure/Detail/index.vue
@@ -91,10 +91,10 @@
              </el-table-column>
              <el-table-column v-if="isOrderPage"
                               prop="demandedQuantity"
                               label="需求总量">
                               label="预计生产数量">
                <template #default="{ row, $index }">
                  <el-form-item v-if="dataValue.isEdit"
                                :rules="[{ required: true, message: '请输入需求总量', trigger: ['blur','change'] }]"
                                :rules="[{ required: true, message: '请输入预计生产数量', trigger: ['blur','change'] }]"
                                style="margin: 0">
                    <el-input-number v-model="row.demandedQuantity"
                                     :min="0"
src/views/productionManagement/productionOrder/New.vue
@@ -50,7 +50,7 @@
        </el-form-item>
        <el-form-item
            label="需求数量"
            label="预计生产数量"
            prop="quantity"
        >
          <el-input-number v-model="formState.quantity" :step="1" :min="1" style="width: 100%" />
src/views/productionManagement/productionOrder/index.vue
@@ -150,8 +150,9 @@
      width: '200px',
    },
    {
      label: "需求数量",
      label: "预计生产数量",
      prop: "quantity",
      width: '140px',
    },
    {
      label: "完成数量",
src/views/productionManagement/workOrder/index.vue
@@ -121,7 +121,7 @@
          </div>
          <div class="info-group">
            <div class="info-item">
              <span class="info-label">需求数量</span>
              <span class="info-label">预计生产数量</span>
              <span class="info-value">{{ transferCardRowData.planQuantity }}</span>
            </div>
            <div class="info-item">
@@ -272,7 +272,7 @@
      prop: "processName",
    },
    {
      label: "需求数量",
      label: "预计生产数量",
      prop: "planQuantity",
      width: "140",
    },