Browse Source

HL-5809增加库存汇总查询页面,页面参考备注中的截图

hella_online_20240904
王宇飞 7 months ago
parent
commit
82cb30fb5d
  1. 10
      src/views/wms/inventoryManage/balanceSummary/balanceSummary.data.ts
  2. 142
      src/views/wms/inventoryManage/balanceSummary/index.vue

10
src/views/wms/inventoryManage/balanceSummary/balanceSummary.data.ts

@ -66,30 +66,30 @@ export const BalanceSummary = useCrudSchemas(
}, },
{ {
label: '总数', label: '总数',
field: 'num1', field: 'totalQty',
sort: 'custom' sort: 'custom'
}, },
{ {
label: '合格数', label: '合格数',
field: 'num2', field: 'qualifiedQty',
sort: 'custom', sort: 'custom',
isSearch: true isSearch: true
}, },
{ {
label: '待检数', label: '待检数',
field: 'num2', field: 'pendingQty',
sort: 'custom', sort: 'custom',
isSearch: true isSearch: true
}, },
{ {
label: '隔离数', label: '隔离数',
field: 'num2', field: 'isolatedQty',
sort: 'custom', sort: 'custom',
isSearch: true isSearch: true
}, },
{ {
label: '不合格数', label: '不合格数',
field: 'num2', field: 'unqualifiedQty',
sort: 'custom', sort: 'custom',
isSearch: true isSearch: true
} }

142
src/views/wms/inventoryManage/balanceSummary/index.vue

@ -16,7 +16,7 @@
<el-table <el-table
:data="tableData" :data="tableData"
style="width: 100%" style="width: 100%"
row-key="id" row-key="uid"
border border
lazy lazy
:load="load" :load="load"
@ -39,72 +39,96 @@ const routeName = ref()
routeName.value = route.name routeName.value = route.name
const tableColumns = ref(BalanceSummary.allSchemas.tableColumns) const tableColumns = ref(BalanceSummary.allSchemas.tableColumns)
console.log('tableColumns',tableColumns) console.log('tableColumns',tableColumns)
const tableData= ref([ // const tableData= ref([
{ // {
id: 1, // id: 1,
date: '2016-05-02', // date: '2016-05-02',
name: 'wangxiaohu', // name: '',
num: 1, // num: 1,
}, // },
{ // {
id: 2, // id: 2,
date: '2016-05-04', // date: '2016-05-04',
name: 'wangxiaohu', // name: '',
num: 2, // num: 2,
}, // },
{ // {
id: 3, // id: 3,
date: '2016-05-01', // date: '2016-05-01',
name: 'wangxiaohu', // name: '',
hasChildren: true, // hasChildren: true,
num: 3, // num: 3,
}, // },
{ // {
id: 4, // id: 4,
date: '2016-05-03', // date: '2016-05-03',
name: 'wangxiaohu', // name: '',
num: 4, // num: 4,
}, // },
]) // ])
const tableData= ref([])
const { tableObject, tableMethods } = useTable({
getListApi: BalanceApi.getBalanceSummaryPageAll //
})
// const itemCode = ref('253.504-00')
const { getList, setSearchParams } = tableMethods
getList() let defaultParams = {
level:0,
path:'',
itemCode:itemCode.value
}
const getList = async (params)=>{
let res = await BalanceApi.getBalanceSummaryPageAll(params)
tableData.value = res
console.log('库存汇总list',res)
}
/** 初始化 **/ /** 初始化 **/
onMounted(async () => { onMounted(() => {
getList() getList(defaultParams)
}) })
const load = ( row, treeNode,resolve) => { const load = async ( row, treeNode,resolve) => {
console.log('load',row, treeNode,resolve) console.log('load',row, treeNode,resolve)
console.log('tableData',tableData.value) let res = await BalanceApi.getBalanceSummaryPageAll({
setTimeout(() => { level: row['level'],
resolve([ path: row['path'],
{ itemCode:itemCode.value
id: Math.random(), })
date: '2016-05-01', if(res&&res.length>0){
name: 'wangxiaohu', resolve(res)
num: 5, }
}, console.log('加载',res)
{ // setTimeout(() => {
id: Math.random(), // resolve([
date: '2016-05-01', // {
name: 'wangxiaohu', // id: Math.random(),
num: 6, // date: '2016-05-01',
hasChildren: true, // name: '',
}, // num: 5,
]) // },
}, 1000) // {
// id: Math.random(),
// date: '2016-05-01',
// name: '',
// num: 6,
// hasChildren: true,
// },
// ])
// }, 1000)
} }
const searchList = (model)=>{ const searchList = (model)=>{
console.log('searchList',model) console.log('searchList',model)
setSearchParams(model) if(model['itemCode']){
itemCode.value = model['itemCode']
defaultParams = {
level:0,
path:'',
itemCode:itemCode.value
}
}
getList(defaultParams)
} }
const searchQueryTableSuccess = (formField, searchField, val, formRef, type, row ) => { const searchQueryTableSuccess = (formField, searchField, val, formRef, type, row ) => {
@ -128,7 +152,7 @@ const buttonBaseClick = (val, item) => {
if (val == 'export') { // if (val == 'export') { //
handleExport() handleExport()
} else if (val == 'refresh') { // } else if (val == 'refresh') { //
getList() getList(defaultParams)
} }
} }
/** 导出按钮操作 */ /** 导出按钮操作 */
@ -139,7 +163,9 @@ const handleExport = async () => {
// //
loadStart() loadStart()
const excelTitle = ref(route.meta.title) const excelTitle = ref(route.meta.title)
const data = await BalanceApi.exportBalanceSummary(tableObject.params) const data = await BalanceApi.exportTotalBalanceTree({
itemCode:itemCode.value
})
download.excel(data, `${excelTitle.value}】【${formatDate(new Date())}】.xlsx`) download.excel(data, `${excelTitle.value}】【${formatDate(new Date())}】.xlsx`)
} catch { } catch {
} finally { } finally {

Loading…
Cancel
Save