修改桌台bug

This commit is contained in:
duan
2024-12-24 16:16:45 +08:00
parent 8df341ff9e
commit 1d6ef74781
4 changed files with 41 additions and 37 deletions

View File

@@ -4,7 +4,7 @@
<text class="">桌号</text>
<text class="">{{orderInfo.tableName||""}}</text>
</view>
<view class=" font-bold u-p-b-32 border-bottom u-m-b-24" v-if="orderInfo.tableName">
<view class=" font-bold u-p-b-32 border-bottom u-m-b-24" v-if="orderInfo.tableName&&orderInfo.status=='unpaid'">
<view class="block" @tap="rotatingTables"
style="display: flex;align-items: center;justify-content: space-between;">
<view>转桌/并桌</view>
@@ -397,7 +397,7 @@
})
function returnCanTuiMoney(item) {
return props.orderInfo.status == 'unpaid' ? item.priceAmount : item.canReturnAmount
return props.orderInfo.status == 'unpaid' ? item.priceAmount : item.priceAmount
if (props.orderInfo.status == 'unpaid') {
return returnTotalMoney(item)
} else {
@@ -427,7 +427,7 @@
if (res) {
emits('tuikuan', {
...item,
priceAmount: item.canReturnAmount
priceAmount: item.priceAmount
}, index)
}
})
@@ -541,7 +541,8 @@
const goodsPrice = props.data.reduce((prve, cur) => {
const curTotal = cur.info.reduce((a,
b) => {
return a + (b.status == 'unpaid' ? b.priceAmount : b.status == 'return' ? 0 : b.canReturnAmount * 1)
return a + (b.status == 'unpaid' ? b.priceAmount : b.status == 'return' ? 0 : b
.priceAmount * 1)
}, 0)
return prve + curTotal
}, 0)