|
@ -17,6 +17,8 @@ |
|
|
<!-- 列表 --> |
|
|
<!-- 列表 --> |
|
|
<ContentWrap> |
|
|
<ContentWrap> |
|
|
<Table |
|
|
<Table |
|
|
|
|
|
v-clientTable |
|
|
|
|
|
ref="tableRef" :selection="true" |
|
|
:columns="tableColumns" |
|
|
:columns="tableColumns" |
|
|
:data="tableObject.tableList" |
|
|
:data="tableObject.tableList" |
|
|
:loading="tableObject.loading" |
|
|
:loading="tableObject.loading" |
|
@ -26,6 +28,9 @@ |
|
|
v-model:pageSize="tableObject.pageSize" |
|
|
v-model:pageSize="tableObject.pageSize" |
|
|
v-model:currentPage="tableObject.currentPage" |
|
|
v-model:currentPage="tableObject.currentPage" |
|
|
v-model:sort="tableObject.sort" |
|
|
v-model:sort="tableObject.sort" |
|
|
|
|
|
@getSelectionRows="getSelectionRows" |
|
|
|
|
|
row-key="id" |
|
|
|
|
|
:reserve-selection="true" |
|
|
> |
|
|
> |
|
|
<template #code="{row}"> |
|
|
<template #code="{row}"> |
|
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
|
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
|
@ -66,6 +71,7 @@ import TableHead from '@/components/TableHead/src/TableHead.vue' |
|
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
|
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' |
|
|
import Detail from '@/components/Detail/src/Detail.vue' |
|
|
import Detail from '@/components/Detail/src/Detail.vue' |
|
|
import { waitForDebugger } from 'inspector' |
|
|
import { waitForDebugger } from 'inspector' |
|
|
|
|
|
import { log } from 'console' |
|
|
|
|
|
|
|
|
defineOptions({ name: 'OuterApiHis' }) |
|
|
defineOptions({ name: 'OuterApiHis' }) |
|
|
|
|
|
|
|
@ -102,6 +108,8 @@ const { getList, setSearchParams } = tableMethods |
|
|
const HeadButttondata = [ |
|
|
const HeadButttondata = [ |
|
|
// defaultButtons.defaultAddBtn({hasPermi:'wms:outerApiHis:create'}), // 新增 |
|
|
// defaultButtons.defaultAddBtn({hasPermi:'wms:outerApiHis:create'}), // 新增 |
|
|
// defaultButtons.defaultImportBtn({hasPermi:'wms:outerApiHis:import'}), // 导入 |
|
|
// defaultButtons.defaultImportBtn({hasPermi:'wms:outerApiHis:import'}), // 导入 |
|
|
|
|
|
defaultButtons.mainListSelectionReTryBtn(null), // 批量重试 |
|
|
|
|
|
defaultButtons.mainListAllReTryBtn(null), // 全部重试 |
|
|
defaultButtons.defaultExportBtn(null), // 导出 |
|
|
defaultButtons.defaultExportBtn(null), // 导出 |
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
|
@ -119,7 +127,21 @@ const buttonBaseClick = (val, item) => { |
|
|
} else if (val == 'refresh') { // 刷新 |
|
|
} else if (val == 'refresh') { // 刷新 |
|
|
getList() |
|
|
getList() |
|
|
} else if (val == 'filtrate') { // 筛选 |
|
|
} else if (val == 'filtrate') { // 筛选 |
|
|
} else { // 其他按钮 |
|
|
} else if (val == 'mainAllReTry') { //全部重试 |
|
|
|
|
|
handleSelectionRetry('1') |
|
|
|
|
|
}else if (val == 'mainSelectionReTry') { // 批量重试 |
|
|
|
|
|
if (selectionRows.value.length > 0) { |
|
|
|
|
|
// const trialResultList = selectionRows.value.filter(item => item.trialResult == 1) |
|
|
|
|
|
// let str = '' |
|
|
|
|
|
// if (trialResultList.length > 0) { |
|
|
|
|
|
// str=Array.from(new Set(trialResultList.map(item=>item.number))).join('、') |
|
|
|
|
|
// message.error(`单据号【${str}】已试算成功`) |
|
|
|
|
|
// return |
|
|
|
|
|
// } |
|
|
|
|
|
handleSelectionRetry('0') |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
else { // 其他按钮 |
|
|
console.log('其他按钮', item) |
|
|
console.log('其他按钮', item) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -299,4 +321,50 @@ onMounted(async () => { |
|
|
importTemplateData.templateUrl = await OuterApiHisApi.importTemplate() |
|
|
importTemplateData.templateUrl = await OuterApiHisApi.importTemplate() |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
const selectionRows = ref<any>([]) |
|
|
|
|
|
const tableRef = ref() |
|
|
|
|
|
const getSelectionRows = (currentPage, currentPageSelectionRows) => { |
|
|
|
|
|
selectionRows.value = currentPageSelectionRows |
|
|
|
|
|
// const currentRows = selectionRows.value.find(item => item.currentPage == currentPage) |
|
|
|
|
|
// console.log(currentPageSelectionRows) |
|
|
|
|
|
// if(currentRows){ |
|
|
|
|
|
// currentRows.selectionRows = currentPageSelectionRows |
|
|
|
|
|
// }else{ |
|
|
|
|
|
// selectionRows.value.push({ |
|
|
|
|
|
// currentPage, |
|
|
|
|
|
// selectionRows:currentPageSelectionRows |
|
|
|
|
|
// }) |
|
|
|
|
|
// } |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 批量试算 |
|
|
|
|
|
const handleSelectionRetry = async (type:string)=>{ |
|
|
|
|
|
tableObject.loading = true |
|
|
|
|
|
let ids= Array.from(new Set(selectionRows.value.map(item=>item.id))).join(',') |
|
|
|
|
|
await OuterApiHisApi.batchRetry(ids,type) |
|
|
|
|
|
.then((res) => { |
|
|
|
|
|
// if (res?.status == '2') { |
|
|
|
|
|
// message.error(res.message) |
|
|
|
|
|
// } else { |
|
|
|
|
|
// message.success(res.message) |
|
|
|
|
|
// } |
|
|
|
|
|
console.log('获取到的数据',res); |
|
|
|
|
|
message.success(res.message) |
|
|
|
|
|
tableObject.loading = false |
|
|
|
|
|
buttonBaseClick('refresh', null) |
|
|
|
|
|
}) |
|
|
|
|
|
.catch((err) => { |
|
|
|
|
|
tableObject.loading = false |
|
|
|
|
|
console.log(err) |
|
|
|
|
|
}) |
|
|
|
|
|
// await PackageApi.batchPrintingLable(rows.join(',')).then(res => { |
|
|
|
|
|
// console.log(res) |
|
|
|
|
|
// window.open(srcPoint.value+'&relateNumber='+res) |
|
|
|
|
|
// message.success('创建标签成功') |
|
|
|
|
|
// }).catch(err => { |
|
|
|
|
|
// console.log(err) |
|
|
|
|
|
// message.error('创建标签失败') |
|
|
|
|
|
// }) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
</script> |
|
|
</script> |
|
|