Commit 69a1879f authored by 黄奎's avatar 黄奎

报价单计算页面修改

parent 7997d729
......@@ -423,7 +423,7 @@
<td colspan="4" rowspan="2">
{{$t('objFill.xiaojijpzdsjly')}}:
<br /> {{getCostTotalMoney()}}
<br /> {{getOtherCostMoney()}}
</td>
</tr>
<tr>
......@@ -471,7 +471,7 @@
<td>
<el-form-item :label="$t('objFill.dandijcb')">
<el-input v-model="teamPrice.SingleDMCPrice" @keyup.native="checkInteger(teamPrice,'SingleDMCPrice')"
@blur="getchange()" class="w70">
@change="getchange()" class="w70">
</el-input>
</el-form-item>
</td>
......@@ -633,17 +633,17 @@
+{{(getDayXiaoJi(9,1)/subItem.PeopleNumber).toFixed(2)}}({{$t('objFill.v101.zazhizzzcyrsK')}})
</td>
<td>
{{getLocalJpyTotalMoney(subItem.PeopleNumber)}}
{{getLocalJpyMoney(subItem.PeopleNumber)}}
</td>
<td>
<template v-if="teamPrice&&teamPrice.SingleDMCPrice&&teamPrice.SingleDMCPrice>0">
{{teamPrice.SingleDMCPrice}}
</template>
<template v-else-if="postConfig.LineId==14||postConfig.LineId==118">
{{getLocalTotalMoney(subItem.PeopleNumber)}}
{{getLocalMoney(subItem.PeopleNumber)}}
</template>
<template v-else-if="postConfig.LineId==168">
{{getLocalTotalMoney(subItem.PeopleNumber)}}
{{getLocalMoney(subItem.PeopleNumber)}}
</template>
<template v-else>
{{subItem.SubtotalMoney}}
......@@ -1046,9 +1046,9 @@
return flag;
},
//其它成本价格
getCostTotalMoney() {
getOtherCostMoney() {
//机票+中段机票+火车票+税金+领队导游分摊+联运+过夜+保险
let totalMoney = this.getConvertMoney(this.otherPrice.AirTicketMoeny) +
let otherMoney = this.getConvertMoney(this.otherPrice.AirTicketMoeny) +
this.getConvertMoney(this.otherPrice.InlandAirTicketMoney) +
this.getConvertMoney(this.teamPrice.TaxPrice) +
this.getConvertMoney(this.teamPrice.UnionPrice) +
......@@ -1058,7 +1058,7 @@
this.getConvertMoney(this.otherPrice.InlandTrainTicketMoney) +
this.getConvertMoney(this.otherPrice.SafeMoney) -
this.getConvertMoney(this.otherPrice.KBMoney)
return totalMoney;
return otherMoney;
},
//获取币种对应 的人数报价
getCurrencyNumberList(CurrencyId) {
......@@ -1195,15 +1195,15 @@
});
},
//计算总价
getSubtotalMoney() {
getSubMoney() {
let that = this;
if (this.CostNumberList && this.CostNumberList.length > 0) {
this.CostNumberList.forEach(x => {
//房餐车景点价格
var trip = Number(that.getLocalTotalMoney(x.PeopleNumber));
var jpyTrip = Number(that.getLocalJpyTotalMoney(x.PeopleNumber));
var trip = Number(that.getLocalMoney(x.PeopleNumber));
var jpyTrip = Number(that.getLocalJpyMoney(x.PeopleNumber));
//其他价格
var otherPrice = Number(that.getCostTotalMoney());
var otherPrice = Number(that.getOtherCostMoney());
var jpyotherPrice = 0;
var SingleDMCPrice = 0;
if (that.teamPrice && that.teamPrice.SingleDMCPrice) {
......@@ -1222,8 +1222,8 @@
return parseFloat(value);
},
//获取地接项目(人民币)
getLocalTotalMoney(PeopleNumber) {
let totalMoney = 0.0;
getLocalMoney(PeopleNumber) {
let dijieMoney = 0.0;
if (PeopleNumber <= 0) {
PeopleNumber = 1;
}
......@@ -1232,37 +1232,37 @@
var canPrice = Number(this.getDayXiaoJi(4, 2)); //餐
var otherPrice = Number(this.getDayXiaoJi(9, 2)) / PeopleNumber; //其它费用
var busFee = Number(this.getDayXiaoJi(2, 2)) / PeopleNumber; //车费
totalMoney = busFee + hotelPrice + sencePrice + canPrice + otherPrice;
totalMoney = totalMoney.toFixed(2);
return totalMoney;
dijieMoney = busFee + hotelPrice + sencePrice + canPrice + otherPrice;
dijieMoney = dijieMoney.toFixed(2);
return dijieMoney;
},
//获取地接项目报价(日元)
getLocalJpyTotalMoney(PeopleNumber) {
getLocalJpyMoney(PeopleNumber) {
if (PeopleNumber <= 0) {
PeopleNumber = 1;
}
let totalMoney = 0.0;
let jpydijieMoney = 0.0;
var busFee = Number(this.getDayXiaoJi(2, 1)) / PeopleNumber;
var hotelPrice = Number(this.getDayXiaoJi(1, 1)); //酒店费用
var sencePrice = Number(this.getDayXiaoJi(3, 1)); //景点费用
var canPrice = Number(this.getDayXiaoJi(4, 1)); //早餐
var otherPrice = Number(this.getDayXiaoJi(9, 1)) / PeopleNumber; //其它费用
totalMoney = busFee + hotelPrice + sencePrice + canPrice + otherPrice;
return totalMoney.toFixed(2);
jpydijieMoney = busFee + hotelPrice + sencePrice + canPrice + otherPrice;
return jpydijieMoney.toFixed(2);
},
getchange(type) {
this.getSubtotalMoney();
var that = this;
var tempPrice = 0;
if (this.CostNumberList && this.CostNumberList.length > 0) {
this.CostNumberList.forEach(x => {
//房餐车景点价格
tempPrice = Number(that.getLocalTotalMoney(x.PeopleNumber));
tempPrice = Number(that.getLocalMoney(x.PeopleNumber));
});
}
if (this.teamPrice.SingleDMCPrice <= 0 || (type && type == 1)) {
this.teamPrice.SingleDMCPrice = tempPrice.toFixed(0);
}
this.getSubMoney();
},
//员工列表
getEmployeeList() {
......@@ -1299,7 +1299,7 @@
},
mounted() {
this.getHotelInit();
this.getSubtotalMoney();
this.getSubMoney();
},
created() {
this.getEmployeeList();
......
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