Commit 10ef8723 authored by 沈良进's avatar 沈良进
parents c92a4733 d0b9bb88
......@@ -787,7 +787,7 @@
item.redEnvelopeMoney
}}</span>
</td>
<td>{{ item.preferTipAmount }}</td>
<td style="color: #ff9c00">{{ item.preferTipAmount }}</td>
<td v-if="item.tipMoney">{{ item.tipMoney }}</td>
<td v-else>0.00</td>
......@@ -826,7 +826,7 @@
</tr>
<tr style="height: 20px">
<td
:colspan="isEditOrderCreate == 1 ? 17 : 16"
:colspan="isEditOrderCreate == 1 ? 18 : 17"
class="RL_Order"
style="height: 20px"
>
......@@ -966,7 +966,7 @@
</div>
</td>
<td
colspan="5"
colspan="6"
class="groupTourOrder_tickets"
style="height: 40px; cursor: pointer"
>
......
......@@ -340,6 +340,12 @@
<i style="background-color: #ff0000"></i>
<span>{{ $t("fnc.yhcnyshenhe") }}</span>
</span>
<span>应收小费:
{{countData.PreferTipAmount}}
</span>
<span>实收小费:
{{countData.CompensationMoney}}
</span>
<span class="groupTourOrderByTuan_ico">
<i style="background-color: #000000"></i>
<span>{{ $t("fnc.ytongguo") }}</span>
......@@ -370,10 +376,11 @@
<th width="80">{{ $t("fnc.yszonge") }}</th>
<th width="80">{{ $t("fnc.shishou") }}</th>
<th width="80">人头小费</th>
<th width="70">{{ $t("fnc.youhui") }}</th>
<th width="80">{{ $t("salesModule.HappinessPassbook") }}</th>
<th width="70">{{ $t("fnc.xiaofei") }}</th>
<th width="80">应收小费</th>
<th width="70">实收{{ $t("fnc.xiaofei") }}</th>
<th width="70">{{ $t("fnc.tuikuan") }}</th>
<th width="70">{{ $t("fnc.ptshuijin") }}</th>
<th width="80">{{ $t("Operation.Op_platZaitu") }}</th>
......@@ -569,7 +576,7 @@
item.income
}}</span>
</td>
<td style="color: #ff9c00">{{ item.preferTipAmount?item.preferTipAmount:'0.00' }}</td>
<!-- 优惠 -->
<td>
<el-popover style="padding: 0" width="600" trigger="click">
......@@ -691,6 +698,7 @@
>{{ item.redEnvelopeMoney }}</span
>
</td>
<td style="color: #ff9c00">{{ item.preferTipAmount?item.preferTipAmount:'0.00' }}</td>
<td v-if="item.tipMoney">{{ item.tipMoney }}</td>
<td v-else>0.00</td>
<td>{{ item.refund }}</td>
......
......@@ -233,6 +233,7 @@
</li>
<li>
<input type="button" class="normalBtn" :value="$t('pub.searchBtn')" @click.stop="msg.pageIndex=1,currentPage=1,GetList()" />
<input type="button" class="hollowFixedBtn" value="导出" @click="exportExcel">
</li>
</ul>
</div>
......@@ -408,6 +409,13 @@
}
},
methods: {
exportExcel() { //导出
let msg = JSON.parse(JSON.stringify(this.msg))
let userInfo = this.getLocalStorage();
msg.uid = userInfo.EmployeeId
var fileName = "订单统计表.xls";
this.GetLocalFile("GuestOrder_post_GetDownLodGuestOrderStatisticsList", msg, fileName);
},
GetOrderTypeEnumList() {
this.apipost("CarSingle_post_GetOrderTypeEnumList", {}, (res) => {
if (res.data.resultCode == 1) {
......
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