Commit 5d010348 authored by 1483922988@qq.com's avatar 1483922988@qq.com
parents d176ce48 6a4365e9
...@@ -1052,6 +1052,14 @@ export function getOrderItemDeleted(orderId){ ...@@ -1052,6 +1052,14 @@ export function getOrderItemDeleted(orderId){
}) })
} }
//退仓品名列表
export function getOrderCheckInfo(orderId){
return request({
url: '/ecw/order/order-check-info/' + orderId,
method: 'get',
})
}
// 打包页面订单数据统计 // 打包页面订单数据统计
export function getPackStatistics(orderId){ export function getPackStatistics(orderId){
return request({ return request({
......
...@@ -171,6 +171,7 @@ export const DICT_TYPE = { ...@@ -171,6 +171,7 @@ export const DICT_TYPE = {
// order // order
ORDER_TYPE: "order_type", // 订单类型 ORDER_TYPE: "order_type", // 订单类型
PRODUCT_RECORD_ATTRIBUTE: "product_record_attribute", //产品备案属性 PRODUCT_RECORD_ATTRIBUTE: "product_record_attribute", //产品备案属性
PROD_QUERY_TITLE_ZH_FIELD: 'prod_query_title_zh_field', // 商品列表商品中文名称查询类型
CONTROL_GOODS_STATUS: "control_goods_status", //控货状态 CONTROL_GOODS_STATUS: "control_goods_status", //控货状态
DISBURSEMENT_TYPE: "disbursement_type", //垫付类型 DISBURSEMENT_TYPE: "disbursement_type", //垫付类型
DRAWEE: "drawee", // 付款人 DRAWEE: "drawee", // 付款人
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -707,7 +707,7 @@ import Template from '@/views/cms/template/index.vue' ...@@ -707,7 +707,7 @@ import Template from '@/views/cms/template/index.vue'
let makeDefaultFormData = () => { let makeDefaultFormData = () => {
return { return {
destCountryId: null, destCountryId: null,
lienId: null, lineId: null,
objectiveId: null, objectiveId: null,
departureId: null, departureId: null,
status:0, status:0,
......
...@@ -289,7 +289,9 @@ ...@@ -289,7 +289,9 @@
<el-table-column :label="$t('发货人客服')" align="center" prop="consignorFollowCustomerService" /> <el-table-column :label="$t('发货人客服')" align="center" prop="consignorFollowCustomerService" />
<el-table-column :label="$t('收货人客服')" align="center" prop="consigneeFollowCustomerService" /> <el-table-column :label="$t('收货人客服')" align="center" prop="consigneeFollowCustomerService" />
<el-table-column :label="$t('到仓箱数/方数重量')" align="center" prop="status"> <el-table-column :label="$t('到仓箱数/方数重量')" align="center" prop="status">
<template slot-scope="scope"> 暂无数据 </template> <template slot-scope="{ row }">
{{ row.checkNum }}{{ $t("") }} / {{ row.checkVolume }}m³ /{{ row.checkWeight }}Kg
</template>
</el-table-column> </el-table-column>
<el-table-column :label="$t('提货率')" align="center" prop="pickRatio" /> <el-table-column :label="$t('提货率')" align="center" prop="pickRatio" />
<el-table-column :label="$t('动态')" align="center" prop="statusMsg" /> <el-table-column :label="$t('动态')" align="center" prop="statusMsg" />
...@@ -1000,6 +1002,7 @@ export default { ...@@ -1000,6 +1002,7 @@ export default {
if (type.indexOf("2") > -1) { if (type.indexOf("2") > -1) {
arr.push(this.$t("海外仓")) arr.push(this.$t("海外仓"))
} }
return arr.join(",")
} }
} }
}, },
......
This diff is collapsed.
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