Browse Source

询证查询调用QAD接口

hella_online_20241121
zhaoxuebing 1 week ago
parent
commit
ff54af3652
  1. 5
      src/api/wms/supplierApbalanceMain/index.ts
  2. 9
      src/views/wms/supplierManage/supplierApbalance/supplierApbalanceMain/index.vue

5
src/api/wms/supplierApbalanceMain/index.ts

@ -77,3 +77,8 @@ export const getMonthDay = async () => {
return await request.get({ url: `/wms/supplier-apbalance-calendar/getMonthDay`})
}
// 查询供应商余额明细主列表
export const confirmationPage = async (params) => {
return await request.get({ url: `/wms/supplier-apbalance-main/confirmationPage`, params })
}

9
src/views/wms/supplierManage/supplierApbalance/supplierApbalanceMain/index.vue

@ -371,9 +371,12 @@ const confirmationHandle = async ()=>{
// -- `${year.value}-${month.value}-${day.value}`
}
// searchData.ttSupplier
let param = {
"ttCompany":searchData.ttCompany,
"ttSupplier":searchData.ttSupplier,
"searchTime": `${year.value}-${month.value}-${day.value}`
}
SupplierApbalanceMainApi.confirmationPage(param)
}
const searchRef = ref()
//

Loading…
Cancel
Save