reports.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_Analytics:etc/reports.xsd">
  9. <report name="orders" connection="sales">
  10. <source name="sales_order">
  11. <attribute name="entity_id"/>
  12. <attribute name="created_at"/>
  13. <attribute name="customer_id"/>
  14. <attribute name="status"/>
  15. <attribute name="base_grand_total"/>
  16. <attribute name="base_tax_amount"/>
  17. <attribute name="base_shipping_amount"/>
  18. <attribute name="coupon_code" function="sha1"/>
  19. <attribute name="store_id"/>
  20. <attribute name="store_name"/>
  21. <attribute name="base_discount_amount"/>
  22. <attribute name="base_subtotal"/>
  23. <attribute name="base_total_refunded"/>
  24. <attribute name="shipping_method"/>
  25. <attribute name="shipping_address_id"/>
  26. <attribute name="customer_email" function="sha1"/>
  27. <attribute name="base_total_online_refunded"/>
  28. <attribute name="base_total_offline_refunded"/>
  29. <attribute name="base_currency_code"/>
  30. <attribute name="billing_address_id"/>
  31. </source>
  32. </report>
  33. <report name="order_items" connection="sales">
  34. <source name="sales_order_item">
  35. <attribute name="item_id"/>
  36. <attribute name="created_at"/>
  37. <attribute name="name"/>
  38. <attribute name="base_price"/>
  39. <attribute name="qty_ordered"/>
  40. <attribute name="order_id"/>
  41. <attribute name="sku"/>
  42. <attribute name="product_id"/>
  43. <attribute name="store_id"/>
  44. </source>
  45. </report>
  46. <report name="order_addresses" connection="sales">
  47. <source name="sales_order_address">
  48. <attribute name="entity_id"/>
  49. <attribute name="customer_id"/>
  50. <attribute name="city"/>
  51. <attribute name="region"/>
  52. <attribute name="country_id"/>
  53. </source>
  54. </report>
  55. </config>