fieldset.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * This file is part of the Klarna Core module
  5. *
  6. * (c) Klarna Bank AB (publ)
  7. *
  8. * For the full copyright and license information, please view the NOTICE
  9. * and LICENSE files that were distributed with this source code.
  10. */
  11. -->
  12. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13. xsi:noNamespaceSchemaLocation="urn:magento:framework:DataObject/etc/fieldset.xsd">
  14. <scope id="global">
  15. <fieldset id="sales_convert_quote_address">
  16. <field name="prefix">
  17. <aspect name="to_klarna" targetField="title"/>
  18. </field>
  19. <field name="firstname">
  20. <aspect name="to_klarna" targetField="given_name"/>
  21. </field>
  22. <field name="lastname">
  23. <aspect name="to_klarna" targetField="family_name"/>
  24. </field>
  25. <field name="street">
  26. <aspect name="to_klarna" targetField="street_address"/>
  27. </field>
  28. <field name="city">
  29. <aspect name="to_klarna" />
  30. </field>
  31. <field name="region">
  32. <aspect name="to_klarna" />
  33. </field>
  34. <field name="postcode">
  35. <aspect name="to_klarna" targetField="postal_code"/>
  36. </field>
  37. <field name="country_id">
  38. <aspect name="to_klarna" targetField="country"/>
  39. </field>
  40. <field name="telephone">
  41. <aspect name="to_klarna" targetField="phone" />
  42. </field>
  43. <field name="email">
  44. <aspect name="to_klarna" />
  45. </field>
  46. <field name="company">
  47. <aspect name="to_klarna" targetField="organization_name"/>
  48. </field>
  49. </fieldset>
  50. </scope>
  51. </config>