|
@@ -12,7 +12,7 @@
|
|
|
<div class="common-main">
|
|
|
<div style="display: flex;align-items: center;justify-content: space-between;padding-bottom: 10px;">
|
|
|
<a-alert type="info" v-if="sendBillStockOutList.length" style="margin-bottom:10px">
|
|
|
- <div slot="message">箭冠汽配西安大兴店,共 {{ sendBillStockOutList && sendBillStockOutList.length }} 个出库单,产品款数合计 <span>{{ productTotal&&productTotal.totalCategory }}</span> ,产品数量合计 <span>{{ productTotal&&productTotal.totalQty }}</span>。</div>
|
|
|
+ <div slot="message">{{ customeName||'' }},共 {{ sendBillStockOutList && sendBillStockOutList.length }} 个出库单,产品款数合计 <span>{{ productTotal&&productTotal.totalCategory }}</span> ,产品数量合计 <span>{{ productTotal&&productTotal.totalQty }}</span>。</div>
|
|
|
</a-alert>
|
|
|
<a-button size="small" v-if="type==1" @click="printOrder" type="primary">发货单打印</a-button>
|
|
|
</div>
|
|
@@ -137,7 +137,8 @@ export default {
|
|
|
{ title: '产品数量', dataIndex: 'productTotalQty', width: '10%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
{ title: '收款时间', dataIndex: 'settleTime', width: '10%', align: 'center', customRender: function (text) { return text || '--' } }
|
|
|
],
|
|
|
- sendBillSn: null
|
|
|
+ sendBillSn: null,
|
|
|
+ customeName: ''
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -155,6 +156,7 @@ export default {
|
|
|
this.type = type // 0 是物流跟踪,1是详情
|
|
|
this.modalTit = title
|
|
|
this.sendBillSn = data.sendBillSn
|
|
|
+ this.customeName = data.customeName
|
|
|
this.spinning = true
|
|
|
sendBillFindBySn({ sn: data.sendBillSn }).then(res => {
|
|
|
console.log(res)
|