From 42373e44defbeb483406afb6d16314895f87022f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com> Date: Thu, 29 Aug 2024 17:20:42 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90nev-pc=E3=80=91=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E5=8F=8Abug=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/commonTabel-drawer/index.vue | 34 ++++- fe/PC/src/filters/status.js | 8 +- fe/PC/src/utils/tableColumns/index.js | 130 +++++++++--------- fe/PC/src/utils/tabsDesTions/index.js | 120 ++++++++-------- .../views/basicData/ItemsManage/ItemBasic.vue | 44 +++--- .../basicData/SupplierManage/Supplier.vue | 14 +- .../InventoryLocationCapacity.vue | 28 ++-- .../basicData/WarehouseManage/Location.vue | 44 +++--- 8 files changed, 227 insertions(+), 195 deletions(-) diff --git a/fe/PC/src/components/commonTabel-drawer/index.vue b/fe/PC/src/components/commonTabel-drawer/index.vue index 374bcd921..af1e88274 100644 --- a/fe/PC/src/components/commonTabel-drawer/index.vue +++ b/fe/PC/src/components/commonTabel-drawer/index.vue @@ -188,7 +188,8 @@ import { getListByItemcode,getPageList, byItem,byProduct,byComponent,bySupplierCode,byLocation,byLocationCode, - relationByLocationCode,byComponentCJ,purRecNoteCustomInfo,EnumPurchaseReceiptInspect + relationByLocationCode,byComponentCJ,purRecNoteCustomInfo,EnumPurchaseReceiptInspect, + allSupplierByCodes } from "@/api/wms-api" import currenButton from "@/components/currenButton" import currenDescriptions from "@/components/currenDescriptions" @@ -451,6 +452,37 @@ export default { this.zdyTableColumns = zdyTableColumnsJSON this.otherData = res parent.tableLoading = false + // 物品基础信息中的tab页面同步数据 + if(this.$route.name == "ItemBasic"){ + // 同步desc1,desc2,configuration + if(item.name == 'zlxx' || item.name == 'zjbz'){ + this.otherData.forEach(ortherItem=>{ + ortherItem.item_desc1FromFE = JSON.parse(JSON.stringify(this.propsData.desc1)) + ortherItem.item_desc2FromFE = JSON.parse(JSON.stringify(this.propsData.desc2)) + ortherItem.item_configurationFromFE = JSON.parse(JSON.stringify(this.propsData.configuration)) + }) + } + // 同步供应商名称 + if(item.name == 'zlxx' || item.name == 'zjbz'){ + let _allSuCode = [] + this.otherData.forEach(ortherItem=>{if(ortherItem.supplierCode){_allSuCode.push(ortherItem.supplierCode)}}) + allSupplierByCodes(_allSuCode).then(resSu => { + let _all = [] + resSu.forEach(itemInfo=>{ _all[itemInfo.code] = itemInfo }) + this.otherData.forEach(ortherItem=>{ + if(_all[ortherItem.supplierCode]){ + this.$set(ortherItem,"supplierName", _all[ortherItem.supplierCode].name) + this.$set(ortherItem,"supplierAddress", _all[ortherItem.supplierCode].address) + this.$set(ortherItem,"supplierShortName", _all[ortherItem.supplierCode].shortName) + } + }) + this.Loading.tableLoading = false + }).catch(err => { + console.log(err) + this.Loading.tableLoading = false + }) + } + } }).catch(err => { console.log(err) parent.tableLoading = false diff --git a/fe/PC/src/filters/status.js b/fe/PC/src/filters/status.js index ed8cbd944..16195f590 100644 --- a/fe/PC/src/filters/status.js +++ b/fe/PC/src/filters/status.js @@ -2272,10 +2272,10 @@ export function SupplierAsnCtypeStaBack(name){ value: '不合格', label: '不合格' }, - // '不涉及': { - // value: '不涉及', - // label: '不涉及' - // }, + '不涉及': { + value: '不涉及', + label: '不涉及' + }, } return Enum(type, index, prop) } diff --git a/fe/PC/src/utils/tableColumns/index.js b/fe/PC/src/utils/tableColumns/index.js index a306cac3c..023ddf90a 100644 --- a/fe/PC/src/utils/tableColumns/index.js +++ b/fe/PC/src/utils/tableColumns/index.js @@ -15,20 +15,20 @@ export const ItemBasic = [ fixed: "left", type: "name" }, - { label: _Names.itemName, prop: "name" }, + // { label: _Names.itemName, prop: "name" }, { label: _Names.itemDesc1, prop: "desc1" }, { label: _Names.itemDesc2, prop: "desc2" }, { label: _Names.configuration, prop: "configuration" }, - { label: _Names.basicUom, prop: "basicUom" }, + // { label: _Names.basicUom, prop: "basicUom" }, { label: _Names.category, prop: "category" }, { label: _Public.status, prop: "status", type: "filter", filters: "itemStatus" }, { label: _Public.type, prop: 'type', type: "filter", filters: "ItemTypeBasic" }, { label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" }, { label: _Names.canMake, prop: 'canMake', type: "filter", filters: "whetherOrNot" }, { label: _Names.canBuy, prop: 'canBuy', type: "filter", filters: "whetherOrNot" }, - { label: _Names.canOutsourcing, prop: 'canOutsourcing', type: "filter", filters: "whetherOrNot" }, + // { label: _Names.canOutsourcing, prop: 'canOutsourcing', type: "filter", filters: "whetherOrNot" }, { label: _Names.isRecycled, prop: 'isRecycled', type: "filter", filters: "whetherOrNot" }, - { label: _Names.isPhantom, prop: "isPhantom", type: "filter", filters: "whetherOrNot" }, + // { label: _Names.isPhantom, prop: "isPhantom", type: "filter", filters: "whetherOrNot" }, // { label: _Names.productLine, prop: 'productLine' }, // { label: _Names.elevel, prop: 'elevel' }, // { label: _Names.color, prop: "color" }, @@ -38,9 +38,9 @@ export const ItemBasic = [ // { label: _Names.version, prop: "version" }, // { label: _Names.eco, prop: "eco" }, { label: _Names.validity, prop: "validity" }, - { label: _Names.validityUnit, prop: "validityUnit", type: "filter", filters: "validityUnit" }, - { label: _Names.manageType, prop: "manageType", type: "filter", filters: "manageType" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Names.validityUnit, prop: "validityUnit", type: "filter", filters: "validityUnit" }, + // { label: _Names.manageType, prop: "manageType", type: "filter", filters: "manageType" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, // { @@ -60,7 +60,7 @@ export const ItemQuality = [ fixed: "left", type: "name" }, - { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, + // { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, { label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true }, { label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true }, { label: _Names.configuration, prop: "item_configurationFromFE",showProp:true }, @@ -68,8 +68,8 @@ export const ItemQuality = [ { label: _Names.supplierName, prop: 'supplierName',showProp:true }, { label: _Public.status, prop: 'status', type: "filter", filters: "openToClose" }, { label: _Names.inspectType, prop: 'inspectType', type: "filter", filters: "inspectType" }, - { label: _Public.remark, prop: "remark" }, - { label: _Public.description, prop: "description" }, + // { label: _Public.remark, prop: "remark" }, + // { label: _Public.description, prop: "description" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -97,18 +97,18 @@ export const ItemPack = [ fixed: "left", type: "name" }, - { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, + // { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, { label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true }, { label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true }, { label: _Names.configuration, prop: "item_configurationFromFE",showProp:true }, - { label: _Names.supplierCode, prop: 'supplierCode' }, - { label: _Names.supplierName, prop: 'supplierName',showProp:true }, + // { label: _Names.supplierCode, prop: 'supplierCode' }, + // { label: _Names.supplierName, prop: 'supplierName',showProp:true }, { label: _Names.packCode, prop: "packCode", }, { label: _Names.packName, prop: "packName" }, - { label: _Names.packType, prop: "packType" }, - { label: _Names.packBasicUom, prop: "basicUom" }, + // { label: _Names.packType, prop: "packType" }, + // { label: _Names.packBasicUom, prop: "basicUom" }, { label: _Names.packQty, prop: "qty",isNumber:true }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type:'dateTime' }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' }, ] @@ -121,19 +121,19 @@ export const AQL = [ fixed: "left", type: "name" }, - { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, + // { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, { label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true }, { label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true }, { label: _Names.configuration, prop: "item_configurationFromFE",showProp:true }, { label: _Names.supplierCode, prop: 'supplierCode' }, { label: _Names.supplierName, prop: 'supplierName',showProp:true }, - { label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" }, + // { label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" }, { label: _Names.ceilingQty, prop: 'ceilingQty',isNumber:true }, { label: _Names.floorQty, prop: "floorQty",isNumber:true}, // { label: _Names.isUsePercent, prop: 'isUsePercent', type: "filter", filters: "whetherOrNot" }, // { label: _Names.samplePercent, prop: 'samplePercent' }, { label: _Names.sampleQty, prop: 'sampleQty',isNumber:true }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type:'dateTime' }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' }, ] @@ -148,13 +148,13 @@ export const PositionCode = [ }, { label: "位置码类型", prop: 'type', type: "filter", filters: "positionCodeType" }, { label: _Names.itemCode, prop: "partCode" }, - { label: _Names.itemName, prop: "partName" }, + // { label: _Names.itemName, prop: "partName" }, { label: _Names.itemDesc1, prop: "partDesc" }, - { label: _Names.basicUom, prop: "basicUom" }, + // { label: _Names.basicUom, prop: "basicUom" }, { label: "箱数/数量", prop: "stdPackQty",isNumber:true }, { label: "目标库位代码", prop: "locationCode" }, { label: "目标库位名称", prop: "locationName" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -169,12 +169,12 @@ export const ItemContainer = [ }, { label: "收容代码描述", prop: "containerName" }, { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, + // { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, { label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true }, { label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true }, { label: _Names.configuration, prop: "item_configurationFromFE",showProp:true }, { label: '转储标包数量', prop: "qty" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -187,10 +187,10 @@ export const Bom = [ fixed: "left", type: "name" }, - { label: _Names.productName, prop: "productName",showProp:true }, + // { label: _Names.productName, prop: "productName",showProp:true }, { label: _Names.productDesc1, prop: "productDesc1",showProp:true }, { label: _Names.componentCode, prop: "component" }, - { label: _Names.componentName, prop: "componentName",showProp:true }, + // { label: _Names.componentName, prop: "componentName",showProp:true }, { label: _Names.componentDesc1, prop: "componentDesc1",showProp:true }, { label: _Names.componentQty, prop: 'componentQty',isNumber:true }, // { label: _Names.componentUom, prop: 'componentUom' }, @@ -215,16 +215,16 @@ export const BomInner = [ fixed: "left", type: "name" }, - { label: _Names.productName, prop: "productName",showProp:true }, + // { label: _Names.productName, prop: "productName",showProp:true }, { label: _Names.productDesc1, prop: "productDesc1",showProp:true }, { label: _Names.componentCode, prop: "component" }, - { label: _Names.componentName, prop: "componentName",showProp:true }, + // { label: _Names.componentName, prop: "componentName",showProp:true }, { label: _Names.componentDesc1, prop: "componentDesc1",showProp:true }, { label: _Names.componentQty, prop: 'componentQty',isNumber:true }, { label: _Names.layer, prop: "layer" }, { label: _Public.beginTime, prop: "beginTime", type:'dateTime' }, { label: _Public.endTime, prop: "endTime", type:'dateTime' }, - { label: _Public.remark, prop: 'remark' }, + // { label: _Public.remark, prop: 'remark' }, { label: _Public.creationTime, prop: "creationTime", type:'dateTime' }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' }, ] @@ -266,8 +266,8 @@ export const CustomerItem = [ { label: _Names.customerPackUom, prop: "customerPackUom", width:160 }, { label: _Public.beginTime, prop: "beginTime", type: "dateTime" }, { label: _Public.endTime, prop: "endTime", type: "dateTime" }, - { label: _Public.remark, prop: 'remark' }, - { label: _Names.version, prop: 'version' }, + // { label: _Public.remark, prop: 'remark' }, + // { label: _Names.version, prop: 'version' }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, @@ -281,13 +281,13 @@ export const CustomerAddress = [ type: "name" }, { label: _Names.customerAdrCode, prop: "code" }, - { label: _Names.customerAdrName, prop: "name" }, + // { label: _Names.customerAdrName, prop: "name" }, { label: _Names.locationCode, prop: "locationCode" }, { label: _Names.city, prop: "city" }, { label: _Names.address, prop: "address" }, { label: _Names.contact, prop: "contact" }, - { label: _Public.remark, prop: "remark" }, - { label: _Public.description, prop: "desc" }, + // { label: _Public.remark, prop: "remark" }, + // { label: _Public.description, prop: "desc" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -326,10 +326,10 @@ export const Supplier = [ { label: "联系人", prop: "contacts" }, { label: "电话", prop: "phone" }, { label: "传真", prop: 'fax' }, - { label: "邮编", prop: 'postID' }, - { label: "备注", prop: 'remark' }, - { label: "地址", prop: 'address' }, - { label: "国家", prop: 'country' }, + // { label: "邮编", prop: 'postID' }, + // { label: "备注", prop: 'remark' }, + // { label: "地址", prop: 'address' }, + // { label: "国家", prop: 'country' }, { label: "城市", prop: 'city' }, { label: "银行", prop: 'bank' }, { label: "货币", prop: 'currency' }, @@ -350,9 +350,9 @@ export const SupplierItem = [ { label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true }, { label: _Names.configuration, prop: "item_configurationFromFE",showProp:true }, { label: "供应商物品代码", prop: "supplierItemCode" }, - { label: "供应商物品名称", prop: "itemName" }, + // { label: "供应商物品名称", prop: "itemName" }, { label: _Names.supplierName, prop: 'supplierName',showProp:true }, - { label: "供应商简称", prop: "supplierSimpleName" }, + // { label: "供应商简称", prop: "supplierSimpleName" }, // { label: "版本", prop: "version" }, // { label: "供应商包装计量单位", prop: "supplierPackUom" }, { label: "供应商包装数量", prop: "supplierPackQty",isNumber:true }, @@ -372,7 +372,7 @@ export const SupplierTimeWindow = [ { label: _Names.supplierName, prop: "supplierName" }, { label: "当前星期", prop: "week", type: "filter", filters: "week" }, { label: "时间窗口", prop: "timeSlot" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -404,7 +404,7 @@ export const Area = [ { label: "区域名称", prop: "name" }, { label: "是否功能区", prop: "isFunctional", type: "filter", filters: "whetherOrNot" }, // { label: "类型", prop: "areaType", type: "filter", filters: "areaType" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -439,7 +439,7 @@ export const LocationGroup = [ { label: "是否接收客户退货", prop: "enableReturnFromCustomer", type: "filter", filters: "whetherOrNot" }, { label: "是否拆箱", prop: "enableSplitBox", type: "filter", filters: "whetherOrNot" }, { label: "是否拆托", prop: "enableSplitPallet", type: "filter", filters: "whetherOrNot" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -494,8 +494,8 @@ export const Location = [ { label: "是否退货给供应商", prop: "enableReturnToSupplier", type: "filter", filters: "whetherOrNot" }, { label: "是否接收客户退货", prop: "enableReturnFromCustomer", type: "filter", filters: "whetherOrNot" }, { label: "是否拆箱", prop: "enableSplitBox", type: "filter", filters: "whetherOrNot" }, - { label: _Public.description, prop: "description" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.description, prop: "description" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -508,7 +508,7 @@ export const ItemStoreRelation = [ fixed: "left", type: "name" }, - { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, + // { label: _Names.itemName, prop: "item_nameFromFE",showProp:true }, { label: _Names.itemDesc1, prop: "item_desc1FromFE",showProp:true }, { label: _Names.itemDesc2, prop: "item_desc2FromFE",showProp:true }, { label: _Names.configuration, prop: "item_configurationFromFE",showProp:true }, @@ -516,13 +516,13 @@ export const ItemStoreRelation = [ { label: "库位", prop: "storeValue" }, { label: "是否可用", prop: "enabled", type: "filter", filters: "whetherOrNot" }, { label: "主存储容量", prop: "umQty",isNumber:true }, - { label: "主存储单位", prop: "storeUM" }, + // { label: "主存储单位", prop: "storeUM" }, { label: "次要存储容量", prop: "altUmQty" ,isNumber:true}, - { label: "次要存储单位", prop: "altUm" }, - { label: "存储单位", prop: "pramaryUM", type: "filter", filters: "pramaryUm" }, + // { label: "次要存储单位", prop: "altUm" }, + // { label: "存储单位", prop: "pramaryUM", type: "filter", filters: "pramaryUm" }, // { label: "是否定制位置", prop: "isFixed", type: "filter", filters: "whetherOrNot" }, // { label: "是否占用多库位", prop: "multiLoc", type: "filter", filters: "whetherOrNot" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -539,7 +539,7 @@ export const InventoryLocationCapacity = [ { label: "是否无穷大", prop: "isInfinity", type: "filter", filters: "whetherOrNot" }, { label: "已用容量", prop: "usedCapacity" }, { label: "可承受过载容量", prop: "bearableOverloadCapacity" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -2168,11 +2168,11 @@ export const InventoryBalance = [ type: "name", width: orderWidth }, - { label: _Names.itemName, prop: "itemName" }, + // { label: _Names.itemName, prop: "itemName" }, { label: _Names.itemDesc1, prop: "itemDesc1" }, { label: _Names.itemDesc2, prop: "itemDesc2" }, { label: _Names.configuration, prop: "item_configurationFromFE",showProp:true }, - { label: "类型", prop: 'item_typeFromFE', type: "filter", filters: "ItemTypeBasic", showProp:true }, + // { label: "类型", prop: 'item_typeFromFE', type: "filter", filters: "ItemTypeBasic", showProp:true }, { label: "库存数量", prop: "qty",isNumber:true }, { label: "计量单位", prop: "uom" }, { label: "标准成本单价", prop: "stdCostPrice" }, @@ -2192,11 +2192,11 @@ export const InventoryBalance = [ { label: "最后盘点计划单号", prop: "lastCountPlanNumber",width: orderWidth }, // { label: "最后盘点标签", prop: "lastCountLabel" }, { label: "标包数量", prop: "stdPackQty",isNumber:true }, - { label: "库位组", prop: "locationGroup" }, - { label: "库区", prop: "locationArea" }, - { label: "管理类型", prop: "manageType", type: "filter", filters: "manageType" }, + // { label: "库位组", prop: "locationGroup" }, + // { label: "库区", prop: "locationArea" }, + // { label: "管理类型", prop: "manageType", type: "filter", filters: "manageType" }, // { label: "序号", prop: "serialNumber" }, - { label: "备注", prop: "remark" }, + // { label: "备注", prop: "remark" }, { label: "到货日期", prop: "arriveDate",type: "dateTime" }, { label: "供应商批次", prop: "supplierBatch" }, { label: "最后事务类型", prop: "lastTransType", type: "filter", filters: "TransTypeBase" }, @@ -2361,7 +2361,7 @@ export const expectOut = [ { label: "创建时间", prop: "creationTime", type: "dateTime" }, // { label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" }, { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "itemName" }, + // { label: _Names.itemName, prop: "itemName" }, { label: _Names.itemDesc1, prop: "itemDesc1" }, { label: _Names.itemDesc2, prop: "itemDesc2" }, { label: "占用数量", prop: "qty",isNumber:true }, @@ -2369,15 +2369,15 @@ export const expectOut = [ { label: "库位代码", prop: "locationCode" }, { label: "箱码", prop: "packingCode" }, { label: "供应商批次", prop: "supplierBatch" }, - { label: "库区", prop: "locationArea" }, - { label: "库位组", prop: "locationGroup" }, + // { label: "库区", prop: "locationArea" }, + // { label: "库位组", prop: "locationGroup" }, { label: _Names.locationErpCode, prop: "locationErpCode" }, { label: "批次", prop: "lot" }, { label: "到货日期", prop: "arriveDate",type:"dateTime" }, { label: "生产日期", prop: "produceDate",type: "dateTime" }, { label: "过期时间", prop: "expireDate",type:"dateTime" }, // { label: "序号", prop: "serialNumber" }, - { label: "备注", prop: 'remark' }, + // { label: "备注", prop: 'remark' }, ] // 预计入库存(+自定义tab页) @@ -2391,7 +2391,7 @@ export const expectIn = [ }, { label: "状态", prop: "status", type: "tagFilter", filters: "jobStatus" }, { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "itemName" }, + // { label: _Names.itemName, prop: "itemName" }, { label: _Names.itemDesc1, prop: "itemDesc1" }, { label: _Names.itemDesc2, prop: "itemDesc2" }, { label: "占用数量", prop: "qty",isNumber:true }, @@ -2400,8 +2400,8 @@ export const expectIn = [ { label: "箱码", prop: "packingCode" }, { label: "批次", prop: "lot" }, { label: "供应商批次", prop: "supplierBatch" }, - { label: "库区", prop: "locationArea" }, - { label: "库位组", prop: "locationGroup" }, + // { label: "库区", prop: "locationArea" }, + // { label: "库位组", prop: "locationGroup" }, { label: _Names.locationErpCode, prop: "locationErpCode" }, { label: "到货日期", prop: "arriveDate",type: "dateTime" }, { label: "生产日期", prop: "produceDate",type: "dateTime" }, @@ -2409,7 +2409,7 @@ export const expectIn = [ { label: "创建时间", prop: "creationTime", type: "dateTime" }, // { label: "上次修改时间", prop: "lastModificationTime",type: "dateTime" }, // { label: "序号", prop: 'serialNumber' }, - { label: "备注", prop: 'remark' }, + // { label: "备注", prop: 'remark' }, ] // 物品安全库存预警 diff --git a/fe/PC/src/utils/tabsDesTions/index.js b/fe/PC/src/utils/tabsDesTions/index.js index ec90fc28e..24890d8be 100644 --- a/fe/PC/src/utils/tabsDesTions/index.js +++ b/fe/PC/src/utils/tabsDesTions/index.js @@ -7,25 +7,25 @@ let _Names = zh.ColumsNames // 业务字段 // 物品基础信息 export const ItemBasic = [ { label: _Names.itemCode, prop: "code" }, - { label: _Names.itemName, prop: "name" }, + // { label: _Names.itemName, prop: "name" }, { label: _Names.itemDesc1, prop: "desc1" }, { label: _Names.itemDesc2, prop: "desc2" }, { label: _Names.configuration, prop: "configuration" }, - { label: _Names.basicUom, prop: "basicUom" }, + // { label: _Names.basicUom, prop: "basicUom" }, { label: _Names.category, prop: "category" }, { label: _Public.status, prop: "status", type: "filter", filters: "itemStatus" }, { label: _Public.type, prop: 'type', type: "filter", filters: "ItemTypeBasic" }, { label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" }, { label: _Names.canMake, prop: 'canMake', type: "filter", filters: "whetherOrNot" }, { label: _Names.canBuy, prop: 'canBuy', type: "filter", filters: "whetherOrNot" }, - { label: _Names.canOutsourcing, prop: 'canOutsourcing', type: "filter", filters: "whetherOrNot" }, + // { label: _Names.canOutsourcing, prop: 'canOutsourcing', type: "filter", filters: "whetherOrNot" }, { label: _Names.isRecycled, prop: 'isRecycled', type: "filter", filters: "whetherOrNot" }, - { label: _Names.isPhantom, prop: "isPhantom", type: "filter", filters: "whetherOrNot" }, + // { label: _Names.isPhantom, prop: "isPhantom", type: "filter", filters: "whetherOrNot" }, { label: _Names.stdPackQty, prop: "stdPackQty",isNumber:true }, { label: _Names.validity, prop: "validity" }, - { label: _Names.validityUnit, prop: "validityUnit", type: "filter", filters: "validityUnit" }, - { label: _Names.manageType, prop: "manageType", type: "filter", filters: "manageType" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Names.validityUnit, prop: "validityUnit", type: "filter", filters: "validityUnit" }, + // { label: _Names.manageType, prop: "manageType", type: "filter", filters: "manageType" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -33,7 +33,7 @@ export const ItemBasic = [ // 物品质量信息 export const ItemQuality = [ { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "item_nameFromFE" }, + // { label: _Names.itemName, prop: "item_nameFromFE" }, { label: _Names.itemDesc1, prop: "item_desc1FromFE" }, { label: _Names.itemDesc2, prop: "item_desc2FromFE" }, { label: _Names.configuration, prop: "item_configurationFromFE" }, @@ -41,8 +41,8 @@ export const ItemQuality = [ { label: _Names.supplierName, prop: 'supplierName' }, { label: _Public.status, prop: 'status', type: "filter", filters: "openToClose" }, { label: _Names.inspectType, prop: 'inspectType', type: "filter", filters: "inspectType" }, - { label: _Public.remark, prop: "remark" }, - { label: _Public.description, prop: "description" }, + // { label: _Public.remark, prop: "remark" }, + // { label: _Public.description, prop: "description" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, @@ -61,18 +61,18 @@ export const ItemCategory = [ // 物品包装信息 export const ItemPack = [ { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "item_nameFromFE" }, + // { label: _Names.itemName, prop: "item_nameFromFE" }, { label: _Names.itemDesc1, prop: "item_desc1FromFE" }, { label: _Names.itemDesc2, prop: "item_desc2FromFE" }, { label: _Names.configuration, prop: "item_configurationFromFE" }, - { label: _Names.supplierCode, prop: 'supplierCode' }, - { label: _Names.supplierName, prop: 'supplierName' }, + // { label: _Names.supplierCode, prop: 'supplierCode' }, + // { label: _Names.supplierName, prop: 'supplierName' }, { label: _Names.packCode, prop: "packCode", }, { label: _Names.packName, prop: "packName" }, - { label: _Names.packType, prop: "packType" }, - { label: _Names.packBasicUom, prop: "basicUom" }, + // { label: _Names.packType, prop: "packType" }, + // { label: _Names.packBasicUom, prop: "basicUom" }, { label: _Names.packQty, prop: "qty",isNumber:true }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type:'dateTime' }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' }, ] @@ -80,19 +80,19 @@ export const ItemPack = [ // 物品质检标准信息 export const AQL = [ { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "item_nameFromFE" }, + // { label: _Names.itemName, prop: "item_nameFromFE" }, { label: _Names.itemDesc1, prop: "item_desc1FromFE" }, { label: _Names.itemDesc2, prop: "item_desc2FromFE" }, { label: _Names.configuration, prop: "item_configurationFromFE" }, { label: _Names.supplierCode, prop: 'supplierCode' }, { label: _Names.supplierName, prop: 'supplierName' }, - { label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" }, + // { label: _Names.abcClass, prop: 'abcClass', type: "filter", filters: "abcClass" }, { label: _Names.ceilingQty, prop: 'ceilingQty',isNumber:true }, { label: _Names.floorQty, prop: "floorQty",isNumber:true}, // { label: _Names.isUsePercent, prop: 'isUsePercent', type: "filter", filters: "whetherOrNot" }, // { label: _Names.samplePercent, prop: 'samplePercent' }, { label: _Names.sampleQty, prop: 'sampleQty',isNumber:true }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type:'dateTime' }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type:'dateTime' }, ] @@ -102,13 +102,13 @@ export const PositionCode = [ { label: '位置码', prop: "code" }, { label: "位置码类型", prop: 'type', type: "filter", filters: "positionCodeType" }, { label: _Names.itemCode, prop: "partCode" }, - { label: _Names.itemName, prop: "partName" }, + // { label: _Names.itemName, prop: "partName" }, { label: _Names.itemDesc1, prop: "partDesc" }, - { label: _Names.basicUom, prop: "basicUom" }, + // { label: _Names.basicUom, prop: "basicUom" }, { label: "箱数/数量", prop: "stdPackQty" }, { label: "目标库位代码", prop: "locationCode" }, { label: "目标库位名称", prop: "locationName" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -118,12 +118,12 @@ export const ItemContainer = [ { label: "收容代码", prop: "containerCode" }, { label: "收容代码描述", prop: "containerName" }, { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "item_nameFromFE" }, + // { label: _Names.itemName, prop: "item_nameFromFE" }, { label: _Names.itemDesc1, prop: "item_desc1FromFE" }, { label: _Names.itemDesc2, prop: "item_desc2FromFE" }, { label: _Names.configuration, prop: "item_configurationFromFE" }, { label: '转储标包数量', prop: "qty" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -131,10 +131,10 @@ export const ItemContainer = [ // 物品清单信息 export const Bom = [ { label: _Names.productCode, prop: "product" }, - { label: _Names.productName, prop: "productName" }, + // { label: _Names.productName, prop: "productName" }, { label: _Names.productDesc1, prop: "productDesc1" }, { label: _Names.componentCode, prop: "component" }, - { label: _Names.componentName, prop: "componentName" }, + // { label: _Names.componentName, prop: "componentName" }, { label: _Names.componentDesc1, prop: "componentDesc1" }, { label: _Names.componentQty, prop: 'componentQty',isNumber:true }, { label: _Names.layer, prop: "layer" }, @@ -172,8 +172,8 @@ export const CustomerItem = [ { label: _Names.customerPackUom, prop: "customerPackUom" }, { label: _Public.beginTime, prop: "beginTime", type: "dateTime" }, { label: _Public.endTime, prop: "endTime", type: "dateTime" }, - { label: _Public.remark, prop: 'remark' }, - { label: _Names.version, prop: 'version' }, + // { label: _Public.remark, prop: 'remark' }, + // { label: _Names.version, prop: 'version' }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -182,13 +182,13 @@ export const CustomerItem = [ export const CustomerAddress = [ { label: _Names.customerCode, prop: "customerCode" }, { label: _Names.customerAdrCode, prop: "code" }, - { label: _Names.customerAdrName, prop: "name" }, + // { label: _Names.customerAdrName, prop: "name" }, { label: _Names.locationCode, prop: "locationCode" }, { label: _Names.city, prop: "city" }, { label: _Names.address, prop: "address" }, { label: _Names.contact, prop: "contact" }, - { label: _Public.remark, prop: "remark" }, - { label: _Public.description, prop: "desc" }, + // { label: _Public.remark, prop: "remark" }, + // { label: _Public.description, prop: "desc" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime" }, ] @@ -217,10 +217,10 @@ export const Supplier = [ { label: "联系人", prop: "contacts" }, { label: "电话", prop: "phone" }, { label: "传真", prop: 'fax' }, - { label: "邮编", prop: 'postID' }, - { label: "备注", prop: 'remark' }, - { label: "地址", prop: 'address' }, - { label: "国家", prop: 'country' }, + // { label: "邮编", prop: 'postID' }, + // { label: "备注", prop: 'remark' }, + // { label: "地址", prop: 'address' }, + // { label: "国家", prop: 'country' }, { label: "城市", prop: 'city' }, { label: "银行", prop: 'bank' }, { label: "货币", prop: 'currency' }, @@ -236,9 +236,9 @@ export const SupplierItem = [ { label: _Names.itemDesc2, prop: "item_desc2FromFE" }, { label: _Names.configuration, prop: "item_configurationFromFE" }, { label: "供应商物品代码", prop: "supplierItemCode" }, - { label: "供应商物品名称", prop: "itemName" }, + // { label: "供应商物品名称", prop: "itemName" }, { label: _Names.supplierName, prop: 'supplierName' }, - { label: "供应商简称", prop: "supplierSimpleName" }, + // { label: "供应商简称", prop: "supplierSimpleName" }, { label: "供应商包装数量", prop: "supplierPackQty",isNumber:true }, { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, @@ -251,7 +251,7 @@ export const SupplierTimeWindow = [ { label: _Names.supplierName, prop: "supplierName" }, { label: "当前星期", prop: "week", type: "filter", filters: "week" }, { label: "时间窗口", prop: "timeSlot" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -274,7 +274,7 @@ export const Area = [ { label: "是否功能区", prop: "isFunctional", type: "filter", filters: "whetherOrNot" }, // { label: "类型", prop: "areaType", type: "filter", filters: "areaType" }, // { label: "描述", prop: "description" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -302,7 +302,7 @@ export const LocationGroup = [ { label: "是否接收客户退货", prop: "enableReturnFromCustomer", type: "filter", filters: "whetherOrNot" }, { label: "是否拆箱", prop: "enableSplitBox", type: "filter", filters: "whetherOrNot" }, { label: "是否拆托", prop: "enableSplitPallet", type: "filter", filters: "whetherOrNot" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -347,8 +347,8 @@ export const Location = [ { label: "是否退货给供应商", prop: "enableReturnToSupplier", type: "filter", filters: "whetherOrNot" }, { label: "是否接收客户退货", prop: "enableReturnFromCustomer", type: "filter", filters: "whetherOrNot" }, { label: "是否拆箱", prop: "enableSplitBox", type: "filter", filters: "whetherOrNot" }, - { label: _Public.description, prop: "description" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.description, prop: "description" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -364,11 +364,11 @@ export const ItemStoreRelation = [ { label: "库位", prop: "storeValue" }, { label: "是否可用", prop: "enabled", type: "filter", filters: "whetherOrNot" }, { label: "主存储容量", prop: "umQty",isNumber:true }, - { label: "主存储单位", prop: "storeUM" }, + // { label: "主存储单位", prop: "storeUM" }, { label: "次要存储容量", prop: "altUmQty" ,isNumber:true}, - { label: "次要存储单位", prop: "altUm" }, - { label: "存储单位", prop: "pramaryUM", type: "filter", filters: "pramaryUm" }, - { label: _Public.remark, prop: "remark" }, + // { label: "次要存储单位", prop: "altUm" }, + // { label: "存储单位", prop: "pramaryUM", type: "filter", filters: "pramaryUm" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -380,7 +380,7 @@ export const InventoryLocationCapacity = [ { label: "是否无穷大", prop: "isInfinity", type: "filter", filters: "whetherOrNot" }, { label: "已用容量", prop: "usedCapacity" }, { label: "可承受过载容量", prop: "bearableOverloadCapacity" }, - { label: _Public.remark, prop: "remark" }, + // { label: _Public.remark, prop: "remark" }, { label: _Public.creationTime, prop: "creationTime", type: "dateTime" }, { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" }, ] @@ -1378,7 +1378,7 @@ export const InventoryInitialNote = [ // 库存余额 export const InventoryBalance = [ { label: _Names.itemCode, prop: 'itemCode' }, - { label: "物品名称", prop: "itemName" }, + // { label: "物品名称", prop: "itemName" }, { label: "库存数量", prop: "qty" }, { label: "计量单位", prop: "uom" }, { label: "批次", prop: 'lot' }, @@ -1402,12 +1402,12 @@ export const InventoryInitialNote = [ { label: "标准成本金额", prop: "stdCost" }, { label: "供应商批次", prop: 'supplierBatch' }, // { label: "序号", prop: "serialNumber" }, - { label: "备注", prop: 'remark' }, + // { label: "备注", prop: 'remark' }, { label: "最后事务编号", prop: "lastTransNumber" }, { label: "最后事务类型", prop: "lastTransType", type: "filter", filters: "TransTypeBase" }, - { label: "库区", prop: "locationArea" }, - { label: "库位组", prop: "locationGroup" }, - { label: "管理类型", prop: "manageType", type: "filter", filters: "manageType" }, + // { label: "库区", prop: "locationArea" }, + // { label: "库位组", prop: "locationGroup" }, + // { label: "管理类型", prop: "manageType", type: "filter", filters: "manageType" }, { label: "到货时间", prop: "arriveDate",type:"dateTime" }, ] @@ -1553,7 +1553,7 @@ export const InventoryTransferLog = [ // 预计入库存 export const expectIn = [ { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "itemName" }, + // { label: _Names.itemName, prop: "itemName" }, { label: _Names.itemDesc1, prop: "itemDesc1" }, { label: _Names.itemDesc2, prop: "itemDesc2" }, { label: "任务编号", prop: "jobNumber" }, @@ -1561,13 +1561,13 @@ export const expectIn = [ { label: "库位代码", prop: "locationCode" }, { label: "占用数量", prop: "qty" }, { label: "供应商批次", prop: "supplierBatch" }, - { label: "库区", prop: "locationArea" }, - { label: "库位组", prop: "locationGroup" }, + // { label: "库区", prop: "locationArea" }, + // { label: "库位组", prop: "locationGroup" }, { label: _Names.locationErpCode, prop: "locationErpCode" }, { label: "生产日期", prop: "produceDate",type: "dateTime" }, { label: "状态", prop: "status", type: "filter", filters: "jobStatus" }, { label: "创建时间", prop: "creationTime", type: "dateTime" }, - { label: "备注", prop: 'remark' }, + // { label: "备注", prop: 'remark' }, { label: "序号", prop: "serialNumber" }, { label: "批次", prop: 'lot' }, { label: "单位", prop: "uom" }, @@ -1579,7 +1579,7 @@ export const expectIn = [ // 预计入库存 export const expectOut = [ { label: _Names.itemCode, prop: "itemCode" }, - { label: _Names.itemName, prop: "itemName" }, + // { label: _Names.itemName, prop: "itemName" }, { label: _Names.itemDesc1, prop: "itemDesc1" }, { label: _Names.itemDesc2, prop: "itemDesc2" }, { label: "任务编号", prop: "jobNumber" }, @@ -1587,13 +1587,13 @@ export const expectOut = [ { label: "库位代码", prop: "locationCode" }, { label: "占用数量", prop: "qty" }, { label: "供应商批次", prop: "supplierBatch" }, - { label: "库区", prop: "locationArea" }, - { label: "库位组", prop: "locationGroup" }, + // { label: "库区", prop: "locationArea" }, + // { label: "库位组", prop: "locationGroup" }, { label: _Names.locationErpCode, prop: "locationErpCode" }, { label: "生产日期", prop: "produceDate", type: "dateTime" }, { label: "状态", prop: "status", type: "filter", filters: "jobStatus" }, { label: "创建时间", prop: "creationTime", type: "dateTime" }, - { label: "备注", prop: 'remark' }, + // { label: "备注", prop: 'remark' }, // { label: "序号", prop: "serialNumber" }, { label: "批次", prop: 'lot' }, { label: "单位", prop: "uom" }, diff --git a/fe/PC/src/views/basicData/ItemsManage/ItemBasic.vue b/fe/PC/src/views/basicData/ItemsManage/ItemBasic.vue index 554c112ff..55fee3c02 100644 --- a/fe/PC/src/views/basicData/ItemsManage/ItemBasic.vue +++ b/fe/PC/src/views/basicData/ItemsManage/ItemBasic.vue @@ -323,13 +323,13 @@ export default { tableColumns: 'AQL', functionName: 'getListByItemcode' }, - { - label: "分类信息", - name: 'flxx', - url: 'basedata/item-category', - tableColumns: 'ItemCategory', - functionName: 'getListByItemcode' - }, + // { + // label: "分类信息", + // name: 'flxx', + // url: 'basedata/item-category', + // tableColumns: 'ItemCategory', + // functionName: 'getListByItemcode' + // }, // { // label: "包装信息", // name: 'bzxx', @@ -337,27 +337,27 @@ export default { // tableColumns: 'ItemPack', // functionName: 'getListByItemcode' // }, - { - label: "库存余额", - name: 'kcye', - url: 'wms/inventory/inventory-balance', - tableColumns: 'InventoryBalance', - functionName: 'byItem' - }, + // { + // label: "库存余额", + // name: 'kcye', + // url: 'wms/inventory/inventory-balance', + // tableColumns: 'InventoryBalance', + // functionName: 'byItem' + // }, { label: "预计出库存", - name: 'yjrkc', - url: 'wms/inventory/expect-in', - tableColumns: 'expectIn', - functionName: 'byItem' - }, - { - label: "预计入库存", name: 'yjckc', url: 'wms/inventory/expect-out', tableColumns: 'expectOut', functionName: 'byItem' - } + }, + // { + // label: "预计入库存", + // name: 'yjrkc', + // url: 'wms/inventory/expect-in', + // tableColumns: 'expectIn', + // functionName: 'byItem' + // } ], }; }, diff --git a/fe/PC/src/views/basicData/SupplierManage/Supplier.vue b/fe/PC/src/views/basicData/SupplierManage/Supplier.vue index 7c3d51e75..6920d4cd6 100644 --- a/fe/PC/src/views/basicData/SupplierManage/Supplier.vue +++ b/fe/PC/src/views/basicData/SupplierManage/Supplier.vue @@ -203,13 +203,13 @@ export default { label: "详情", name: 'xq' }, - { - label: "供应商零件列表", - name: 'gysljlb', - url: 'basedata/supplier-item', - tableColumns: 'SupplierItem', - functionName: 'bySupplierCode' - }, + // { + // label: "供应商零件列表", + // name: 'gysljlb', + // url: 'basedata/supplier-item', + // tableColumns: 'SupplierItem', + // functionName: 'bySupplierCode' + // }, { label: "供应商时间窗口", name: 'gyssjck', diff --git a/fe/PC/src/views/basicData/WarehouseManage/InventoryLocationCapacity.vue b/fe/PC/src/views/basicData/WarehouseManage/InventoryLocationCapacity.vue index 9fc352590..7be181fcd 100644 --- a/fe/PC/src/views/basicData/WarehouseManage/InventoryLocationCapacity.vue +++ b/fe/PC/src/views/basicData/WarehouseManage/InventoryLocationCapacity.vue @@ -169,20 +169,20 @@ export default { tableColumns: 'InventoryBalance', functionName: 'byLocation' }, - { - label: "预计出库存", - name: 'yjrkc', - url: 'wms/inventory/expect-in', - tableColumns: 'expectIn', - functionName: 'byLocation' - }, - { - label: "预计入库存", - name: 'yjckc', - url: 'wms/inventory/expect-out', - tableColumns: 'expectOut', - functionName: 'byLocation' - } + // { + // label: "预计出库存", + // name: 'yjrkc', + // url: 'wms/inventory/expect-in', + // tableColumns: 'expectIn', + // functionName: 'byLocation' + // }, + // { + // label: "预计入库存", + // name: 'yjckc', + // url: 'wms/inventory/expect-out', + // tableColumns: 'expectOut', + // functionName: 'byLocation' + // } ], editRules: { cerateRule: { diff --git a/fe/PC/src/views/basicData/WarehouseManage/Location.vue b/fe/PC/src/views/basicData/WarehouseManage/Location.vue index 551433ebc..9c62e737e 100644 --- a/fe/PC/src/views/basicData/WarehouseManage/Location.vue +++ b/fe/PC/src/views/basicData/WarehouseManage/Location.vue @@ -351,13 +351,13 @@ export default { label: "详情", name: 'xq' }, - { - label: "库存可用量", - name: 'kckyl', - url: 'wms/inventory/location-capacity', - tableColumns: 'InventoryLocationCapacity', - functionName: 'byLocationCode' - }, + // { + // label: "库存可用量", + // name: 'kckyl', + // url: 'wms/inventory/location-capacity', + // tableColumns: 'InventoryLocationCapacity', + // functionName: 'byLocationCode' + // }, { label: "库位零件关系", name: 'kwljgx', @@ -365,27 +365,27 @@ export default { tableColumns: 'ItemStoreRelation', functionName: 'relationByLocationCode', }, - { - label: "库存余额", - name: 'kcye', - url: 'wms/inventory/inventory-balance', - tableColumns: 'InventoryBalance', - functionName: 'byLocation' - }, + // { + // label: "库存余额", + // name: 'kcye', + // url: 'wms/inventory/inventory-balance', + // tableColumns: 'InventoryBalance', + // functionName: 'byLocation' + // }, { label: "预计出库存", - name: 'yjrkc', - url: 'wms/inventory/expect-in', - tableColumns: 'expectIn', - functionName: 'byLocation' - }, - { - label: "预计入库存", name: 'yjckc', url: 'wms/inventory/expect-out', tableColumns: 'expectOut', functionName: 'byLocation' - } + }, + // { + // label: "预计入库存", + // name: 'yjrkc', + // url: 'wms/inventory/expect-in', + // tableColumns: 'expectIn', + // functionName: 'byItem' + // } ] }; },