bug
liuying
2024-04-25 cdacaa3a770e30582d57b9c4aef379b7da65c8c7
bug
已修改10个文件
40 ■■■■ 文件已修改
iWare_RawMaterialWarehouse_Web/src/api/modular/main/WmsBase/BaseCustomerManage.js 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/BaseCustomer/addForm.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/BaseCustomer/editForm.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/BaseCustomer/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsContainerPackaging/addForm.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsContainerPackaging/editForm.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabForm.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabItem/addFormBaseCustomer/addForm.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabItem/addFormBaseCustomer/editForm.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabItem/addFormBaseCustomer/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
iWare_RawMaterialWarehouse_Web/src/api/modular/main/WmsBase/BaseCustomerManage.js
@@ -1,7 +1,7 @@
import { axios } from '@/utils/request'
/**
 * 查询往来关系
 * 查询往来单位
 *
 * @author ly
 */
@@ -14,7 +14,7 @@
}
/**
 * 往来关系列表
 * 往来单位列表
 *
 * @author ly
 */
@@ -36,7 +36,7 @@
}
/**
 * 添加往来关系
 * 添加往来单位
 *
 * @author ly
 */
@@ -49,7 +49,7 @@
}
/**
 * 编辑往来关系
 * 编辑往来单位
 *
 * @author ly
 */
@@ -62,7 +62,7 @@
}
/**
 * 删除往来关系
 * 删除往来单位
 *
 * @author ly
 */
@@ -76,7 +76,7 @@
/**
 * 导出往来关系的Excel文件
 * 导出往来单位的Excel文件
 *
 * @author ly
 */
@@ -90,7 +90,7 @@
}
/**
 * 导入往来关系的Excel文件
 * 导入往来单位的Excel文件
 *
 * @author ly
 */
