Commit b197dfc7 authored by zhengyi's avatar zhengyi

费用审批详情获取订单接口变动

parent f443973d
......@@ -359,6 +359,13 @@ export function feeApplicationGet(params) {
params
})
}
export function approvalFeeApplicationGet(params) {
return request({
url: "/order/fee-application/approval/get",
method: "get",
params
})
}
//获得调仓明细
export function orderWarehouseInGetAdjustInfo(params) {
......
......@@ -165,7 +165,7 @@ import {
warehouseAreaPositionList
} from "@/api/ecw/batchSingleApplication";
import {
applicationGetOrderByProcessId,
applicationGetOrderByProcessId, approvalFeeApplicationGet,
feeApplicationGet,
getOrder,
getOrderPage,
......@@ -229,7 +229,8 @@ export default {
getChannelList().then(r => this.channelList = r.data);
warehouseAreaPositionList().then(r => this.warehouseList = r.data)
if(this.type === 2){
feeApplicationGet({id:this.processId}).then(r => {
// feeApplicationGet({id:this.processId}).then(r => {
approvalFeeApplicationGet({id:this.processId}).then(r => {
if(r.code === 0){
this.processInstanceID = r.data.bpmProcessId;
this.getDetails()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment