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,12 +690,13 @@ export default { ...@@ -690,12 +690,13 @@ export default {
}, },
//点击收款 //点击收款
getShouKuan(obj){ getShouKuan(obj){
let TCIDARR = obj.TCID ? [obj.TCID] : [];
let orderObj = { let orderObj = {
OrderID:obj.OrderID, OrderID:obj.OrderID,
OrderSource:1, OrderSource:1,
Obj: {}, Obj: {},
SourceID:null, SourceID:null,
TCIDList: [] TCIDList: TCIDARR
} }
this.$router.push({ this.$router.push({
name: 'ChoiceAddFinancialDocuments', name: 'ChoiceAddFinancialDocuments',
......
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