pdf.xml 984 B

12345678910111213141516171819202122232425262728
  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_Sales:etc/pdf_file.xsd">
  9. <totals>
  10. <total name="subtotal">
  11. <model>Magento\Tax\Model\Sales\Pdf\Subtotal</model>
  12. </total>
  13. <total name="shipping">
  14. <model>Magento\Tax\Model\Sales\Pdf\Shipping</model>
  15. </total>
  16. <total name="grand_total">
  17. <model>Magento\Tax\Model\Sales\Pdf\Grandtotal</model>
  18. </total>
  19. <total name="tax">
  20. <title translate="true">Tax</title>
  21. <source_field>tax_amount</source_field>
  22. <model>Magento\Tax\Model\Sales\Pdf\Tax</model>
  23. <font_size>7</font_size>
  24. <display_zero>false</display_zero>
  25. <sort_order>300</sort_order>
  26. </total>
  27. </totals>
  28. </config>