Commit c80e5a02 authored by 黄卓's avatar 黄卓

入仓修改审核

parent 7fcbd165
...@@ -163,7 +163,7 @@ export function orderWarehouseIn(data){ ...@@ -163,7 +163,7 @@ export function orderWarehouseIn(data){
}) })
} }
// 入仓 // 入仓修改
export function orderWarehouseInUpdateApply(data){ export function orderWarehouseInUpdateApply(data){
return request({ return request({
url: '/order/order-warehouse-in/update-apply', url: '/order/order-warehouse-in/update-apply',
...@@ -171,6 +171,13 @@ export function orderWarehouseInUpdateApply(data){ ...@@ -171,6 +171,13 @@ export function orderWarehouseInUpdateApply(data){
data data
}) })
} }
// 获取入仓修改审批单详情-审批使用
export function getWarehouseUpdateApprovalInfo(id) {
return request({
url: '/order/order-warehouse-in/get-update-approval-info?formId=' + id,
method: 'get'
})
}
// 入仓完成 // 入仓完成
export function orderWarehouseInFinish(data){ export function orderWarehouseInFinish(data){
......
...@@ -177,6 +177,11 @@ export default { ...@@ -177,6 +177,11 @@ export default {
processId: this.processInstance.businessKey, processId: this.processInstance.businessKey,
type: 1 type: 1
}, },
warehouse_update: {
component: "warehouseDetails",
processId: this.processInstance.businessKey,
type: 4
},
container_modify: { container_modify: {
component: "shippingDetail", component: "shippingDetail",
processId: this.processInstance.businessKey, processId: this.processInstance.businessKey,
......
...@@ -124,6 +124,12 @@ ...@@ -124,6 +124,12 @@
{{ FeeDetails.details && FeeDetails.details.reason ? FeeDetails.details.reason :''}} {{ FeeDetails.details && FeeDetails.details.reason ? FeeDetails.details.reason :''}}
</div> </div>
</div> </div>
<div v-if="type === 4">
<p>申请理由</p>
<div>
{{ FeeDetails.details || '' }}
</div>
</div>
</div> </div>
</template> </template>
...@@ -133,7 +139,13 @@ import { ...@@ -133,7 +139,13 @@ import {
warehouseApprovalGetById, warehouseApprovalGetById,
warehouseAreaPositionList warehouseAreaPositionList
} from "@/api/ecw/batchSingleApplication"; } from "@/api/ecw/batchSingleApplication";
import {applicationGetOrderByProcessId, feeApplicationGet, getOrder, getOrderPage,} from "@/api/ecw/order"; import {
applicationGetOrderByProcessId,
feeApplicationGet,
getOrder,
getOrderPage,
getWarehouseUpdateApprovalInfo
} from '@/api/ecw/order'
import { getChannelList } from '@/api/ecw/channel'; import { getChannelList } from '@/api/ecw/channel';
import Template from "@/views/cms/template"; import Template from "@/views/cms/template";
import {getSupplierPage} from "@/api/ecw/supplier"; import {getSupplierPage} from "@/api/ecw/supplier";
...@@ -221,6 +233,12 @@ export default { ...@@ -221,6 +233,12 @@ export default {
}) })
}); });
break; break;
case 4:
// 入仓修改
getWarehouseUpdateApprovalInfo(this.processInstanceID).then(r => {
this.FeeDetails.details = r.data.details
})
break
} }
} }
......
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