Browse Source

YT-2164SCP《待开票数据查询-工务》增加批量通过按钮,勾选数据后可以批量审核通过

intex
张立 5 days ago
parent
commit
e8b8894697
  1. 4
      src/api/wms/supplierinvoiceInvoiced/index.ts
  2. 14
      src/utils/disposition/defaultButtons.ts
  3. 2
      src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/index.vue
  4. 30
      src/views/wms/supplierManage/supplierinvoiceInvoiced/index.vue

4
src/api/wms/supplierinvoiceInvoiced/index.ts

@ -75,4 +75,8 @@ export const agreeSupplierinvoiceInvoiced = async (id: number) => {
// 审批拒绝待开票
export const refuseSupplierinvoiceInvoiced = async (id: number) => {
return await request.post({ url: `/wms/supplierinvoice-invoiced/refuse?id=` + id })
}
// 批量通过
export const batchPasslist = async (data) => {
return await request.post({ url: `/wms/supplierinvoice-invoiced/batchPasslist`, data })
}

14
src/utils/disposition/defaultButtons.ts

@ -798,7 +798,19 @@ export function mainListPlanCloBtn(option: any) {
hasPermi: ''
})
}
// 主列表-批量通过
export function mainListSelectionOrderPassBtn(option: any) {
return __defaultBtnOption(option, {
label: t(`ts.批量通过`).replace('ts.', ''),
name: 'mainOrderSelectionPass',
hide: false,
type: 'primary',
color: '',
float: 'left',
link: false, // 文本展现按钮
hasPermi: ''
})
}
// 主列表-批量重试按钮
export function mainListSelectionReTryBtn(option: any) {
return __defaultBtnOption(option, {

2
src/views/wms/purchasereceiptManage/supplierdeliver/demandforecastingMain/index.vue

@ -29,6 +29,8 @@
v-model:currentPage="tableObject.currentPage"
v-model:sort="tableObject.sort"
@getSelectionRows="getSelectionRows"
:reserve-selection="true"
row-key="id"
>
<template v-for="name in tableObjectHead.tableList" :key="name" #[name]="{row}">
<span :class="{'success-text':row['planType_F'].indexOf(name)>-1}">{{ row[name] }}</span>

30
src/views/wms/supplierManage/supplierinvoiceInvoiced/index.vue

@ -18,6 +18,7 @@
<ContentWrap>
<Table v-clientTable
:columns="tableColumns"
:selection="true"
:data="tableObject.tableList"
:loading="tableObject.loading"
:pagination="{
@ -26,6 +27,9 @@
v-model:pageSize="tableObject.pageSize"
v-model:currentPage="tableObject.currentPage"
v-model:sort="tableObject.sort"
:reserve-selection="true"
row-key="id"
@getSelectionRows="getSelectionRows"
>
<template #code="{row}">
<el-button type="primary" link @click="openDetail(row, t('代码'), row.code)">
@ -117,6 +121,7 @@ const HeadButttondata = [
// defaultButtons.defaultAddBtn({hasPermi:'wms:supplierinvoice-invoiced:create'}), //
// defaultButtons.defaultImportBtn({hasPermi:'wms:supplierinvoice-invoiced:import'}), //
defaultButtons.defaultExportBtn(null), //
defaultButtons.mainListSelectionOrderPassBtn(null), //
defaultButtons.defaultFreshBtn(null), //
defaultButtons.defaultFilterBtn(null), //
defaultButtons.defaultSetBtn(null), //
@ -141,6 +146,8 @@ const buttonBaseClick = (val, item) => {
} else if (val == 'refresh') { //
getList()
} else if (val == 'filtrate') { //
} else if (val == 'mainOrderSelectionPass') { //
handleBatchPass()
} else { //
console.log('其他按钮', item)
}
@ -340,7 +347,28 @@ const getFiled=()=> {
tableColumns .value= SupplierinvoiceInvoicedAllSchemas.value.allSchemas.tableColumns
}
}
const currentPageSelectionList = ref([])
const getSelectionRows = (currentPage, currentPageSelectionRows) => {
currentPageSelectionList.value = currentPageSelectionRows
}
//
const handleBatchPass =async () => {
tableObject.loading = true
// let rows: any = []
// selectionRows.value.forEach((item) => {
// rows = [...rows, ...item.selectionRows.map((item1) => item1.mainId)]
// })
// console.log('', rows.join(','))
let ids = currentPageSelectionList.value.map(item => item.id).join(',')
await SupplierinvoiceInvoicedApi.batchPasslist({ ids: ids }).then((res) => {
message.success(res.message)
tableObject.loading = false
buttonBaseClick('refresh', null)
}).catch((err) => {
tableObject.loading = false
console.log(err)
})
}
/** 初始化 **/
onMounted(async () => {
await getList()

Loading…
Cancel
Save