|
|
@ -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() |
|
|
|