banktransfer.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <div class="payment-method" data-bind="css: {'_active': (getCode() == isChecked())}">
  8. <div class="payment-method-title field choice">
  9. <input type="radio"
  10. name="payment[method]"
  11. class="radio"
  12. data-bind="attr: {'id': getCode()}, value: getCode(), checked: isChecked, click: selectPaymentMethod, visible: isRadioButtonVisible()" />
  13. <label data-bind="attr: {'for': getCode()}" class="label"><span data-bind="text: getTitle()"></span></label>
  14. </div>
  15. <div class="payment-method-content">
  16. <!-- ko foreach: getRegion('messages') -->
  17. <!-- ko template: getTemplate() --><!-- /ko -->
  18. <!--/ko-->
  19. <div class="payment-method-billing-address">
  20. <!-- ko foreach: $parent.getRegion(getBillingAddressFormName()) -->
  21. <!-- ko template: getTemplate() --><!-- /ko -->
  22. <!--/ko-->
  23. </div>
  24. <p data-bind="html: getInstructions()"></p>
  25. <div class="checkout-agreements-block">
  26. <!-- ko foreach: $parent.getRegion('before-place-order') -->
  27. <!-- ko template: getTemplate() --><!-- /ko -->
  28. <!--/ko-->
  29. </div>
  30. <div class="actions-toolbar">
  31. <div class="primary">
  32. <button class="action primary checkout"
  33. type="submit"
  34. data-bind="
  35. click: placeOrder,
  36. attr: {'title': $t('Place Order')},
  37. enable: (getCode() == isChecked()),
  38. css: {disabled: !isPlaceOrderActionAllowed()}
  39. "
  40. disabled>
  41. <span data-bind="i18n: 'Place Order'"></span>
  42. </button>
  43. </div>
  44. </div>
  45. </div>
  46. </div>