Browse Source

YT-2208SCP《供应商模具费用》增加批量发布功能,可以勾选多条数据批量发布。可以勾选所有状态的数据,勾选后点击批量发布时,不需要报错,只发布【新增】状态的数据即可。

intex
张立 3 days ago
parent
commit
049a250e7f
  1. 5
      src/api/wms/suppliperMoldCostMain/index.ts
  2. 30
      src/views/wms/deliversettlementManage/moldAllocation/supplierMoldCostMain/index.vue

5
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 })
}

30
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"
>
<template #number="{ row }">
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)">
@ -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)
})
}
</script>
Loading…
Cancel
Save