Commit 59e1f24b authored by 华国豪's avatar 华国豪 🙄

酒店关联团

parent 2767a96d
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
</p> </p>
</td> </td>
<td style="white-space:nowrap; "> <td style="white-space:nowrap; ">
{{subItem.PayStyle === 1 ? moneyFormat(childItem.UnitPrice*(childItem.BookNum-childItem.HotelDiscount)) : 0}} {{subItem.PayStyle === 1 && subItem.DMCPayType !== 9 ? moneyFormat(childItem.UnitPrice*(childItem.BookNum-childItem.HotelDiscount)) : 0}}
</td> </td>
<td v-if="childIndex==0" :rowspan="6"> <td v-if="childIndex==0" :rowspan="6">
<template v-if="subItem.RebateType==1"> <template v-if="subItem.RebateType==1">
......
...@@ -562,8 +562,8 @@ export default { ...@@ -562,8 +562,8 @@ export default {
} }
}, },
queren(type, OrderID){ queren(type, OrderID){
let text = type == 1 ? '确认' : '取消' let text = type == 1 ? '确认后,订单不会自动取消' : '取消后,订单会自动取消'
this.$confirm('确定“'+ text +'”订单?', this.$t('tips.tips'), { this.$confirm(text, this.$t('tips.tips'), {
confirmButtonText: this.$t('pub.sureBtn'), confirmButtonText: this.$t('pub.sureBtn'),
cancelButtonText: this.$t('pub.cancelBtn'), cancelButtonText: this.$t('pub.cancelBtn'),
type: 'warning' type: 'warning'
...@@ -690,25 +690,26 @@ export default { ...@@ -690,25 +690,26 @@ export default {
}, },
//点击收款 //点击收款
getShouKuan(obj){ getShouKuan(obj){
let orderObj = { let TCIDARR = obj.TCID ? [obj.TCID] : [];
OrderID:obj.OrderID, let orderObj = {
OrderSource:1, OrderID:obj.OrderID,
Obj: {}, OrderSource:1,
SourceID:null, Obj: {},
TCIDList: [] SourceID:null,
TCIDList: TCIDARR
}
this.$router.push({
name: 'ChoiceAddFinancialDocuments',
query:{
"Type":1,
"companyID":obj.RB_Branch_id,
"path": "",
'blank':'y',
'orderObj':JSON.stringify(orderObj),
'tradeWay':1,
'platformAccount':0
} }
this.$router.push({ });
name: 'ChoiceAddFinancialDocuments',
query:{
"Type":1,
"companyID":obj.RB_Branch_id,
"path": "",
'blank':'y',
'orderObj':JSON.stringify(orderObj),
'tradeWay':1,
'platformAccount':0
}
});
} }
}, },
mounted() { mounted() {
......
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