first commit

This commit is contained in:
2023-07-12 11:35:22 -05:00
commit 1557e31c46
27 changed files with 1671 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<!--This file file is part of Tryton. The COPYRIGHT file at the top level of this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="/form/notebook/page[@id='general']/field[@name='amount']" position="after">
<label name="tax_extra_unit"/>
<field name="tax_extra_unit"/>
<label name="total_tax_extra"/>
<field name="total_tax_extra"/>
<label name="unit_with_tax"/>
<field name="unit_with_tax"/>
<label name="tax_amount"/>
<field name="tax_amount"/>
<label name="total_with_taxes"/>
<field name="total_with_taxes"/>
</xpath>
</data>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0"?>
<!--This file file is part of Tryton. The COPYRIGHT file at the top level of this repository contains the full copyright notices and license terms. -->
<data>
<xpath expr="//field[@name='amount']" position="after">
<field name="unit_with_tax" optional="1"/>
<field name="tax_amount" optional="1"/>
<field name="total_with_taxes" optional="1"/>
</xpath>
</data>