diff --git a/bin/frontend/controls/SimpleCheckout.js b/bin/frontend/controls/SimpleCheckout.js index c6e00b9b486f1955c2bee63ae2d015ff81cb5816..bcd08e6dbdb91c0aa83da0da73b6834f766b12b6 100644 --- a/bin/frontend/controls/SimpleCheckout.js +++ b/bin/frontend/controls/SimpleCheckout.js @@ -170,12 +170,24 @@ define('package/quiqqer/order-simple-checkout/bin/frontend/controls/SimpleChecko return this.$loadGUI(); }).then(() => { + if (this.getElm().getElement('.quiqqer-order-step-processing')) { + // processing step + if (this.getElm().getElement('.quiqqer-simple-checkout-orderDetails')) { + this.getElm().getElement('.quiqqer-simple-checkout-orderDetails').setStyle('display', 'none'); + } + + if (this.getElm().getElement('.quiqqer-simple-checkout__scrollToPaymentContainer')) { + this.getElm().getElement('.quiqqer-simple-checkout__scrollToPaymentContainer').setStyle('display', 'none'); + } + } + this.$parseTermsAndConditions(); this.Loader.hide(); moofx([ this.getElm().getElements('form'), - this.getElm().getElements('.quiqqer-simple-checkout-orderDetails') + this.getElm().getElements('.quiqqer-simple-checkout-orderDetails'), + this.getElm().getElements('.quiqqer-simple-checkout__scrollToPaymentContainer'), ]).animate({ opacity: 1 }); @@ -534,6 +546,14 @@ define('package/quiqqer/order-simple-checkout/bin/frontend/controls/SimpleChecko this.getElm().getElement('form').set('data-products-count', result.productCount); } + if (this.getElm().getElement('.quiqqer-simple-checkout-orderDetails')) { + this.getElm().getElement('.quiqqer-simple-checkout-orderDetails').setStyle('display', 'none'); + } + + if (this.getElm().getElement('.quiqqer-simple-checkout__scrollToPaymentContainer')) { + this.getElm().getElement('.quiqqer-simple-checkout__scrollToPaymentContainer').setStyle('display', 'none'); + } + this.fireEvent('orderSuccessful', [this]); const scripts = []; const Ghost = new Element('div', { diff --git a/src/QUI/ERP/Order/SimpleCheckout/Checkout.html b/src/QUI/ERP/Order/SimpleCheckout/Checkout.html index b591bb1e3fea2225fcbb21c7f7f96d4377df8fcc..b788b452b630faef9e79264613ffe6078ae3afa0 100644 --- a/src/QUI/ERP/Order/SimpleCheckout/Checkout.html +++ b/src/QUI/ERP/Order/SimpleCheckout/Checkout.html @@ -2,7 +2,7 @@ {$BasketForHeader->create()} </div> -<div class="hide-on-desktop quiqqer-simple-checkout__scrollToPaymentContainer"> +<div class="hide-on-desktop quiqqer-simple-checkout__scrollToPaymentContainer" style="opacity: 0;"> <button class="quiqqer-simple-checkout__scrollToPaymentBtn btn btn-primary" type="button"> {locale group="quiqqer/order-simple-checkout" var="ordering.btn.continueWithPurchase"} </button>