Browse Source

FWHL-249

hella_zhaoxuebing
王宇飞 1 month ago
parent
commit
eb9d285d5a
  1. 10
      src/api/wms/location/index.ts
  2. 9
      src/views/wms/issueManage/onlinesettlement/settlementReport/index.vue
  3. 12
      src/views/wms/issueManage/onlinesettlement/settlementReport/settlementReport.data.ts

10
src/api/wms/location/index.ts

@ -34,6 +34,16 @@ export const getLocationPage = async (params) => {
return await request.get({ url: `/wms/location/page`, params }) return await request.get({ url: `/wms/location/page`, params })
} }
} }
// 查询库位列表
export const getLocationPageOnlineSettlement = async (params) => {
if (params.isSearch) {
delete params.isSearch
const data = {...params}
return request.post({ url: '/wms/location/seniorOnlineSettlement', data })
} else {
return await request.get({ url: `/wms/location/pageOnlineSettlement`, params })
}
}
// 校验库位 // 校验库位
export const verifyLocation = async (params) => { export const verifyLocation = async (params) => {
return await request.get({ url: `/wms/location/listLocationByCode`, params }) return await request.get({ url: `/wms/location/listLocationByCode`, params })

9
src/views/wms/issueManage/onlinesettlement/settlementReport/index.vue

@ -143,7 +143,9 @@ const butttondata = (row) => {
const searchTableRef = ref() const searchTableRef = ref()
// - // -
const settlementRow = ref(null)
const buttonTableClick = async (val, row) => { const buttonTableClick = async (val, row) => {
settlementRow.value = row
if(val == 'settlement'){ if(val == 'settlement'){
// //
searchTableRef.value.open( searchTableRef.value.open(
@ -228,16 +230,15 @@ const opensearchTable = (
searchTableRef1.value.open( searchTableRef1.value.open(
"结算库位", "结算库位",
Location.allSchemas, Location.allSchemas,
LocationApi.getLocationPage, LocationApi.getLocationPageOnlineSettlement,
"toLocationCode", "toLocationCode",
"code", "code",
false, false,
'form', 'form',
null, null,
{ {
// supplierCode:row.supplierCode, supplierCode:settlementRow.value?.supplierCode,
// itemCode:row.itemCode, itemCode:settlementRow.value?.itemCode,
// batch:row.batch
}, },
undefined, undefined,
false, false,

12
src/views/wms/issueManage/onlinesettlement/settlementReport/settlementReport.data.ts

@ -161,10 +161,20 @@ export const SettlementReportSelectionForm = useCrudSchemas(reactive<CrudSchema[
searchField: 'code', // 查询弹窗赋值字段 searchField: 'code', // 查询弹窗赋值字段
searchTitle: '库位信息', // 查询弹窗标题 searchTitle: '库位信息', // 查询弹窗标题
searchAllSchemas: Location.allSchemas, // 查询弹窗所需类 searchAllSchemas: Location.allSchemas, // 查询弹窗所需类
searchPage: LocationApi.getLocationPage, // 查询弹窗所需分页方法 searchPage: LocationApi.getLocationPageOnlineSettlement, // 查询弹窗所需分页方法
searchCondition: [{ searchCondition: [{
key: 'available', key: 'available',
value: 'TRUE', value: 'TRUE',
},{
key: 'supplierCode',
value: 'supplierCode',
message: '请填写供应商代码!',
isMainValue: true
},{
key: 'itemCode',
value: 'itemCode',
message: '请填写物料代码!',
isMainValue: true
}], }],
verificationParams: [{ verificationParams: [{
key: 'code', key: 'code',

Loading…
Cancel
Save