diff --git a/README.md b/README.md index 5c8a587fa..a28b719c2 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ form: { labelMessage: '信息提示说明!!!', componentProps: { isSearchList: true, // 开启查询弹窗 - searchListPlaceholder: '请选择物品代码', // 输入框占位文本 + searchListPlaceholder: '请选择物料代码', // 输入框占位文本 searchField: 'itemCode', // 查询弹窗赋值字段 - searchTitle: '生产线物品关系信息', // 查询弹窗标题 + searchTitle: '生产线物料关系信息', // 查询弹窗标题 searchAllSchemas: Productionlineitem.allSchemas, // 查询弹窗所需类 searchPage: ProductionlineitemApi.getProductionlineitemPage, // 查询弹窗所需分页方法 searchCondition: [{ diff --git a/src/api/wms/balance/index.ts b/src/api/wms/balance/index.ts index 9040f0818..1db740b2a 100644 --- a/src/api/wms/balance/index.ts +++ b/src/api/wms/balance/index.ts @@ -61,7 +61,7 @@ export const getBalancePagePutaway= async (params) => { return await request.get({ url: `/wms/balance/pagePutaway`, params }) } } -// 查询库存余额列表增加物品筛选条件 +// 查询库存余额列表增加物料筛选条件 export const getBalanceItemPage = async (params) => { if (params.isSearch) { delete params.isSearch diff --git a/src/api/wms/customeritem/index.ts b/src/api/wms/customeritem/index.ts index b906a86c6..d4b636c5b 100644 --- a/src/api/wms/customeritem/index.ts +++ b/src/api/wms/customeritem/index.ts @@ -17,7 +17,7 @@ export interface CustomeritemVO { remark: string } -// 查询客户物品列表 +// 查询客户物料列表 export const getCustomeritemPage = async (params) => { if (params.isSearch) { delete params.isSearch @@ -28,27 +28,27 @@ export const getCustomeritemPage = async (params) => { } } -// 查询客户物品详情 +// 查询客户物料详情 export const getCustomeritem = async (id: number) => { return await request.get({ url: `/wms/customeritem/get?id=` + id }) } -// 新增客户物品 +// 新增客户物料 export const createCustomeritem = async (data: CustomeritemVO) => { return await request.post({ url: `/wms/customeritem/create`, data }) } -// 修改客户物品 +// 修改客户物料 export const updateCustomeritem = async (data: CustomeritemVO) => { return await request.put({ url: `/wms/customeritem/update`, data }) } -// 删除客户物品 +// 删除客户物料 export const deleteCustomeritem = async (id: number) => { return await request.delete({ url: `/wms/customeritem/delete?id=` + id }) } -// 导出客户物品 Excel +// 导出客户物料 Excel export const exportCustomeritem = async (params) => { if (params.isSearch) { const data = {...params} diff --git a/src/api/wms/itembasic/index.ts b/src/api/wms/itembasic/index.ts index 473c096a0..ab417dbc2 100644 --- a/src/api/wms/itembasic/index.ts +++ b/src/api/wms/itembasic/index.ts @@ -29,7 +29,7 @@ export interface ItembasicVO { remark: string } -// 查询物品基本信息列表 +// 查询物料基本信息列表 export const getItembasicPage = async (params) => { if (params.isSearch) { const data = {...params} @@ -38,31 +38,31 @@ export const getItembasicPage = async (params) => { return await request.get({ url: `/wms/itembasic/page`, params }) } } -// 查询物品基本信息列表 +// 查询物料基本信息列表 export const getItembasicList = async (params) => { return await request.get({ url: `/wms/itembasic/list`, params }) } -// 查询物品基本信息详情 +// 查询物料基本信息详情 export const getItembasic = async (id: number) => { return await request.get({ url: `/wms/itembasic/get?id=` + id }) } -// 新增物品基本信息 +// 新增物料基本信息 export const createItembasic = async (data: ItembasicVO) => { return await request.post({ url: `/wms/itembasic/create`, data }) } -// 修改物品基本信息 +// 修改物料基本信息 export const updateItembasic = async (data: ItembasicVO) => { return await request.put({ url: `/wms/itembasic/update`, data }) } -// 删除物品基本信息 +// 删除物料基本信息 export const deleteItembasic = async (id: number) => { return await request.delete({ url: `/wms/itembasic/delete?id=` + id }) } -// 导出物品基本信息 Excel +// 导出物料基本信息 Excel export const exportItembasic = async (params) => { if (params.isSearch) { const data = {...params} @@ -79,7 +79,7 @@ export const importTemplate = () => { // 导入地址 export const importUrl = '/wms/itembasic/import' -// 查询物品基本信息列表 +// 查询物料基本信息列表 export const selectItembasicPageToFgAndSemibasicPage = async (params) => { if (params.isSearch) { const data = {...params} diff --git a/src/api/wms/itempackaging/index.ts b/src/api/wms/itempackaging/index.ts index d7ab4945b..523423101 100644 --- a/src/api/wms/itempackaging/index.ts +++ b/src/api/wms/itempackaging/index.ts @@ -19,7 +19,7 @@ export interface ItempackagingVO { remark: string } -// 查询物品包装信息 列表 +// 查询物料包装信息 列表 export const getItempackagingPage = async (params) => { if (params.isSearch) { delete params.isSearch @@ -30,27 +30,27 @@ export const getItempackagingPage = async (params) => { } } -// 查询物品包装信息 详情 +// 查询物料包装信息 详情 export const getItempackaging = async (id: number) => { return await request.get({ url: `/wms/itempackaging/get?id=` + id }) } -// 新增物品包装信息 +// 新增物料包装信息 export const createItempackaging = async (data: ItempackagingVO) => { return await request.post({ url: `/wms/itempackaging/create`, data }) } -// 修改物品包装信息 +// 修改物料包装信息 export const updateItempackaging = async (data: ItempackagingVO) => { return await request.put({ url: `/wms/itempackaging/update`, data }) } -// 删除物品包装信息 +// 删除物料包装信息 export const deleteItempackaging = async (id: number) => { return await request.delete({ url: `/wms/itempackaging/delete?id=` + id }) } -// 导出物品包装信息 Excel +// 导出物料包装信息 Excel export const exportItempackaging = async (params) => { if (params.isSearch) { const data = {...params} diff --git a/src/api/wms/productionlineitem/index.ts b/src/api/wms/productionlineitem/index.ts index 6b109f42c..cc9716fe3 100644 --- a/src/api/wms/productionlineitem/index.ts +++ b/src/api/wms/productionlineitem/index.ts @@ -21,7 +21,7 @@ export const getProductionlineitemPage = async (params) => { } } -// 查询生产线物料关系列表——根据 生产线 物品类型为原料和半成品 +// 查询生产线物料关系列表——根据 生产线 物料类型为原料和半成品 export const getProductionlineitemPageByItemtype = async (params) => { if (params.isSearch) { delete params.isSearch diff --git a/src/api/wms/supplieritem/index.ts b/src/api/wms/supplieritem/index.ts index 704d97276..3c31a8d25 100644 --- a/src/api/wms/supplieritem/index.ts +++ b/src/api/wms/supplieritem/index.ts @@ -20,7 +20,7 @@ export interface SupplieritemVO { remark: string } -// 查询供应商物品列表 +// 查询供应商物料列表 export const getSupplieritemPage = async (params) => { if (params.isSearch) { delete params.isSearch @@ -31,27 +31,27 @@ export const getSupplieritemPage = async (params) => { } } -// 查询供应商物品详情 +// 查询供应商物料详情 export const getSupplieritem = async (id: number) => { return await request.get({ url: `/wms/supplieritem/get?id=` + id }) } -// 新增供应商物品 +// 新增供应商物料 export const createSupplieritem = async (data: SupplieritemVO) => { return await request.post({ url: `/wms/supplieritem/create`, data }) } -// 修改供应商物品 +// 修改供应商物料 export const updateSupplieritem = async (data: SupplieritemVO) => { return await request.put({ url: `/wms/supplieritem/update`, data }) } -// 删除供应商物品 +// 删除供应商物料 export const deleteSupplieritem = async (id: number) => { return await request.delete({ url: `/wms/supplieritem/delete?id=` + id }) } -// 导出供应商物品 Excel +// 导出供应商物料 Excel export const exportSupplieritem = async (params) => { if (params.isSearch) { const data = {...params} @@ -66,7 +66,7 @@ export const importTemplate = () => { return request.download({ url: '/wms/supplieritem/get-import-template' }) } -// 查询供应商物品列表 +// 查询供应商物料列表 export const selectItembasicTypeToSupplieritem = async (params) => { if (params.isSearch) { const data = {...params} diff --git a/src/router/modules/remaining.ts b/src/router/modules/remaining.ts index 2bdf987ff..69f94de41 100644 --- a/src/router/modules/remaining.ts +++ b/src/router/modules/remaining.ts @@ -346,7 +346,7 @@ const remainingRouter: AppRouteRecordRaw[] = [ // noCache: true, // hidden: true, // canTo: true, - // title: '物品详情', + // title: '物料详情', // activeMenu: '/wms/itembasic-manage/itembasic' // } // }, diff --git a/src/utils/dict.ts b/src/utils/dict.ts index 90fe2587d..060b1bb1b 100644 --- a/src/utils/dict.ts +++ b/src/utils/dict.ts @@ -183,15 +183,15 @@ export enum DICT_TYPE { PROMOTION_CONDITION_TYPE = 'promotion_condition_type', // 营销的条件类型枚举 // ========== 业务 - WMS ========== - ITEM_STATUS = 'item_status', // 物品状态 - ITEM_TYPE = 'item_type', // 物品类型 + ITEM_STATUS = 'item_status', // 物料状态 + ITEM_TYPE = 'item_type', // 物料类型 UOM = 'uom', // 计量单位 ABC_CLASS = 'abc_class', // ABC类 TRUE_FALSE = 'true_false', // 是否 - ITEM_GROUP = 'item_group', // 物品分组 - ITEM_CATEGORY = 'Item_category', // 物品种类 - ITEM_COLOR = 'item_color', // 物品颜色 - ITEM_CONFIGURATION = 'item_configuration', // 物品配置 + ITEM_GROUP = 'item_group', // 物料分组 + ITEM_CATEGORY = 'Item_category', // 物料种类 + ITEM_COLOR = 'item_color', // 物料颜色 + ITEM_CONFIGURATION = 'item_configuration', // 物料配置 EQ_LEVEL = 'eq_level', // 质量等级 CURRENCY = 'currency', // 货币 BASIC_CURRENCY = 'basic_currency', // 货币 @@ -214,7 +214,7 @@ export enum DICT_TYPE { PROCESS_TYPE = 'process_type', // 工序类型 LOCATION_SCOPE_TYPE = 'location_scope_type', // 库位维度 STORAGE_TYPE = 'storage_type', // 存储类型 - ITEM_SCOPE_TYPE = 'item_scope_type', // 物品维度 + ITEM_SCOPE_TYPE = 'item_scope_type', // 物料维度 BATCH_TYPE = 'batch_type', // 批次类型 BATCH_DIRECTION = 'batch_direction', // 批次方向 MANAGEMENT_MODE = 'management_mode', // 管理模式 diff --git a/src/utils/disposition/formFields.ts b/src/utils/disposition/formFields.ts index 82d62b9cf..91475875f 100644 --- a/src/utils/disposition/formFields.ts +++ b/src/utils/disposition/formFields.ts @@ -32,7 +32,7 @@ ] /** - * @returns {Array} 物品质量信息 + * @returns {Array} 物料质量信息 */ export const ItemQuality = [ { label: "itemCode", prop: "itemCode" }, @@ -51,7 +51,7 @@ ] /** - * @returns {Array} 物品分类信息 + * @returns {Array} 物料分类信息 */ export const ItemCategory = [ { label: "itemCode", prop: 'itemCode', }, @@ -61,7 +61,7 @@ ] /** - * @returns {Array} 物品包装 + * @returns {Array} 物料包装 */ export const ItemPack = [ { label: "包装代码", prop: 'packCode', }, @@ -76,7 +76,7 @@ ] /** - * @returns {Array} 物品质检标准 + * @returns {Array} 物料质检标准 */ export const AQL = [ { label: "itemCode", prop: "itemCode", }, @@ -128,7 +128,7 @@ ] /** - * @returns {Array} 客户物品 + * @returns {Array} 客户物料 */ export const CustomerItem = [ { label: "客户代码", prop: 'customerCode', }, @@ -189,7 +189,7 @@ ] /** - * @returns {Array} 供应商物品 + * @returns {Array} 供应商物料 */ export const SupplierItem = [ { label: "供应商代码", prop: 'supplierCode' }, @@ -270,7 +270,7 @@ { label: "名称", prop: 'name', }, { label: "描述", prop: "description", }, { label: "溢流库位组", prop: "overflowLocationGroup", }, - { type: "objectFilter", label: "是否混物品", prop: "locSwitch", showProp: "enableMixItem", filters: "whetherOrNot", }, + { type: "objectFilter", label: "是否混物料", prop: "locSwitch", showProp: "enableMixItem", filters: "whetherOrNot", }, { type: "objectFilter", label: "是否混批次", prop: "locSwitch", showProp: "enableMixLot", filters: "whetherOrNot", }, { type: "objectFilter", label: "是否混状态", prop: "locSwitch", showProp: "enableMixStatus", filters: "whetherOrNot", }, { type: "objectFilter", label: "是否负库存", prop: "locSwitch", showProp: "enableNegative", filters: "whetherOrNot", }, @@ -316,7 +316,7 @@ { label: "拣料顺序", prop: "pickOrder", }, { label: "货架号", prop: "shelfCode", }, { label: "ERP系统库位编号", prop: "erpLocationCode", }, - { type: "objectFilter", label: "是否混物品", prop: "locSwitch", showProp: "enableMixItem", filters: "whetherOrNot", }, + { type: "objectFilter", label: "是否混物料", prop: "locSwitch", showProp: "enableMixItem", filters: "whetherOrNot", }, { type: "objectFilter", label: "是否混批次", prop: "locSwitch", showProp: "enableMixLot", filters: "whetherOrNot", }, { type: "objectFilter", label: "是否混状态", prop: "locSwitch", showProp: "enableMixStatus", filters: "whetherOrNot", }, { type: "objectFilter", label: "是否负库存", prop: "locSwitch", showProp: "enableNegative", filters: "whetherOrNot", }, @@ -374,7 +374,7 @@ ] /** - * @returns {Array} 物品安全库存 + * @returns {Array} 物料安全库存 */ export const ItemSafetyStock = [ { label: "物料代码", prop: "itemCode", }, @@ -390,7 +390,7 @@ ] /** - * @returns {Array} 物品安全库存 + * @returns {Array} 物料安全库存 */ export const ItemSafetyStockQuery = [ { @@ -1646,7 +1646,7 @@ export const OuterPillarDeliverNote = [ { label: "项目号", prop: "projectCode" }, { label: "位置", prop: 'position' }, { label: "配置号", prop: 'l7Part' }, - { label: "物品描述", prop: 'itemName' }, + { label: "物料描述", prop: 'itemName' }, { label: "备品生产号", prop: 'sparesNumber' }, { label: "备品批次", prop: 'sparesLot' }, { label: "目标生产号", prop: 'targetNumber' }, diff --git a/src/utils/disposition/tableDetailsColumns.ts b/src/utils/disposition/tableDetailsColumns.ts index ce19853d7..c3d90a00e 100644 --- a/src/utils/disposition/tableDetailsColumns.ts +++ b/src/utils/disposition/tableDetailsColumns.ts @@ -36,9 +36,9 @@ { label: "订单行", prop: "poLine", width: "200px" }, { label: "箱标签", prop: "packingCode", width: "200px" }, { label: "itemCode", prop: "itemCode", width: "200px" }, - { type: "object", label: "物品名称", prop: "item", showProp: "name", width: "200px" }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", width: "200px" }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", width: "200px" }, + { type: "object", label: "物料名称", prop: "item", showProp: "name", width: "200px" }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", width: "200px" }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", width: "200px" }, // { type: "object", label: "到货数量", prop: "qty", showProp: "qty", width: "200px" }, { type: "object", label: "发货数量", prop: "qty", showProp: "qty", width: "200px" }, { type: "object", label: "计量单位", prop: "qty", showProp: "uom", width: "200px" }, @@ -58,9 +58,9 @@ { label: "订单行", prop: "poLine", }, { label: "箱标签", prop: "packingCode", }, { label: "itemCode", prop: "itemCode", }, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { type: "object", label: "发货数量", prop: "qty", showProp: "qty", }, { type: "object", label: "计量单位", prop: "qty", showProp: "uom", }, { label: "托标签", prop: "containerCode", }, @@ -75,13 +75,13 @@ */ export const ArriveNotice = [ { label: "itemCode", prop: "itemCode",fixed:"left", }, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, { type: "object", valueType: Number, label: "到货数量", prop: "qty", showProp: "qty", }, { type: "object", valueType: Number, label: "标包数量", prop: "stdPack", showProp: "packQty", }, { label: "每托数量", prop: "qtyPerPallet", }, { type: "object", label: "计量单位", prop: "qty", showProp: "uom", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { label: "批次", prop: "lot", }, { type: "objectDateTime", label: "生产日期", prop: "batch", showProp: "produceDate", }, { type: "object", label: "供应商批次", prop: "batch", showProp: "supplierBatch", }, @@ -177,9 +177,9 @@ { label: "请求库位", prop: "requestLocationCode", }, { label: "目标库位", prop: "toLocationCode", }, { type: "dateTime", label: "过期日期", prop: "expiredTime", }, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { label: "备注", prop: 'remark', }, ] /** @@ -627,10 +627,10 @@ * @returns {Array} 调拨发货 */ export const WareHouseTransferNote = [ - { label: "物品编号", prop: "itemCode", fixed: "left",}, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { label: "物料编号", prop: "itemCode", fixed: "left",}, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { type: "object", label: "数量", prop: "qty", showProp: "qty", }, { type: "object", label: "标包数量", prop: "stdPack", showProp: "packQty", }, { label: "目标库位", prop: "toLocationCode", }, @@ -1069,9 +1069,9 @@ export const ReceivingRecords = [ */ export const JisProductRecycleNote = [ { label: "itemCode", prop: "itemCode", fixed: "left",}, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { type: "object", label: "数量", prop: "qty", showProp: "qty", }, { type: "object", label: "标包数量", prop: "stdPack", showProp: "packQty", }, { label: "箱标签", prop: "packingCode"}, @@ -1090,9 +1090,9 @@ export const ReceivingRecords = [ */ export const JisProductReturnNote = [ { label: "itemCode", prop: "itemCode", fixed: "left",}, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { type: "object", label: "数量", prop: "qty", showProp: "qty", }, // { type: "object", label: "标包数量", prop: "stdPack", showProp: "packQty", }, { label: "产品号", prop: "productNo" }, @@ -1104,9 +1104,9 @@ export const ReceivingRecords = [ */ export const JisProductTransferNote = [ { label: "itemCode", prop: "itemCode", fixed: "left",}, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { type: "object", label: "数量", prop: "qty", showProp: "qty", }, { label: "批次", prop: "lot" }, { label: "产品号", prop: "productNo" }, @@ -1132,9 +1132,9 @@ export const ReceivingRecords = [ * @returns {Array} JIS信息查询 */ export const JISMessageQuery = [ - { label: "物品代码", prop: "itemCode", }, - { label: "物品名称",type: "object", prop: "item", showProp: "name" }, - { label: "物品描述",type: "object", prop: "item", showProp: "desc1" }, + { label: "物料代码", prop: "itemCode", }, + { label: "物料名称",type: "object", prop: "item", showProp: "name" }, + { label: "物料描述",type: "object", prop: "item", showProp: "desc1" }, { label: "产品号", prop: "productNo" }, { label: "项目号", prop: 'program' }, { label: "位置", prop: 'position' }, @@ -1150,13 +1150,13 @@ export const ReceivingRecords = [ */ export const OuterJisDeliverNote = [ { label: "单据号", prop: "number" }, - { label: "物品代码", prop: "itemCode" }, + { label: "物料代码", prop: "itemCode" }, { label: "发货单号", prop: 'deliverNumber' }, { label: "生产号", prop: 'productionNumber' }, { label: "REV", prop: 'rev' }, { label: "配置号", prop: 'l7Part' }, { label: "流水号", prop: 'serialNumber' }, - { label: "物品描述", prop: 'itemName' }, + { label: "物料描述", prop: 'itemName' }, { label: "位置", prop: 'position' }, { label: "数量", prop: 'qty' }, { label: "站别名", prop: 'siteNickName' }, @@ -1179,14 +1179,14 @@ export const ReceivingRecords = [ */ export const OuterPillarDeliverNote = [ { label: "单据号", prop: "number" }, - { label: "物品代码", prop: "itemCode" }, + { label: "物料代码", prop: "itemCode" }, { label: "发货单号", prop: 'deliverNumber' }, // { label: "生产号", prop: 'productionNumber' }, // { label: "REV", prop: 'rev' }, // { label: "配置号", prop: 'l7Part' }, // { label: "流水号", prop: 'serialNumber' }, - { label: "物品描述1", prop: 'item', showProp:'desc1', type: "object" }, - { label: "物品描述2", prop: 'item', showProp:'desc2', type: "object" }, + { label: "物料描述1", prop: 'item', showProp:'desc1', type: "object" }, + { label: "物料描述2", prop: 'item', showProp:'desc2', type: "object" }, { label: "来源库位", prop: 'locationCode' }, { label: "发货数量", prop: 'qty', showProp: 'qty', type: 'object' }, // { label: "位置", prop: 'position' }, @@ -1211,8 +1211,8 @@ export const OuterPillarDeliverNote = [ */ export const OuterJisUnplannedReceiptNote = [ { label: "单据号", prop: "number" }, - { label: "物品代码", prop: "itemCode" }, - { label: "物品描述", prop: 'itemName' }, + { label: "物料代码", prop: "itemCode" }, + { label: "物料描述", prop: 'itemName' }, { label: "计划外入库单号", prop: 'outerUnplannedReceiptNumber' }, { label: "单据类型", prop: 'documentType' }, { label: "生产号", prop: 'productionNumber' }, @@ -1234,8 +1234,8 @@ export const OuterPillarDeliverNote = [ */ export const OuterJisUnplannedIssueNote = [ { label: "单据号", prop: "number" }, - { label: "物品代码", prop: "itemCode" }, - { label: "物品描述", prop: 'itemName' }, + { label: "物料代码", prop: "itemCode" }, + { label: "物料描述", prop: 'itemName' }, { label: "计划外出库单号", prop: 'outerUnplannedIssueNumber' }, { label: "单据类型", prop: 'documentType' }, { label: "生产号", prop: 'productionNumber' }, @@ -1334,10 +1334,10 @@ export const SingleDoorPanelProductAdjust = [ * @returns {Array} 单块门板-库移记录 */ export const SingleDoorPanelProductTransferNote = [ - { label: "物品编号", prop: "itemCode", fixed: "left" }, - { type: "object", label: "物品名称", prop: "item", showProp: "name" }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1" }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2" }, + { label: "物料编号", prop: "itemCode", fixed: "left" }, + { type: "object", label: "物料名称", prop: "item", showProp: "name" }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1" }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2" }, { label: "批次", prop: "lot" }, { label: "箱标签", prop: "packingCode" }, { label: "托标签", prop: "containerCode" }, @@ -1379,10 +1379,10 @@ export const SingleDoorPanelCustomerReturnNote = [ * @returns {Array} 调拨发货记录 */ export const PillarDeliverNote = [ - { label: "物品编号", prop: "itemCode", fixed: "left",}, - { type: "object", label: "物品名称", prop: "item", showProp: "name", }, - { type: "object", label: "物品描述1", prop: "item", showProp: "desc1", }, - { type: "object", label: "物品描述2", prop: "item", showProp: "desc2", }, + { label: "物料编号", prop: "itemCode", fixed: "left",}, + { type: "object", label: "物料名称", prop: "item", showProp: "name", }, + { type: "object", label: "物料描述1", prop: "item", showProp: "desc1", }, + { type: "object", label: "物料描述2", prop: "item", showProp: "desc2", }, { type: "object", label: "数量", prop: "qty", showProp: "qty", }, { type: "object", label: "标包数量", prop: "stdPack", showProp: "packQty", }, { label: "目标批次", prop: "toLot", }, diff --git a/src/utils/disposition/tabsList.ts b/src/utils/disposition/tabsList.ts index 96c2fa0db..77e9c47c6 100644 --- a/src/utils/disposition/tabsList.ts +++ b/src/utils/disposition/tabsList.ts @@ -1,10 +1,10 @@ // 页面tabs标签 export const ItemBasicTabsList = [{ - label: "供应商物品", + label: "供应商物料", prop: 'SupplierItems', }, { - label: "客户物品", + label: "客户物料", prop: 'CustomerItems', }, { diff --git a/src/views/Home/components/supplierIndex.vue b/src/views/Home/components/supplierIndex.vue index 7610f97bf..c665f9867 100644 --- a/src/views/Home/components/supplierIndex.vue +++ b/src/views/Home/components/supplierIndex.vue @@ -180,10 +180,10 @@ - - - - + + + +