Commit b197dfc7 authored by zhengyi's avatar zhengyi

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

parent f443973d
...@@ -359,6 +359,13 @@ export function feeApplicationGet(params) { ...@@ -359,6 +359,13 @@ export function feeApplicationGet(params) {
params params
}) })
} }
export function approvalFeeApplicationGet(params) {
return request({
url: "/order/fee-application/approval/get",
method: "get",
params
})
}
//获得调仓明细 //获得调仓明细
export function orderWarehouseInGetAdjustInfo(params) { export function orderWarehouseInGetAdjustInfo(params) {
......
...@@ -165,7 +165,7 @@ import { ...@@ -165,7 +165,7 @@ import {
warehouseAreaPositionList warehouseAreaPositionList
} from "@/api/ecw/batchSingleApplication"; } from "@/api/ecw/batchSingleApplication";
import { import {
applicationGetOrderByProcessId, applicationGetOrderByProcessId, approvalFeeApplicationGet,
feeApplicationGet, feeApplicationGet,
getOrder, getOrder,
getOrderPage, getOrderPage,
...@@ -229,7 +229,8 @@ export default { ...@@ -229,7 +229,8 @@ export default {
getChannelList().then(r => this.channelList = r.data); getChannelList().then(r => this.channelList = r.data);
warehouseAreaPositionList().then(r => this.warehouseList = r.data) warehouseAreaPositionList().then(r => this.warehouseList = r.data)
if(this.type === 2){ 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){ if(r.code === 0){
this.processInstanceID = r.data.bpmProcessId; this.processInstanceID = r.data.bpmProcessId;
this.getDetails() 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