cuilei
2025-06-16 a05d0b46a28f1420e9ce3effd6a6c70479ebc243
工具管理-工具出库申请增加填写零件图号、名称等字段
已修改2个文件
60 ■■■■■ 文件已修改
src/views/tms/OutboundDetailList.vue 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/tms/modules/outBound/OutboundOrderModal.vue 50 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/tms/OutboundDetailList.vue
@@ -180,11 +180,11 @@
            align:"center",
            dataIndex: 'outboundLocation'
          },
          {
            title:'可用库存数量',
            align:"left",
            dataIndex: 'quantity'
          },
          // {
          //   title:'可用库存数量',
          //   align:"left",
          //   dataIndex: 'quantity'
          // },
          {
            title:'申请出库数量',
            align:"left",
src/views/tms/modules/outBound/OutboundOrderModal.vue
@@ -18,7 +18,7 @@
          </a-col>
          <a-col :span="12">
            <a-form-model-item label="出库类型" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="outStorehouseType">
              <j-dict-select-tag :disabled="disableSubmit" @change="handleTypeChange" type="list" v-model="model.outStorehouseType" dictCode="out_storehouse_type" placeholder="请选择出库类型" disabled/>
              <j-dict-select-tag :disabled="disableSubmit || addShow" @change="handleTypeChange" type="list" v-model="model.outStorehouseType" dictCode="out_storehouse_type" placeholder="请选择出库类型"/>
            </a-form-model-item>
          </a-col>
        </a-row>
@@ -36,6 +36,54 @@
        </a-row>
        <a-row>
          <a-col :span="12">
            <a-form-model-item label="零件图号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="partDrawingNo">
              <a-input :disabled="disableSubmit" v-model="model.partDrawingNo" placeholder="请输入零件图号" ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item label="零件名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="partName">
              <a-input :disabled="disableSubmit" v-model="model.partName" placeholder="请输入零件名称" ></a-input>
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col :span="12">
            <a-form-model-item label="零件材料" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="partMaterial">
              <a-input :disabled="disableSubmit" v-model="model.partMaterial" placeholder="请输入零件材料" ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item label="工序(工步号)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="productionProcessesNo">
              <a-input :disabled="disableSubmit" v-model="model.productionProcessesNo" placeholder="请输入工序(工步号)" ></a-input>
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col :span="12">
            <a-form-model-item label="加工批次" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="batchCode">
              <a-input :disabled="disableSubmit" v-model="model.batchCode" placeholder="请输入加工批次" ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item label="加工数量" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="machiningCount">
              <a-input-number :disabled="disableSubmit" v-model="model.machiningCount" placeholder="请输入加工数量" :min="1" style="width: 100%"></a-input-number>
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col :span="12">
            <a-form-model-item label="加工设备" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="equipmentCode">
              <a-input :disabled="disableSubmit" v-model="model.equipmentCode" placeholder="请输入加工设备" ></a-input>
            </a-form-model-item>
          </a-col>
          <a-col :span="12">
            <a-form-model-item label="程序名" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="ncName">
              <a-input :disabled="disableSubmit" v-model="model.ncName" placeholder="请输入程序名" ></a-input>
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row>
          <a-col :span="12">
            <a-form-model-item label="审核人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="reviewer">
              <j-select-user-by-dep :disabled="disableSubmit" v-model="model.reviewer" :store="'username'" :text="'realname'" :multi="false" />
            </a-form-model-item>