added emergency price/ checks info

This commit is contained in:
2024-09-26 08:49:14 -04:00
parent d927f71a55
commit c7907bed8d
8 changed files with 89 additions and 12 deletions

View File

@@ -211,7 +211,12 @@
<div class="" v-if="delivery.payment_type == 3">
<button class="btn btn-accent btn-sm" @click="checkoutOilUpdatePayment(3)">
Error
Check + Pay Credit Terminal
</button>
</div>
<div class="" v-if="delivery.payment_type == 4">
<button class="btn btn-accent btn-sm" @click="checkoutOilUpdatePayment(3)">
Other
</button>
</div>
</div>
@@ -499,7 +504,7 @@ export default defineComponent({
if (payment_type == 1) {
notify({
title: "Success",
text: "marked payment as credit (bank terminal)",
text: "marked payment as credit card",
type: "success",
});
}
@@ -507,14 +512,14 @@ export default defineComponent({
if (payment_type == 2) {
notify({
title: "Success",
text: "marked payment as cash (COD)",
text: "marked payment as cash (COD) and credit card partial payment",
type: "success",
});
}
if (payment_type == 3) {
notify({
title: "Success",
text: "marked payment as cash (COD)",
text: "marked payment as check with credit card hold",
type: "success",
});
}