fixing totals to include service charge for x2 payments

This commit is contained in:
Omair Saleh
2019-04-19 15:08:21 +08:00
parent c7f6773359
commit 8d9c6e4072
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -316,7 +316,7 @@ export default {
BookingStatus (status, booking_id, term) {
// TODO : Get booking status from server
this.status = status
switch (Number(this.status)) {
switch (this.status) {
case 1:
this.$router.push({
name: 'booking.admin.booking.detail',
+1 -1
View File
@@ -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',