minor fix

This commit is contained in:
wilson gomez 2021-10-19 15:26:33 -05:00
parent 67a501fc56
commit 21d1d6af93
4 changed files with 6 additions and 6 deletions

View File

@ -6,6 +6,7 @@ from . import commission
from . import invoice
from . import sale
from . import agent
from . import party
def register():
@ -16,6 +17,7 @@ def register():
invoice.Invoice,
commission.CreateInvoiceAsk,
agent.AgentCommissionSalesStart,
party.Party,
module='commission_global', type_='model')
Pool.register(
commission.CreateInvoice,

View File

@ -8,6 +8,5 @@ this repository contains the full copyright notices and license terms. -->
<field name="inherit" ref="party.party_view_form"/>
<field name="name">party_form</field>
</record>
</data>
</tryton>

View File

@ -11,3 +11,4 @@ xml:
commission.xml
sale.xml
agent.xml
party.xml

View File

@ -2,10 +2,8 @@
<!-- This 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='sale']/field[@name='sale_price_list']"
position="after">
<label name="agent"/>
<field name="agent"/>
<xpath expr="/form/notebook/page[@id='sale']" position="inside">
<label name="agent"/>
<field name="agent"/>
</xpath>
</data>