Commit 42246d7b authored by zhengyi's avatar zhengyi

Merge branch 'dev' into test

parents 418a6372 e338592c
...@@ -1052,14 +1052,6 @@ export function getOrderItemDeleted(orderId){ ...@@ -1052,14 +1052,6 @@ 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({
......
...@@ -153,7 +153,7 @@ export default { ...@@ -153,7 +153,7 @@ export default {
<!--<el-table-column prop="prodTitleEn" :label="$t('品名')" />--> <!--<el-table-column prop="prodTitleEn" :label="$t('品名')" />-->
<el-table-column :label="$t('品牌')" width="90px"> <el-table-column :label="$t('品牌')" width="90px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<template v-if="row.brandName">{{row.brandName}}</template> <template v-if="row.checkBrandName">{{row.checkBrandName}}</template>
<dict-tag v-else :type="DICT_TYPE.ECW_IS_BRAND" :value="row.brandType" /> <dict-tag v-else :type="DICT_TYPE.ECW_IS_BRAND" :value="row.brandType" />
</template> </template>
</el-table-column> </el-table-column>
...@@ -174,11 +174,11 @@ export default { ...@@ -174,11 +174,11 @@ export default {
</el-table-column> </el-table-column>
<el-table-column prop="sumNum" :label="$t('到仓信息')" width="90px"> <el-table-column prop="sumNum" :label="$t('到仓信息')" width="90px">
<template slot-scope="{row}"> <template slot-scope="{row}">
<div v-if="row.warehouseInInfoVO"> <div v-if="row.warehouseCheckInfoVO">
{{row.warehouseInInfoVO.cartonsNum}}{{$t('')}} {{row.warehouseCheckInfoVO.cartonsNum}}{{$t('')}}
{{row.warehouseInInfoVO.weight}}Kg {{row.warehouseCheckInfoVO.weight}}Kg
{{row.warehouseInInfoVO.volume}} {{row.warehouseCheckInfoVO.volume}}
{{row.warehouseInInfoVO.quantityAll}}{{$t('')}} {{row.warehouseCheckInfoVO.quantity}}{{$t('')}}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
......
...@@ -326,7 +326,7 @@ ...@@ -326,7 +326,7 @@
</el-table> </el-table>
</el-tab-pane> </el-tab-pane>
<el-tab-pane :label="$t('到仓详情')" name="seven"> <el-tab-pane :label="$t('到仓详情')" name="seven">
<check-detail-prod :list="orderCheckInfoData" <check-detail-prod :list="order.orderItemVOList"
:attr-list="attrList" :attr-list="attrList"
:prod-type-list="prodTypeList" :prod-type-list="prodTypeList"
:currency-map="currencyMap" :currency-map="currencyMap"
...@@ -497,7 +497,6 @@ export default { ...@@ -497,7 +497,6 @@ export default {
packAfterData:null,//显示打包历史详情 packAfterData:null,//显示打包历史详情
attrList: [], attrList: [],
orderItemDeletedData:[],//退仓品名 orderItemDeletedData:[],//退仓品名
orderCheckInfoData:[],//到仓详情
prodTypeList:[],//商品类型列表 prodTypeList:[],//商品类型列表
type:1 type:1
} }
...@@ -628,14 +627,6 @@ export default { ...@@ -628,14 +627,6 @@ export default {
that.orderItemDeletedData = response.data; that.orderItemDeletedData = response.data;
}); });
}, },
getOrderCheckInfo(){
let that = this
// TODO 待提供执行查询接口
// getOrderCheckInfo(that.orderId).then(response => {
getOrderItemDeleted(that.orderId).then(response => {
that.orderCheckInfoData = response.data;
});
},
/** 获取产品类型列表 */ /** 获取产品类型列表 */
getProdTypeList() { getProdTypeList() {
getProductTypeList().then((response) => { getProductTypeList().then((response) => {
......
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