@@ -106,7 +106,7 @@
/**
 * 下载往来关系的Excel导入模板
 * 下载往来单位的Excel导入模板
 *
 * @author ly
 */
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/BaseCustomer/addForm.vue
@@ -1,5 +1,5 @@
<template>
  <a-modal title="新增往来关系" :width="1100" :visible="visible" :confirmLoading="confirmLoading" @ok="handleSubmit"
  <a-modal title="新增往来单位" :width="1100" :visible="visible" :confirmLoading="confirmLoading" @ok="handleSubmit"
    @cancel="handleCancel">
    <a-spin :spinning="confirmLoading">
      <a-form :form="form">
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/BaseCustomer/editForm.vue
@@ -1,6 +1,6 @@
<template>
  <a-modal
    title="编辑往来关系"
    title="编辑往来单位"
    :width="1100"
    :visible="visible"
    :confirmLoading="confirmLoading"
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/BaseCustomer/index.vue
@@ -139,7 +139,7 @@
          <a-button type="info" v-if="hasPerm('BaseCustomer:exportExcel')" icon="download" @click="BaseCustomerToExcel()">
            导出
          </a-button>
            <a-button type="primary" v-if="hasPerm('BaseCustomer:add')" icon="plus" @click="$refs.addForm.add()">新增往来关系</a-button>
            <a-button type="primary" v-if="hasPerm('BaseCustomer:add')" icon="plus" @click="$refs.addForm.add()">新增往来单位</a-button>
        </div>
        </template>
          <span slot="custTypescopedSlots" slot-scope="text">
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsContainerPackaging/addForm.vue
@@ -7,7 +7,7 @@
          <!-- <a-input placeholder="请输入容器类型ID" v-decorator="['containerTypeId', {rules: [{required: true, message: '请输入容器类型ID!'}]}]" /> -->
          <a-select style="width: 100%" placeholder="请选择容器类型名称"  v-decorator="['containerTypeId', {rules: [{required: true, message: '请输入容器类型名称!'}]}]">
            <a-select-option v-for="(item, index) in selectTypeData" :key="index" :value="item.typeCode">{{ item.typeName
            <a-select-option v-for="(item, index) in selectTypeData" :key="index" :value="item.id">{{ item.typeName
            }}</a-select-option>
          </a-select>
@@ -17,7 +17,7 @@
        </a-form-item> -->
        <a-form-item label="物料类型名称" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-select style="width: 100%" placeholder="请选择物料类型名称" v-decorator="['materialTypeId', {rules: [{required: true, message: '请输入物料类型名称!'}]}]">
            <a-select-option v-for="(item, index) in selectTypeData2" :key="index" :value="item.materialTypeCode">{{
            <a-select-option v-for="(item, index) in selectTypeData2" :key="index" :value="item.id">{{
              item.materialTypeName }}</a-select-option>
          </a-select>
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsContainerPackaging/editForm.vue
@@ -7,7 +7,7 @@
          <!-- <a-input placeholder="请输入容器类型ID" v-decorator="['containerTypeId', {rules: [{required: true, message: '请输入容器类型ID!'}]}]" /> -->
          <a-select style="width: 100%" placeholder="请选择容器类型名称"  v-decorator="['containerTypeId', {rules: [{required: true, message: '请输入容器类型名称!'}]}]">
            <a-select-option v-for="(item, index) in selectTypeData" :key="index" :value="item.typeCode">{{ item.typeName
            <a-select-option v-for="(item, index) in selectTypeData" :key="index" :value="item.id">{{ item.typeName
            }}</a-select-option>
          </a-select>
@@ -17,7 +17,7 @@
        </a-form-item> -->
        <a-form-item label="物料类型名称" :labelCol="labelCol" :wrapperCol="wrapperCol" has-feedback>
          <a-select style="width: 100%" placeholder="请选择物料类型名称" v-decorator="['materialTypeId', {rules: [{required: true, message: '请输入物料类型名称!'}]}]">
            <a-select-option v-for="(item, index) in selectTypeData2" :key="index" :value="item.materialTypeCode">{{
            <a-select-option v-for="(item, index) in selectTypeData2" :key="index" :value="item.id">{{
              item.materialTypeName }}</a-select-option>
          </a-select>
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabForm.vue
@@ -322,7 +322,7 @@
            BaseCustomerList = this.$refs.addFormBaseCustomer.list
          }
          console.log(6666666666666 + '往来关系集合')
          console.log(6666666666666 + '往来单位集合')
          // console.log(6666666666666 + '包装关系')
          // console.log(this.$refs.addFormContainerPackagingRef.list)
@@ -334,7 +334,7 @@
            MaterialInput: values,
            ControlRuleld: ControlRuleld, //控制属性
            SubstituteGoodList: SubstituteGoodList, //替代品
            BaseCustomerList: a1, //往来关系集合
            BaseCustomerList: a1, //往来单位集合
            // ContainerPackagingList: this.$refs.addFormContainerPackagingRef.list //包装关系
          }
          this.confirmLoading = true
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabItem/addFormBaseCustomer/addForm.vue
@@ -1,6 +1,6 @@
<template>
  <a-modal
    title="新增往来关系"
    title="新增往来单位"
    :width="900"
    :visible="visible"
    :confirmLoading="confirmLoading"
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabItem/addFormBaseCustomer/editForm.vue
@@ -1,6 +1,6 @@
<template>
  <a-modal
    title="编辑往来关系"
    title="编辑往来单位"
    :width="900"
    :visible="visible"
    :confirmLoading="confirmLoading"
iWare_RawMaterialWarehouse_Web/src/views/main/WmsBase/WmsMaterial/tabItem/addFormBaseCustomer/index.vue
@@ -143,7 +143,7 @@
          <a-button type="info" v-if="hasPerm('BaseCustomer:exportExcel')" icon="download" @click="BaseCustomerToExcel()">
            导出
          </a-button>
            <a-button type="primary" v-if="hasPerm('BaseCustomer:add')" icon="plus" @click="$refs.addForm.add()">新增往来关系</a-button>
            <a-button type="primary" v-if="hasPerm('BaseCustomer:add')" icon="plus" @click="$refs.addForm.add()">新增往来单位</a-button>
        </div> -->
                </template>
                <span slot="custTypescopedSlots" slot-scope="text">