This commit is contained in:
xiaozhiyong
2023-06-07 08:51:49 +08:00
parent a18cbf1b9f
commit 4a02c0fa6d
4 changed files with 66 additions and 5 deletions

View File

@@ -56,6 +56,13 @@ const getRefineryProduct = id => {
return request.get(`oil-refinery/oilRefineryProduct/get/${id}`)
}
const get = id => {
return request.get(`/oil-refinery/xoilRefineryAccount/getByRefineryId?refineryId=${id}`)
}
//导出
const exportRefineryOrders = params => {
return request.postBlob('/oil-refinery/xoilRefineryOrder/exportRefineryOrders', params)
}
export default {
getByPage,
findDeliveryByOrderId,
@@ -70,5 +77,7 @@ export default {
orderUpdate,
getlnfoByld,
getRecordsByActld,
getRefineryProduct
getRefineryProduct,
get,
exportRefineryOrders
}