fieldset.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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"
  9. xsi:noNamespaceSchemaLocation="urn:magento:framework:DataObject/etc/fieldset.xsd">
  10. <scope id="global">
  11. <fieldset id="downloadable_sales_copy_order">
  12. <field name="entity_id">
  13. <aspect name="to_downloadable" targetField="order_id" />
  14. </field>
  15. <field name="increment_id">
  16. <aspect name="to_downloadable" targetField="order_increment_id" />
  17. </field>
  18. <field name="created_at">
  19. <aspect name="to_downloadable" />
  20. </field>
  21. <field name="updated_at">
  22. <aspect name="to_downloadable" />
  23. </field>
  24. <field name="customer_id">
  25. <aspect name="to_downloadable" />
  26. </field>
  27. </fieldset>
  28. <fieldset id="downloadable_sales_copy_order_item">
  29. <field name="item_id">
  30. <aspect name="to_downloadable" targetField="order_item_id" />
  31. </field>
  32. <field name="name">
  33. <aspect name="to_downloadable" targetField="product_name" />
  34. </field>
  35. <field name="sku">
  36. <aspect name="to_downloadable" targetField="product_sku" />
  37. </field>
  38. </fieldset>
  39. <fieldset id="downloadable_sales_copy_link">
  40. <field name="product_id">
  41. <aspect name="to_purchased" />
  42. </field>
  43. <field name="link_id">
  44. <aspect name="to_purchased" />
  45. </field>
  46. <field name="title">
  47. <aspect name="to_purchased" targetField="link_title" />
  48. </field>
  49. <field name="is_shareable">
  50. <aspect name="to_purchased" />
  51. </field>
  52. <field name="link_url">
  53. <aspect name="to_purchased" />
  54. </field>
  55. <field name="link_file">
  56. <aspect name="to_purchased" />
  57. </field>
  58. <field name="link_type">
  59. <aspect name="to_purchased" />
  60. </field>
  61. </fieldset>
  62. <fieldset id="downloadable_data">
  63. <field name="link_id">
  64. <aspect name="to_link" targetField="id"/>
  65. </field>
  66. <field name="sample_id">
  67. <aspect name="to_sample" targetField="id"/>
  68. </field>
  69. <field name="type">
  70. <aspect name="to_link" targetField="link_type"/>
  71. <aspect name="to_sample" targetField="sample_type"/>
  72. </field>
  73. </fieldset>
  74. <fieldset id="downloadable_link_sample_data">
  75. <field name="url">
  76. <aspect name="to_link_sample" targetField="sample_url"/>
  77. </field>
  78. <field name="type">
  79. <aspect name="to_link_sample" targetField="sample_type"/>
  80. </field>
  81. </fieldset>
  82. </scope>
  83. </config>