geer-builder 1.2.742 → 1.2.743
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/GManualPaymentPage.vue
CHANGED
|
@@ -129,11 +129,11 @@ export default {
|
|
|
129
129
|
{
|
|
130
130
|
if(this.settings.hasOwnProperty("after_submit_pof_routes"))
|
|
131
131
|
{
|
|
132
|
-
this.$router.push({ name: this.settings.after_submit_pof_routes });
|
|
132
|
+
this.$router.push({ name: this.settings.after_submit_pof_routes, query: { 'switch_to': "to_pay"} });
|
|
133
133
|
}
|
|
134
134
|
else
|
|
135
135
|
{
|
|
136
|
-
this.$router.push({ name: "my_purchases" });
|
|
136
|
+
this.$router.push({ name: "my_purchases", query: { 'switch_to': "to_pay"} });
|
|
137
137
|
}
|
|
138
138
|
}
|
|
139
139
|
});
|
package/GMyPurchases.vue
CHANGED
|
@@ -146,7 +146,7 @@ export default {
|
|
|
146
146
|
this.$emit('closePopup', this.sale.payment_method.payment_method_id);
|
|
147
147
|
if(this.sale.payment_method.payment_method_id != "online_payment" && this.sale.payment_method.payment_method_id != "dragon_pay" )
|
|
148
148
|
{
|
|
149
|
-
swal("
|
|
149
|
+
swal("Placement Order Successful!!", `Sale No. ${this.sale_id} has been successfully processed.`, "success");
|
|
150
150
|
// this.$q.dialog({ title: "Transaction Succesful!", message: `Sale No. ${this.sale_id} has been successfully processed.` });
|
|
151
151
|
sessionStorage.removeItem('checkout_list');
|
|
152
152
|
sessionStorage.removeItem('referral_slot_code');
|
|
@@ -114,7 +114,7 @@ export default {
|
|
|
114
114
|
let sale = await this.$_fbCall('memberCompleteSale', { sale_id: this.sale_id });
|
|
115
115
|
this.$q.loading.hide();
|
|
116
116
|
this.$emit('transactionSuccess');
|
|
117
|
-
this.$q.dialog({ title: "
|
|
117
|
+
this.$q.dialog({ title: "Placement Order Successful!", message: `Sale No. ${this.sale_id} has been successfully processed.` });
|
|
118
118
|
this.is_sale_invoice_open = true;
|
|
119
119
|
|
|
120
120
|
}
|
|
@@ -135,7 +135,7 @@ export default {
|
|
|
135
135
|
{
|
|
136
136
|
let sale = await this.$_fbCall('memberCompleteSale', { sale_id: this.sale_id });
|
|
137
137
|
this.$q.loading.hide();
|
|
138
|
-
this.$q.dialog({ title: "
|
|
138
|
+
this.$q.dialog({ title: "Placement Order Successful!", message: `Sale No. ${this.sale_id} has been successfully processed.` });
|
|
139
139
|
this.$emit('closePopup');
|
|
140
140
|
|
|
141
141
|
}
|
|
@@ -157,7 +157,7 @@ export default {
|
|
|
157
157
|
{
|
|
158
158
|
let sale = await this.$_fbCall('memberCompleteSale', { sale_id: this.sale.sale_id, slot_code:this.sale.slot_reference});
|
|
159
159
|
this.$q.loading.hide();
|
|
160
|
-
this.$q.dialog({ title: "
|
|
160
|
+
this.$q.dialog({ title: "Placement Order Successful!", message: `Sale No. ${this.sale.sale_id} has been successfully processed.` });
|
|
161
161
|
this.is_sale_invoice_open = true;
|
|
162
162
|
// this.$emit('closePopup');
|
|
163
163
|
|