geer-builder 1.2.612 → 1.2.613
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/GCheckout.vue
CHANGED
|
@@ -2011,6 +2011,7 @@ export default {
|
|
|
2011
2011
|
{
|
|
2012
2012
|
this.dragon_pay_choice = this.public_settings.dragonpay_details ? this.public_settings.dragonpay_details.mode : 1;
|
|
2013
2013
|
}
|
|
2014
|
+
console.log(this.dragon_pay_choice, 'dragon_pay_choice');
|
|
2014
2015
|
if(!this.dragon_pay_choice)
|
|
2015
2016
|
{
|
|
2016
2017
|
this.$q.dialog({ html: true, title: `Something's not quite right`, message: "Invalid Dragon payment Method" });
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
<input type="hidden" name="email" :value="email">
|
|
41
41
|
<input type="hidden" name="digest" :value="digest_string.toString('hex')">
|
|
42
42
|
<input v-if="public_settings.dragonpay_details.show_active_payment" type="hidden" name="procid" :value="proc_id.procId">
|
|
43
|
-
<input v-if="!public_settings.dragonpay_details.show_active_payment" type="hidden" name="mode" :value="public_settings.dragonpay_details.mode ? public_settings.dragonpay_details.mode : proc_id">
|
|
43
|
+
<input v-if="!public_settings.dragonpay_details.show_active_payment && public_settings.dragonpay_details.mode != 'show_all'" type="hidden" name="mode" :value="public_settings.dragonpay_details.mode ? public_settings.dragonpay_details.mode : proc_id">
|
|
44
44
|
<!-- <input type="hidden" name="mode" :value="mode"> -->
|
|
45
45
|
<!-- <input type="hidden" name="ResponseURL" :value="ipay88_response_url"> -->
|
|
46
46
|
<input type="hidden" name="param1" :value="dragonpay_backend">
|