|
@ -44,37 +44,3 @@ export const submitSettlementReport = async (data) => { |
|
|
return await request.post({ url: `/wms/onlinesettlement-info/settlementInfoSubmit`, data }) |
|
|
return await request.post({ url: `/wms/onlinesettlement-info/settlementInfoSubmit`, data }) |
|
|
// }
|
|
|
// }
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// // 查询上线结算配置详情
|
|
|
|
|
|
// export const getSettlementConfiguration = async (id: number) => {
|
|
|
|
|
|
// return await request.get({ url: `/wms/settlement-configuration/get?id=` + id })
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// export const editSettlementConfiguration = async (id: number) => {
|
|
|
|
|
|
// return await request.get({ url: `/wms/settlement-configuration/editView?id=` + id })
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // 新增上线结算配置
|
|
|
|
|
|
// export const createSettlementConfiguration = async (data: SettlementConfigurationVO) => {
|
|
|
|
|
|
// return await request.post({ url: `/wms/settlement-configuration/create`, data })
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // 修改上线结算配置
|
|
|
|
|
|
// export const updateSettlementConfiguration = async (data: SettlementConfigurationVO) => {
|
|
|
|
|
|
// return await request.put({ url: `/wms/settlement-configuration/update`, data })
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // 删除上线结算配置
|
|
|
|
|
|
// export const deleteSettlementConfiguration = async (id: number) => {
|
|
|
|
|
|
// return await request.delete({ url: `/wms/settlement-configuration/delete?id=` + id })
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // 导出上线结算配置 Excel
|
|
|
|
|
|
// export const exportSettlementConfiguration = async (params) => {
|
|
|
|
|
|
// return await request.download({ url: `/wms/settlement-configuration/export-excel`, params })
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// // 下载用户导入模板
|
|
|
|
|
|
// export const importTemplate = () => {
|
|
|
|
|
|
// return request.download({ url: '/wms/settlement-configuration/get-import-template' })
|
|
|
|
|
|
// }
|
|
|
|