|
@@ -9,8 +9,8 @@
|
|
|
</a-tabs>
|
|
</a-tabs>
|
|
|
<div style="display: flex; height: calc(100vh - 350px)">
|
|
<div style="display: flex; height: calc(100vh - 350px)">
|
|
|
<a-card style="width: 25%">
|
|
<a-card style="width: 25%">
|
|
|
- <p v-if="selectRoomOrder && selectRoomOrder.id">
|
|
|
|
|
- 房间:{{ selectRoomOrder.tableNo }},姓名:{{ selectRoomOrder.id }}
|
|
|
|
|
|
|
+ <p v-if="selectRoomOrder && selectRoomOrder.roomName">
|
|
|
|
|
+ 房间:{{ selectRoomOrder.roomName }},姓名:{{ selectRoomOrder.customerName }}
|
|
|
</p>
|
|
</p>
|
|
|
<a-table
|
|
<a-table
|
|
|
bordered
|
|
bordered
|
|
@@ -47,7 +47,7 @@
|
|
|
<a-button v-if="!btnDisabled" @click="handleAdd">挂单</a-button>
|
|
<a-button v-if="!btnDisabled" @click="handleAdd">挂单</a-button>
|
|
|
<a-button v-else @click="handlePickingGoodsOrder">取单</a-button>
|
|
<a-button v-else @click="handlePickingGoodsOrder">取单</a-button>
|
|
|
<a-button
|
|
<a-button
|
|
|
- v-if="selectRoomOrder && selectRoomOrder.id && !btnDisabled"
|
|
|
|
|
|
|
+ v-if="selectRoomOrder && selectRoomOrder.roomName && !btnDisabled"
|
|
|
@click="handleToRoomFeePayment"
|
|
@click="handleToRoomFeePayment"
|
|
|
>确定挂房帐</a-button
|
|
>确定挂房帐</a-button
|
|
|
>
|
|
>
|
|
@@ -367,7 +367,7 @@ export default {
|
|
|
model.hotelId = _info.id;
|
|
model.hotelId = _info.id;
|
|
|
}
|
|
}
|
|
|
model.id = this.selectOrderInfo.id;
|
|
model.id = this.selectOrderInfo.id;
|
|
|
- model.toRoomFeeOrderId = this.selectRoomOrder.id;
|
|
|
|
|
|
|
+ model.toRoomFeeOrderId = this.selectRoomOrder.livingOrderId;
|
|
|
model.posType = this.tabPosTypeId;
|
|
model.posType = this.tabPosTypeId;
|
|
|
var posOrderGoodsDetailList = [];
|
|
var posOrderGoodsDetailList = [];
|
|
|
this.selectGoodsList.forEach((t) => {
|
|
this.selectGoodsList.forEach((t) => {
|