Commit d0b9bb88 authored by youjie's avatar youjie

no message

parent a601f109
...@@ -787,7 +787,7 @@ ...@@ -787,7 +787,7 @@
item.redEnvelopeMoney item.redEnvelopeMoney
}}</span> }}</span>
</td> </td>
<td>{{ item.preferTipAmount }}</td> <td style="color: #ff9c00">{{ item.preferTipAmount }}</td>
<td v-if="item.tipMoney">{{ item.tipMoney }}</td> <td v-if="item.tipMoney">{{ item.tipMoney }}</td>
<td v-else>0.00</td> <td v-else>0.00</td>
...@@ -826,7 +826,7 @@ ...@@ -826,7 +826,7 @@
</tr> </tr>
<tr style="height: 20px"> <tr style="height: 20px">
<td <td
:colspan="isEditOrderCreate == 1 ? 17 : 16" :colspan="isEditOrderCreate == 1 ? 18 : 17"
class="RL_Order" class="RL_Order"
style="height: 20px" style="height: 20px"
> >
...@@ -966,7 +966,7 @@ ...@@ -966,7 +966,7 @@
</div> </div>
</td> </td>
<td <td
colspan="5" colspan="6"
class="groupTourOrder_tickets" class="groupTourOrder_tickets"
style="height: 40px; cursor: pointer" style="height: 40px; cursor: pointer"
> >
......
...@@ -340,6 +340,12 @@ ...@@ -340,6 +340,12 @@
<i style="background-color: #ff0000"></i> <i style="background-color: #ff0000"></i>
<span>{{ $t("fnc.yhcnyshenhe") }}</span> <span>{{ $t("fnc.yhcnyshenhe") }}</span>
</span> </span>
<span>应收小费:
{{countData.PreferTipAmount}}
</span>
<span>实收小费:
{{countData.CompensationMoney}}
</span>
<span class="groupTourOrderByTuan_ico"> <span class="groupTourOrderByTuan_ico">
<i style="background-color: #000000"></i> <i style="background-color: #000000"></i>
<span>{{ $t("fnc.ytongguo") }}</span> <span>{{ $t("fnc.ytongguo") }}</span>
...@@ -370,10 +376,11 @@ ...@@ -370,10 +376,11 @@
<th width="80">{{ $t("fnc.yszonge") }}</th> <th width="80">{{ $t("fnc.yszonge") }}</th>
<th width="80">{{ $t("fnc.shishou") }}</th> <th width="80">{{ $t("fnc.shishou") }}</th>
<th width="80">人头小费</th>
<th width="70">{{ $t("fnc.youhui") }}</th> <th width="70">{{ $t("fnc.youhui") }}</th>
<th width="80">{{ $t("salesModule.HappinessPassbook") }}</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.tuikuan") }}</th>
<th width="70">{{ $t("fnc.ptshuijin") }}</th> <th width="70">{{ $t("fnc.ptshuijin") }}</th>
<th width="80">{{ $t("Operation.Op_platZaitu") }}</th> <th width="80">{{ $t("Operation.Op_platZaitu") }}</th>
...@@ -569,7 +576,7 @@ ...@@ -569,7 +576,7 @@
item.income item.income
}}</span> }}</span>
</td> </td>
<td style="color: #ff9c00">{{ item.preferTipAmount?item.preferTipAmount:'0.00' }}</td>
<!-- 优惠 --> <!-- 优惠 -->
<td> <td>
<el-popover style="padding: 0" width="600" trigger="click"> <el-popover style="padding: 0" width="600" trigger="click">
...@@ -691,6 +698,7 @@ ...@@ -691,6 +698,7 @@
>{{ item.redEnvelopeMoney }}</span >{{ item.redEnvelopeMoney }}</span
> >
</td> </td>
<td style="color: #ff9c00">{{ item.preferTipAmount?item.preferTipAmount:'0.00' }}</td>
<td v-if="item.tipMoney">{{ item.tipMoney }}</td> <td v-if="item.tipMoney">{{ item.tipMoney }}</td>
<td v-else>0.00</td> <td v-else>0.00</td>
<td>{{ item.refund }}</td> <td>{{ item.refund }}</td>
......
...@@ -233,6 +233,7 @@ ...@@ -233,6 +233,7 @@
</li> </li>
<li> <li>
<input type="button" class="normalBtn" :value="$t('pub.searchBtn')" @click.stop="msg.pageIndex=1,currentPage=1,GetList()" /> <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> </li>
</ul> </ul>
</div> </div>
...@@ -408,6 +409,13 @@ ...@@ -408,6 +409,13 @@
} }
}, },
methods: { 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() { GetOrderTypeEnumList() {
this.apipost("CarSingle_post_GetOrderTypeEnumList", {}, (res) => { this.apipost("CarSingle_post_GetOrderTypeEnumList", {}, (res) => {
if (res.data.resultCode == 1) { 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