From 550dbc5b234d8739b421d4409b0edc5de2a1ed09 Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Fri, 22 Nov 2024 14:16:50 +0800 Subject: [PATCH 01/12] =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../finishedShipmentMain.data.ts | 33 ++++++++++++++++++ .../unfinishedShipmentMain/index.vue | 8 ++--- .../unfinishedShipmentMain.data.ts | 34 +++++++++++++++++++ 3 files changed, 71 insertions(+), 4 deletions(-) diff --git a/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts b/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts index d3861ace2..bd50e7bd5 100644 --- a/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts +++ b/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts @@ -61,6 +61,39 @@ export const FinishedShipmentMain = useCrudSchemas(reactive([ }, isSearch: true }, + { + label: '创建者', + field: 'creator', + sort: 'custom', + isDetail:true, + isForm: false, + isTable:true, + sortTableDefault:10000 + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + search: { + component: 'DatePicker', + componentProps: { + valueFormat: 'YYYY-MM-DD HH:mm:ss', + type: 'daterange', + defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] + } + }, + detail: { + dateFormat : 'YYYY-MM-DD HH:mm:ss' + }, + isTable:true, + isForm: false, + table:{ + width:180 + }, + sortTableDefault:10000 + + }, { label: '操作', field: 'action', diff --git a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue index ab3e24366..6ad160ca0 100644 --- a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue +++ b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue @@ -109,8 +109,8 @@ const { getList, setSearchParams } = tableMethods // 列表头部按钮 const HeadButttondata = [ - defaultButtons.defaultAddBtn({hasPermi:'wms:unfinished-shipment-main:create'}), // 新增 - defaultButtons.defaultImportBtn({hasPermi:'wms:unfinished-shipment-main:import'}), // 导入 + // defaultButtons.defaultAddBtn({hasPermi:'wms:unfinished-shipment-main:create'}), // 新增 + // defaultButtons.defaultImportBtn({hasPermi:'wms:unfinished-shipment-main:import'}), // 导入 defaultButtons.defaultExportBtn({hasPermi:'wms:unfinished-shipment-main:export'}), // 导出 defaultButtons.defaultFreshBtn(null), // 刷新 defaultButtons.defaultFilterBtn(null), // 筛选 @@ -143,8 +143,8 @@ const buttonBaseClick = (val, item) => { // 列表-操作按钮 const butttondata = [ - defaultButtons.mainListEditBtn({hasPermi:'wms:unfinished-shipment-main:update'}), // 编辑 - defaultButtons.mainListDeleteBtn({hasPermi:'wms:unfinished-shipment-main:delete'}), // 删除 + // defaultButtons.mainListEditBtn({hasPermi:'wms:unfinished-shipment-main:update'}), // 编辑 + // defaultButtons.mainListDeleteBtn({hasPermi:'wms:unfinished-shipment-main:delete'}), // 删除 ] // 列表-操作按钮事件 diff --git a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts index a66431d05..92d2548f1 100644 --- a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts +++ b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts @@ -53,6 +53,40 @@ export const UnfinishedShipmentMain = useCrudSchemas(reactive([ }, isSearch: true }, + { + label: '创建者', + field: 'creator', + sort: 'custom', + isDetail:true, + isForm: false, + isTable:true, + sortTableDefault:10000 + + }, + { + label: '创建时间', + field: 'createTime', + sort: 'custom', + formatter: dateFormatter, + search: { + component: 'DatePicker', + componentProps: { + valueFormat: 'YYYY-MM-DD HH:mm:ss', + type: 'daterange', + defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] + } + }, + detail: { + dateFormat : 'YYYY-MM-DD HH:mm:ss' + }, + isTable:true, + isForm: false, + table:{ + width:180 + }, + sortTableDefault:10000 + + }, { label: '操作', field: 'action', From 17d0c147d1d34dfc081775c391f49e3536348782 Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Fri, 22 Nov 2024 14:23:06 +0800 Subject: [PATCH 02/12] =?UTF-8?q?=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../saleEstimate/finishedShipmentMain/index.vue | 2 +- .../saleEstimate/unfinishedShipmentMain/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/index.vue b/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/index.vue index 1220e95ec..aab050700 100644 --- a/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/index.vue +++ b/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/index.vue @@ -212,7 +212,7 @@ const handleExport = async () => { await message.exportConfirm() // 发起导出 exportLoading.value = true - const data = await FinishedShipmentMainApi.exportFinishedShipmentMain(tableObject.params) + const data = await FinishedShipmentDetailApi.exportFinishedShipmentDetail(tableObject.params) download.excel(data, '已发未结发货记录主.xlsx') } catch { } finally { diff --git a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue index 6ad160ca0..8e5f5a65f 100644 --- a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue +++ b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/index.vue @@ -213,7 +213,7 @@ const handleExport = async () => { await message.exportConfirm() // 发起导出 exportLoading.value = true - const data = await UnfinishedShipmentMainApi.exportUnfinishedShipmentMain(tableObject.params) + const data = await UnfinishedShipmentDetailApi.exportUnfinishedShipmentDetail(tableObject.params) download.excel(data, '已发未结发货记录主.xlsx') } catch { } finally { From ac994244719505660226ef7dd59042015d94541a Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Fri, 22 Nov 2024 14:28:48 +0800 Subject: [PATCH 03/12] =?UTF-8?q?YT-1186=E5=8F=91=E8=B4=A7=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=EF=BC=8C=E5=8F=AF=E7=BC=96=E8=BE=91=E7=9A=84=E5=8F=AA?= =?UTF-8?q?=E6=9C=89=20=E2=80=9C=E5=8F=91=E8=B4=A7=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E2=80=9D=20=E5=AD=97=E6=AE=B5=EF=BC=8C=E5=85=B6=E4=BD=99?= =?UTF-8?q?=E7=9A=86=E4=B8=8D=E5=8F=AF=E4=BF=AE=E6=94=B9=EF=BC=8C=E5=A6=82?= =?UTF-8?q?=E5=9B=BE=EF=BC=88=E9=9C=80=E6=B1=82=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../deliverRecordMain/index.vue | 15 +++++++++++++++ .../deliverRecordMain/index.vue | 15 +++++++++++++++ .../deliverRecordMain/index.vue | 15 +++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/src/views/wms/deliversettlementManage/ftSuppliesRecordMain/deliverRecordMain/index.vue b/src/views/wms/deliversettlementManage/ftSuppliesRecordMain/deliverRecordMain/index.vue index 60259da7b..4017621c6 100644 --- a/src/views/wms/deliversettlementManage/ftSuppliesRecordMain/deliverRecordMain/index.vue +++ b/src/views/wms/deliversettlementManage/ftSuppliesRecordMain/deliverRecordMain/index.vue @@ -182,6 +182,11 @@ const basicFormRef = ref() const tableData = ref([]) const openForm = (type: string, row?: any) => { tableData.value = [] + DeliverRecordMain.allSchemas.formSchema.forEach(item=>{ + if (item.field == 'businessType'){ + item.componentProps.options = item.componentProps.options.filter(cur=>cur.value == 'SSProduct'||cur.value == 'ToyotaSupplies'||cur.value == 'SkylightCarpet') + } + }) basicFormRef.value.open(type, row) } // 获取部门 用于详情 部门回显 @@ -309,4 +314,14 @@ onMounted(async () => { } getList() }) +onActivated(() => { + if (routeName.value == 'ToyotaSupplies') { + tableObject.params.businessType = 'ToyotaSupplies' + } else if (routeName.value == 'SSProduct') { + tableObject.params.businessType = 'SSProduct' + } else if (routeName.value == 'SkylightCarpet') { + tableObject.params.businessType = 'SkylightCarpet' + } + getList() +}) \ No newline at end of file diff --git a/src/views/wms/deliversettlementManage/ssSuppliesRecordMain/deliverRecordMain/index.vue b/src/views/wms/deliversettlementManage/ssSuppliesRecordMain/deliverRecordMain/index.vue index 4faea3df5..726229bd0 100644 --- a/src/views/wms/deliversettlementManage/ssSuppliesRecordMain/deliverRecordMain/index.vue +++ b/src/views/wms/deliversettlementManage/ssSuppliesRecordMain/deliverRecordMain/index.vue @@ -182,6 +182,11 @@ const basicFormRef = ref() const tableData = ref([]) const openForm = (type: string, row?: any) => { tableData.value = [] + DeliverRecordMain.allSchemas.formSchema.forEach(item=>{ + if (item.field == 'businessType'){ + item.componentProps.options = item.componentProps.options.filter(cur=>cur.value == 'SSProduct'||cur.value == 'ToyotaSupplies'||cur.value == 'SkylightCarpet') + } + }) basicFormRef.value.open(type, row) } @@ -312,4 +317,14 @@ onMounted(async () => { } getList() }) +onActivated(() => { + if (routeName.value == 'ToyotaSupplies') { + tableObject.params.businessType = 'ToyotaSupplies' + } else if (routeName.value == 'SSProduct') { + tableObject.params.businessType = 'SSProduct' + } else if (routeName.value == 'SkylightCarpet') { + tableObject.params.businessType = 'SkylightCarpet' + } + getList() +}) \ No newline at end of file diff --git a/src/views/wms/deliversettlementManage/tjdtSuppliesRecordMain/deliverRecordMain/index.vue b/src/views/wms/deliversettlementManage/tjdtSuppliesRecordMain/deliverRecordMain/index.vue index dc771cf91..3fc3dd5e0 100644 --- a/src/views/wms/deliversettlementManage/tjdtSuppliesRecordMain/deliverRecordMain/index.vue +++ b/src/views/wms/deliversettlementManage/tjdtSuppliesRecordMain/deliverRecordMain/index.vue @@ -182,6 +182,11 @@ const basicFormRef = ref() const tableData = ref([]) const openForm = (type: string, row?: any) => { tableData.value = [] + DeliverRecordMain.allSchemas.formSchema.forEach(item=>{ + if (item.field == 'businessType'){ + item.componentProps.options = item.componentProps.options.filter(cur=>cur.value == 'SSProduct'||cur.value == 'ToyotaSupplies'||cur.value == 'SkylightCarpet') + } + }) basicFormRef.value.open(type, row) } // 获取部门 用于详情 部门回显 @@ -309,4 +314,14 @@ onMounted(async () => { } getList() }) +onActivated(() => { + if (routeName.value == 'ToyotaSupplies') { + tableObject.params.businessType = 'ToyotaSupplies' + } else if (routeName.value == 'SSProduct') { + tableObject.params.businessType = 'SSProduct' + } else if (routeName.value == 'SkylightCarpet') { + tableObject.params.businessType = 'SkylightCarpet' + } + getList() +}) \ No newline at end of file From db82f4a6f0d6f5a5febc525776bab5ba9a24c0d7 Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Fri, 22 Nov 2024 14:31:59 +0800 Subject: [PATCH 04/12] =?UTF-8?q?=E5=BA=93=E4=BD=8D=20=E6=89=B9=E6=AC=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../finishedShipmentMain.data.ts | 16 ++++++++++++++++ .../unfinishedShipmentMain.data.ts | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts b/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts index bd50e7bd5..9e3d5cd5b 100644 --- a/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts +++ b/src/views/wms/deliversettlementManage/saleEstimate/finishedShipmentMain/finishedShipmentMain.data.ts @@ -164,6 +164,22 @@ export const FinishedShipmentDetail = useCrudSchemas(reactive([ } } }, + { + label: '库位', + field: 'toLocationCode', + sort: 'custom', + table: { + width: 150, + }, + }, + { + label: '批次', + field: 'batch', + sort: 'custom', + table: { + width: 150, + }, + }, // { // label: '发货数量', // field: 'shipmentQuantity', diff --git a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts index 92d2548f1..ec741d418 100644 --- a/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts +++ b/src/views/wms/deliversettlementManage/saleEstimate/unfinishedShipmentMain/unfinishedShipmentMain.data.ts @@ -157,6 +157,22 @@ export const UnfinishedShipmentDetail = useCrudSchemas(reactive([ } } }, + { + label: '库位', + field: 'toLocationCode', + sort: 'custom', + table: { + width: 150, + }, + }, + { + label: '批次', + field: 'batch', + sort: 'custom', + table: { + width: 150, + }, + }, { label: '发货数量', field: 'shipmentQuantity', From 494d8f8bb833cba0283cc90978cc26d329581589 Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Fri, 22 Nov 2024 14:34:20 +0800 Subject: [PATCH 05/12] =?UTF-8?q?YT-1178=E9=A1=BA=E5=BC=95=E5=93=81?= =?UTF-8?q?=E5=8F=91=E8=B4=A7=E9=A1=B5=E9=9D=A2=E5=B1=95=E7=A4=BA=E3=80=81?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6=E4=B8=8E=E5=8E=9F=E5=9E=8B?= =?UTF-8?q?=E4=B8=8D=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inducedProduct/deliverRecordMain/deliverRecordMain.data.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts index e436ea741..658df3070 100644 --- a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts +++ b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts @@ -25,7 +25,7 @@ export const DeliverRecordMain = useCrudSchemas( table: { width: 180 }, - isSearch: true + isSearch: false }, { label: '任务单号', @@ -538,6 +538,7 @@ export const DeliverRecordDetail = useCrudSchemas(reactive([ table: { width: 150 }, + isSearch: true }, { label: '物料名称', From 680bceb03d0703a7f1e3b2b44ed8f078358c55d9 Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Fri, 22 Nov 2024 15:01:04 +0800 Subject: [PATCH 06/12] =?UTF-8?q?YT-1211=E8=A6=81=E8=B4=A7=E9=A2=84?= =?UTF-8?q?=E6=B5=8B=E7=94=9F=E6=88=90=E6=96=B0=E7=9A=84=E8=A6=81=E8=B4=A7?= =?UTF-8?q?=E8=AE=A1=E5=88=92=EF=BC=8C=E6=AD=A4=E5=89=8D=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E7=9A=84=E8=A6=81=E8=B4=A7=E8=AE=A1=E5=88=92=E5=85=B3=E9=97=AD?= =?UTF-8?q?=EF=BC=8C=E5=85=B3=E9=97=AD=E7=9A=84=E8=A6=81=E8=B4=A7=E8=AE=A1?= =?UTF-8?q?=E5=88=92=E5=A4=87=E6=B3=A8=E6=B2=A1=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts b/src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts index ffef55e62..b9168dcd2 100644 --- a/src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts +++ b/src/views/wms/purchasereceiptManage/supplierdeliver/purchasePlanMain/purchasePlanMain.data.ts @@ -518,7 +518,7 @@ export const PurchasePlanMain = useCrudSchemas( }, isTable: false, isForm: false, - isDetail: false + isDetail: true }, { label: '操作', From 64a50a16fccd1e734b76ca47c31f808f07565aaa Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Fri, 22 Nov 2024 15:17:23 +0800 Subject: [PATCH 07/12] id --- src/api/wms/customerStatementDetail/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/wms/customerStatementDetail/index.ts b/src/api/wms/customerStatementDetail/index.ts index 8dca5fc44..7cd566cc6 100644 --- a/src/api/wms/customerStatementDetail/index.ts +++ b/src/api/wms/customerStatementDetail/index.ts @@ -129,6 +129,6 @@ export const updateAdjustmentAmount = async (id: number, masterId: number, amoun } // 客户对账单直接创建开票申请查询子分页数据 -export const pageInvoice = async (params) => { - return await request.get({ url: `/wms/customer-statement-detail/pageInvoice`, params }) +export const pageInvoice = async (id: number) => { + return await request.get({ url: `/wms/customer-statement-detail/pageInvoice?id=`+ id }) } From 1996d46f53d143a177b7535c64cf81c911a57e9d Mon Sep 17 00:00:00 2001 From: yufei_wang <2267742828@qq.com> Date: Fri, 22 Nov 2024 15:20:57 +0800 Subject: [PATCH 08/12] masterId --- src/api/wms/customerStatementDetail/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/wms/customerStatementDetail/index.ts b/src/api/wms/customerStatementDetail/index.ts index 7cd566cc6..871d99cc5 100644 --- a/src/api/wms/customerStatementDetail/index.ts +++ b/src/api/wms/customerStatementDetail/index.ts @@ -130,5 +130,5 @@ export const updateAdjustmentAmount = async (id: number, masterId: number, amoun // 客户对账单直接创建开票申请查询子分页数据 export const pageInvoice = async (id: number) => { - return await request.get({ url: `/wms/customer-statement-detail/pageInvoice?id=`+ id }) + return await request.get({ url: `/wms/customer-statement-detail/pageInvoice?masterId=`+ id }) } From 5f32415281134610a1e733eb180dac70d23204a3 Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Fri, 22 Nov 2024 17:00:54 +0800 Subject: [PATCH 09/12] =?UTF-8?q?=E9=A1=BA=E9=A5=AE=E5=93=81=E5=8F=91?= =?UTF-8?q?=E8=B4=A7=E7=B1=BB=E5=9E=8B=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../deliverRecordMain.data.ts | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts index 658df3070..76749405d 100644 --- a/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts +++ b/src/views/wms/deliversettlementManage/inducedProduct/deliverRecordMain/deliverRecordMain.data.ts @@ -57,6 +57,18 @@ export const DeliverRecordMain = useCrudSchemas( isTable: true, isDetail: true }, + { + label: '发货类型', + field: 'businessType', + sort: 'custom', + isSearch: false, + isTable: true, + dictType: DICT_TYPE.DELIVER_METHOD, + dictClass: 'string', + table: { + width: 150 + } + }, // { // label: '客户发货单号', // field: 'customerDeliverNumber', @@ -111,18 +123,7 @@ export const DeliverRecordMain = useCrudSchemas( }, isSearch: true }, - { - label: '发货类型', - field: 'deliverType', - sort: 'custom', - isSearch: false, - isTable: false, - dictType: DICT_TYPE.DELIVER_TYPE, - dictClass: 'string', - table: { - width: 150 - } - }, + { label: '客户月台代码', field: 'customerDockCode', From 68bf9fe1e6443052945503648a7a06026d4ac9fb Mon Sep 17 00:00:00 2001 From: zhang_li <2235006734@qqq.com> Date: Fri, 22 Nov 2024 17:11:13 +0800 Subject: [PATCH 10/12] =?UTF-8?q?YT-1212=E8=A1=A5=E6=96=99=E7=AD=96?= =?UTF-8?q?=E7=95=A5=EF=BC=8C=E5=AE=89=E5=85=A8=E5=BA=93=E5=AD=98=E5=A4=A7?= =?UTF-8?q?=E4=BA=8E=E6=9C=80=E5=A4=A7=E5=BA=93=E5=AD=98=E6=97=B6=EF=BC=8C?= =?UTF-8?q?=E5=BA=94=E6=9C=89=E6=8F=90=E7=A4=BA=EF=BC=8C=E7=8E=B0=E7=9B=B4?= =?UTF-8?q?=E6=8E=A5=E5=8F=98=E6=88=900?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../strategy/repairMaterialStrategy/AddForm.vue | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/views/wms/basicDataManage/strategySetting/strategy/repairMaterialStrategy/AddForm.vue b/src/views/wms/basicDataManage/strategySetting/strategy/repairMaterialStrategy/AddForm.vue index 68bc72ccd..90963a742 100644 --- a/src/views/wms/basicDataManage/strategySetting/strategy/repairMaterialStrategy/AddForm.vue +++ b/src/views/wms/basicDataManage/strategySetting/strategy/repairMaterialStrategy/AddForm.vue @@ -223,9 +223,6 @@ @@ -243,9 +240,6 @@ @@ -263,9 +257,6 @@ @@ -862,6 +853,7 @@ const searchTableSuccess = (formField, searchField, val, type, row) => { } } +