payment.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <payment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
  10. <groups>
  11. <group id="offline">
  12. <label>Offline Payment Methods</label>
  13. </group>
  14. </groups>
  15. <methods>
  16. <method name="banktransfer">
  17. <allow_multiple_address>1</allow_multiple_address>
  18. </method>
  19. <method name="cashondelivery">
  20. <allow_multiple_address>1</allow_multiple_address>
  21. </method>
  22. <method name="checkmo">
  23. <allow_multiple_address>1</allow_multiple_address>
  24. </method>
  25. <method name="purchaseorder">
  26. <allow_multiple_address>1</allow_multiple_address>
  27. </method>
  28. <method name="free">
  29. <allow_multiple_address>1</allow_multiple_address>
  30. </method>
  31. </methods>
  32. </payment>