Commit ee1bd5f8 authored by 黄奎's avatar 黄奎
parents aea5e11e d98b2917
...@@ -180,7 +180,7 @@ ...@@ -180,7 +180,7 @@
</tr> </tr>
<tr> <tr>
<th colspan="26" class="bgwhite"> <th colspan="26" class="bgwhite">
税别计算: 单价 * (预订人数-免减人数) * (1 + 0.08 - 返佣比例 / 100) <br /> 税别计算: 单价 * (预订人数-免减人数) * (1 + 0.10 - 返佣比例 / 100) <br />
税入计算: 单价 * (预订人数-免减人数) * (1 - 返佣比例 / 100)<br /> 税入计算: 单价 * (预订人数-免减人数) * (1 - 返佣比例 / 100)<br />
司导间【月结】不计入总金额 司导间【月结】不计入总金额
</th> </th>
...@@ -298,7 +298,7 @@ ...@@ -298,7 +298,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 + 0.1 )*( 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) }}
...@@ -308,7 +308,7 @@ ...@@ -308,7 +308,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 + 0.1)*( 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)}}
...@@ -704,9 +704,12 @@ ...@@ -704,9 +704,12 @@
@click="goZhiDan(item,0,leadr,cur)" /> @click="goZhiDan(item,0,leadr,cur)" />
</el-tooltip> </el-tooltip>
</template> </template>
<template v-else-if="index2==0"> <template v-else-if="ContractUrlCount !== 0 && index2==0">
<span>未上传现付、刷卡的酒店手配书无法制单</span> <span>未上传现付、刷卡的酒店手配书无法制单</span>
</template> </template>
<template v-else-if="!item.hideZDBtn && index2==0">
<span>超过五天时间限制,无法制单</span>
</template>
</template> </template>
</div> </div>
</td> </td>
...@@ -1138,7 +1141,7 @@ ...@@ -1138,7 +1141,7 @@
var coefficient = 1; var coefficient = 1;
//税别 //税别
if (obj.TaxType == 2) { if (obj.TaxType == 2) {
coefficient = 1 + 0.08; coefficient = 1 + 0.1;
} }
if (obj.PayStyle === 1 || obj.PayStyle === 11) { if (obj.PayStyle === 1 || obj.PayStyle === 11) {
if (index == 4 && obj.DMCPayType !== 1 && obj.DMCPayType !== 11) { if (index == 4 && obj.DMCPayType !== 1 && obj.DMCPayType !== 11) {
......
...@@ -108,6 +108,7 @@ export default { ...@@ -108,6 +108,7 @@ export default {
<p style="font-size: 14px;">联系电话:${res.data.data.ContactNumber}</p> <p style="font-size: 14px;">联系电话:${res.data.data.ContactNumber}</p>
<p style="font-size: 14px;">门店名称:${res.data.data.CustomerName}</p> <p style="font-size: 14px;">门店名称:${res.data.data.CustomerName}</p>
<p style="font-size: 14px;">门店地址:${res.data.data.Address}</p> <p style="font-size: 14px;">门店地址:${res.data.data.Address}</p>
<p style="font-size: 14px;">关联销售:${res.data.data.EmName}</p>
`) `)
_this.map.openInfoWindow(infoWindow, e.point); _this.map.openInfoWindow(infoWindow, e.point);
} }
......
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