Commit bf3fd401 authored by 华国豪's avatar 华国豪 🙄
parents daecaf21 ee1bd5f8
...@@ -275,7 +275,7 @@ ...@@ -275,7 +275,7 @@
<template v-if="subItem.RebateType==1"> <template v-if="subItem.RebateType==1">
<!--税别--> <!--税别-->
<template v-if="subItem.TaxType==2"> <template v-if="subItem.TaxType==2">
{{ (childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1 + 0.08 )*( childItem.RebateRatio / 100)).toFixed(2)}} {{ (childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1 + XiaoFeiTaxFee )*( childItem.RebateRatio / 100)).toFixed(2)}}
</template> </template>
<template v-else> <template v-else>
{{(childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1)*( childItem.RebateRatio / 100)).toFixed(2) }} {{(childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1)*( childItem.RebateRatio / 100)).toFixed(2) }}
...@@ -285,7 +285,7 @@ ...@@ -285,7 +285,7 @@
<template v-else> <template v-else>
<!--税别--> <!--税别-->
<template v-if="subItem.TaxType==2"> <template v-if="subItem.TaxType==2">
{{(childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1 + 0.08)*( childItem.RebateRatio / 100)).toFixed(2)}} {{(childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1 + XiaoFeiTaxFee)*( childItem.RebateRatio / 100)).toFixed(2)}}
</template> </template>
<template v-else> <template v-else>
{{(childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1)*( childItem.RebateRatio / 100)).toFixed(2)}} {{(childItem.UnitPrice * (childItem.BookNum - childItem.HotelDiscount) * (1)*( childItem.RebateRatio / 100)).toFixed(2)}}
...@@ -556,6 +556,7 @@ ...@@ -556,6 +556,7 @@
allCurrencyList: [], //币种列表 allCurrencyList: [], //币种列表
checkedIndex: '', checkedIndex: '',
checkedsubIndex: '', checkedsubIndex: '',
XiaoFeiTaxFee:0.1
} }
}, },
components: { components: {
...@@ -825,7 +826,7 @@ ...@@ -825,7 +826,7 @@
var coefficient = 1; var coefficient = 1;
//税别 //税别
if (obj.TaxType == 2) { if (obj.TaxType == 2) {
coefficient = 1 + 0.1; coefficient = 1 + this.XiaoFeiTaxFee;
} }
if (index == 4 && obj.DMCPayType == 9) { if (index == 4 && obj.DMCPayType == 9) {
tempPrice = 0; tempPrice = 0;
......
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