config.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
  9. <default>
  10. <payment>
  11. <checkmo>
  12. <active>1</active>
  13. <model>Magento\OfflinePayments\Model\Checkmo</model>
  14. <order_status>pending</order_status>
  15. <title>Check / Money order</title>
  16. <allowspecific>0</allowspecific>
  17. <group>offline</group>
  18. </checkmo>
  19. <purchaseorder>
  20. <active>0</active>
  21. <model>Magento\OfflinePayments\Model\Purchaseorder</model>
  22. <order_status>pending</order_status>
  23. <title>Purchase Order</title>
  24. <allowspecific>0</allowspecific>
  25. <group>offline</group>
  26. </purchaseorder>
  27. <banktransfer>
  28. <active>0</active>
  29. <model>Magento\OfflinePayments\Model\Banktransfer</model>
  30. <order_status>pending</order_status>
  31. <title>Bank Transfer Payment</title>
  32. <allowspecific>0</allowspecific>
  33. <group>offline</group>
  34. </banktransfer>
  35. <cashondelivery>
  36. <active>0</active>
  37. <model>Magento\OfflinePayments\Model\Cashondelivery</model>
  38. <order_status>pending</order_status>
  39. <title>Cash On Delivery</title>
  40. <allowspecific>0</allowspecific>
  41. <group>offline</group>
  42. </cashondelivery>
  43. <free>
  44. <group>offline</group>
  45. </free>
  46. </payment>
  47. </default>
  48. </config>