Commit 2a553130 authored by 华国豪's avatar 华国豪 🙄

1

parent 46ceaa71
......@@ -2811,7 +2811,7 @@
Unit_PriceList: [], //成交单价下拉数据
LessMoney: 0,
addMsg: {
GroupTypeNeedHouse: '1',
GroupTypeNeedHouse: '0',
OrderForm: '',
OrderId: "0",
TCID: "0",
......@@ -5124,10 +5124,11 @@
this.addMsg.Unit_Price = this.addObj.B2CPrice;
}
this.addMsg.GroupTypeNeedHouse = '1'
this.addMsg.CustomerId = '0'
this.addMsg.CommissionShareMoney = '0'
}
this.addMsg.GroupTypeNeedHouse = '0'
},
getTypePrice2() {
......
......@@ -2960,7 +2960,7 @@
Unit_PriceList: [], //成交单价下拉数据
LessMoney: 0,
addMsg: {
GroupTypeNeedHouse: '1',
GroupTypeNeedHouse: '0',
OrderId: "0",
TCID: "0",
CustomerType: "",
......
......@@ -468,18 +468,10 @@ input[type="number"] {
<th>实付金额</th>
<th width="40">操作</th>
</tr>
<tr v-show="totalList.SelfPayingExpendTotalPrice>0">
<td>自费支出</td>
<tr v-if="list.otherList.length > 0" v-for="item in list.otherList">
<td>{{getOrderType(item.OrderType)}}</td>
<td>0</td>
<td>{{moneyFormat(totalList.SelfPayingExpendTotalPrice)}}</td>
<td>
<!-- <span class="cursorpointer text-decoratio" @click="godetailAll('zifeizhiZ')">明细</span> -->
</td>
</tr>
<tr v-show="totalList.SelfPayingIncomeTotalPrice>0">
<td>自费收入</td>
<td>0</td>
<td>{{moneyFormat(totalList.SelfPayingIncomeTotalPrice)}}</td>
<td>{{moneyFormat(item.TotalPrice)}}</td>
<td>
<!-- <span class="cursorpointer text-decoratio" @click="godetailAll('zifeizhiS')">明细</span> -->
</td>
......@@ -992,6 +984,14 @@ export default {
};
},
methods: {
getOrderType(type){
// 1-其他订单,2-小费收入,3-团费小计,4-自费收入,5-自费支出
if (type == 1) return '其他订单'
else if (type == 2) return '小费收入'
else if (type == 3) return '团费小计'
else if (type == 4) return '自费收入'
else if (type == 5) return '自费支出'
},
getzhuijiaList(){
this.apipost(
'Financial_post_GetTravelFinanceReplenishList', {
......
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