From 049a250e7f39024459c99d1bda3300cdd49eb945 Mon Sep 17 00:00:00 2001
From: zhang_li
Date: Wed, 2 Apr 2025 15:08:25 +0800
Subject: [PATCH] =?UTF-8?q?YT-2208SCP=E3=80=8A=E4=BE=9B=E5=BA=94=E5=95=86?=
=?UTF-8?q?=E6=A8=A1=E5=85=B7=E8=B4=B9=E7=94=A8=E3=80=8B=E5=A2=9E=E5=8A=A0?=
=?UTF-8?q?=E6=89=B9=E9=87=8F=E5=8F=91=E5=B8=83=E5=8A=9F=E8=83=BD=EF=BC=8C?=
=?UTF-8?q?=E5=8F=AF=E4=BB=A5=E5=8B=BE=E9=80=89=E5=A4=9A=E6=9D=A1=E6=95=B0?=
=?UTF-8?q?=E6=8D=AE=E6=89=B9=E9=87=8F=E5=8F=91=E5=B8=83=E3=80=82=E5=8F=AF?=
=?UTF-8?q?=E4=BB=A5=E5=8B=BE=E9=80=89=E6=89=80=E6=9C=89=E7=8A=B6=E6=80=81?=
=?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=EF=BC=8C=E5=8B=BE=E9=80=89=E5=90=8E?=
=?UTF-8?q?=E7=82=B9=E5=87=BB=E6=89=B9=E9=87=8F=E5=8F=91=E5=B8=83=E6=97=B6?=
=?UTF-8?q?=EF=BC=8C=E4=B8=8D=E9=9C=80=E8=A6=81=E6=8A=A5=E9=94=99=EF=BC=8C?=
=?UTF-8?q?=E5=8F=AA=E5=8F=91=E5=B8=83=E3=80=90=E6=96=B0=E5=A2=9E=E3=80=91?=
=?UTF-8?q?=E7=8A=B6=E6=80=81=E7=9A=84=E6=95=B0=E6=8D=AE=E5=8D=B3=E5=8F=AF?=
=?UTF-8?q?=E3=80=82?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/wms/suppliperMoldCostMain/index.ts | 5 ++++
.../supplierMoldCostMain/index.vue | 30 +++++++++++++++++--
2 files changed, 33 insertions(+), 2 deletions(-)
diff --git a/src/api/wms/suppliperMoldCostMain/index.ts b/src/api/wms/suppliperMoldCostMain/index.ts
index 6aa6f36f7..d97ead576 100644
--- a/src/api/wms/suppliperMoldCostMain/index.ts
+++ b/src/api/wms/suppliperMoldCostMain/index.ts
@@ -56,4 +56,9 @@ export const close = async (id: number) => {
// 重新打开明细
export const reOpen = async (id: number) => {
return await request.get({ url: `/wms/supplier-tool-apport-statement-detail/reOpen?id=` + id })
+}
+
+// 批量发布
+export const batchPublish = async (data) => {
+ return await request.post({ url: `/wms/supplier-tool-apport-statement-main/batchPublish`, data })
}
\ No newline at end of file
diff --git a/src/views/wms/deliversettlementManage/moldAllocation/supplierMoldCostMain/index.vue b/src/views/wms/deliversettlementManage/moldAllocation/supplierMoldCostMain/index.vue
index b2068e9df..2fa43c6a2 100644
--- a/src/views/wms/deliversettlementManage/moldAllocation/supplierMoldCostMain/index.vue
+++ b/src/views/wms/deliversettlementManage/moldAllocation/supplierMoldCostMain/index.vue
@@ -28,9 +28,13 @@
:pagination="{
total: tableObject.total
}"
+ :selection="true"
v-model:pageSize="tableObject.pageSize"
v-model:currentPage="tableObject.currentPage"
v-model:sort="tableObject.sort"
+ :reserve-selection="true"
+ row-key="id"
+ @getSelectionRows="getSelectionRows"
>
@@ -126,6 +130,7 @@
const HeadButttondata = [
defaultButtons.defaultImportBtn({hasPermi:'wms:supplier-mold-cost-main:import'}), // 导入
defaultButtons.defaultExportBtn({hasPermi:'wms:supplier-mold-cost-main:export'}), // 导出
+ defaultButtons.mainListSelectionOrderPubBtn(null), // 批量发布
defaultButtons.defaultFreshBtn(null), // 刷新
defaultButtons.defaultFilterBtn(null), // 筛选
defaultButtons.defaultSetBtn(null) // 设置
@@ -165,7 +170,9 @@ const buttonBaseClick = (val, item) => {
} else if (val == 'refresh') {
// 刷新
getList()
- } else if (val == 'filtrate') {
+ } else if (val=='mainOrderSelectionPub'){// 批量发布
+ handleSelectionPublish()
+ }else if (val == 'filtrate') {
// 筛选
} else {
// 其他按钮
@@ -382,7 +389,26 @@ const importSuccess = () => {
exportLoading.value = false
}
}
-
+
+const currentPageSelectionList = ref([])
+const getSelectionRows = (currentPage, currentPageSelectionRows) => {
+ currentPageSelectionList.value = currentPageSelectionRows
+}
+// 批量发布
+const handleSelectionPublish = async ()=>{
+ // 发布的二次确认
+ await message.confirm(t('ts.是否发布所选中数据?'))
+ tableObject.loading = true
+ let ids = currentPageSelectionList.value.map(item => item.id).join(',')
+ await SuppliperMoldCostMainApi.batchPublish({ ids: ids }).then((res) => {
+ message.success(res.message)
+ tableObject.loading = false
+ buttonBaseClick('refresh', null)
+ }).catch((err) => {
+ tableObject.loading = false
+ console.log(err)
+ })
+}
\ No newline at end of file