mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 04:24:08 +00:00
fixing totals to include service charge for x2 payments
This commit is contained in:
@@ -316,7 +316,7 @@ export default {
|
||||
BookingStatus (status, booking_id, term) {
|
||||
// TODO : Get booking status from server
|
||||
this.status = status
|
||||
switch (Number(status)) {
|
||||
switch (this.status) {
|
||||
case 1:
|
||||
this.$router.push({
|
||||
name: 'booking.admin.booking.detail',
|
||||
|
||||
@@ -784,7 +784,7 @@ export default {
|
||||
BookingStatus (status, booking_id, term) {
|
||||
// TODO : Get booking status from server
|
||||
// this.status = status;
|
||||
switch (Number(status)) {
|
||||
switch (status) {
|
||||
case 1:
|
||||
this.$router.push({
|
||||
name: 'booking.user.upload',
|
||||
|
||||
Reference in New Issue
Block a user