Commit 4a09c476 authored by zs嵩's avatar zs嵩

批量费用申请

parent 4711720c
...@@ -107,6 +107,24 @@ export function feeApplicationCreate(data) { ...@@ -107,6 +107,24 @@ export function feeApplicationCreate(data) {
}) })
} }
// 批量申请费用
export function feeApplicationBatch(data) {
return request({
url: "ecw/batch-order-fee-apply/create",
method: "post",
data: data
})
}
// 批量获取需要申请费用的订单详情
export function feeApplicationBatchGetOrderListByIds(data) {
return request({
url: "ecw/batch-order-fee-apply/getOrderListByIds",
method: "get",
params: data
})
}
// 批量申请费用 // 批量申请费用
export function feeApplicationCreateBatch(data) { export function feeApplicationCreateBatch(data) {
return request({ return request({
...@@ -165,6 +183,7 @@ export function ApplicationListByOrderId(params) { ...@@ -165,6 +183,7 @@ export function ApplicationListByOrderId(params) {
params: params params: params
}) })
} }
// 批量更新特需 // 批量更新特需
export function specialNeedCreate(data) { export function specialNeedCreate(data) {
return request({ return request({
...@@ -932,7 +951,6 @@ export function noNeedPacks(data) { ...@@ -932,7 +951,6 @@ export function noNeedPacks(data) {
}) })
} }
// 完成打包 // 完成打包
export function finishPacked(data) { export function finishPacked(data) {
return request({ return request({
......
...@@ -589,7 +589,6 @@ ...@@ -589,7 +589,6 @@
<withdrawal v-if="show" :dialog-visible="show" :orderId="orderId"></withdrawal> <withdrawal v-if="show" :dialog-visible="show" :orderId="orderId"></withdrawal>
<batch-single-application @getList="getList" :order-list="orderId" :dialog-visible.sync="warehouseBol"></batch-single-application> <batch-single-application @getList="getList" :order-list="orderId" :dialog-visible.sync="warehouseBol"></batch-single-application>
<fee-application v-if="feeApplicationBol" :order-id="orderId" :currencys="JSON.stringify(currencyList)" :dialog-visible.sync="feeApplicationBol" @refresh="getList"></fee-application> <fee-application v-if="feeApplicationBol" :order-id="orderId" :currencys="JSON.stringify(currencyList)" :dialog-visible.sync="feeApplicationBol" @refresh="getList"></fee-application>
<feeApplicationBatch v-if="feeApplicationBatch" :order-list="multipleSelection" :currencys="JSON.stringify(currencyList)" :dialog-visible.sync="feeApplicationBatch" @refresh="getList" />
<merge-log :order-no="showMergedLogOrderNo" v-if="showMergedLogOrderNo !== null" @close="showMergedLogOrderNo = null" /> <merge-log :order-no="showMergedLogOrderNo" v-if="showMergedLogOrderNo !== null" @close="showMergedLogOrderNo = null" />
<pickup-log v-if="showPickupLogOrderNo" :order-no="showPickupLogOrderNo" @close="showPickupLogOrderNo = null" @delete="getList" /> <pickup-log v-if="showPickupLogOrderNo" :order-no="showPickupLogOrderNo" @close="showPickupLogOrderNo = null" @delete="getList" />
<SplitRevoke <SplitRevoke
...@@ -622,7 +621,6 @@ import withdrawal from "@/views/ecw/order/withdrawal" ...@@ -622,7 +621,6 @@ import withdrawal from "@/views/ecw/order/withdrawal"
import UserSelector from "@/components/UserSelector" import UserSelector from "@/components/UserSelector"
import BatchSingleApplication from "@/views/ecw/order/batchSingleApplication" import BatchSingleApplication from "@/views/ecw/order/batchSingleApplication"
import FeeApplication from "@/views/ecw/order/feeApplication" import FeeApplication from "@/views/ecw/order/feeApplication"
import feeApplicationBatch from "@/views/ecw/order/feeApplicationBatch"
import MergeLog from "@/views/ecw/order/components/MergeLog" import MergeLog from "@/views/ecw/order/components/MergeLog"
import PickupLog from "./components/PickupLog" import PickupLog from "./components/PickupLog"
import { getWarehouseList } from "@/api/ecw/warehouse" import { getWarehouseList } from "@/api/ecw/warehouse"
...@@ -639,7 +637,6 @@ export default { ...@@ -639,7 +637,6 @@ export default {
Template, Template,
UserSelector, UserSelector,
FeeApplication, FeeApplication,
feeApplicationBatch,
BatchSingleApplication, BatchSingleApplication,
MergeLog, MergeLog,
PickupLog, PickupLog,
...@@ -754,8 +751,7 @@ export default { ...@@ -754,8 +751,7 @@ export default {
key: "eqPickRatio", key: "eqPickRatio",
value: "" value: ""
}, },
autoHeight: null, autoHeight: null
feeApplicationBatch: false
} }
}, },
watch: { watch: {
...@@ -1447,7 +1443,7 @@ export default { ...@@ -1447,7 +1443,7 @@ export default {
this.$message(this.$t("请先勾选订单")) this.$message(this.$t("请先勾选订单"))
return return
} }
this.feeApplicationBatch = true this.$router.push(`/order/feeApplicationBatch?orderIds=${this.ids.join(",")}`)
} }
} }
} }
......
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