2
0

fields labels

This commit is contained in:
Davide Corio 2014-12-09 16:52:37 +01:00 committed by Abraham Anes
parent 7c817ee743
commit f4f85b3241
2 changed files with 28 additions and 19 deletions

View File

@ -29,9 +29,9 @@
'license': 'AGPL-3',
'depends': ['account_accountant', 'analytic'],
'data': [
'move_template.xml',
'wizard/select_template.xml',
'security/ir.model.access.csv',
'views/move_template.xml',
'wizard/select_template.xml',
],
'test': [
'test/generate_move.yml',

View File

@ -20,23 +20,28 @@
</field>
</record>
<record id="view_move_template_line_form" model="ir.ui.view">
<field name="name">account.move.template.line.form</field>
<field name="model">account.move.template.line</field>
<field name="arch" type="xml">
<form string="Journal Entry Template Line">
<field colspan="4" name="name" select="1"/>
<field name="sequence"/>
<field name="journal_id"/>
<field name="account_id" domain="[('type','&lt;&gt;','view'),('type','&lt;&gt;','consolidation')]"/>
<field name="analytic_account_id" groups="analytic.group_analytic_accounting"/>
<field name="type"/>
<field name="move_line_type"/>
<field name="account_tax_id"/>
<separator string="Python Code" colspan="4"/>
<field name="python_code" colspan="4" attrs="{'readonly': [('type', '!=', 'computed')]}" nolabel="1"/>
<label string="You can refer to other lines using their sequence number (e.g. 'L(1)' for first line). Examples of code: 'L(1) * 0.2'; 'L(2) - L(1)'; 'L(1) + L(2) + L(3)'; '1250'" colspan="4"/>
<group>
<group>
<field name="name" select="1"/>
<field name="sequence"/>
<field name="journal_id"/>
<field name="account_id" domain="[('type','&lt;&gt;','view'),('type','&lt;&gt;','consolidation')]"/>
<field name="analytic_account_id" groups="analytic.group_analytic_accounting"/>
</group>
<group>
<field name="type"/>
<field name="move_line_type"/>
<field name="account_tax_id"/>
</group>
<separator string="Python Code" colspan="4"/>
<field name="python_code" colspan="4" attrs="{'readonly': [('type', '!=', 'computed')]}" nolabel="1"/>
<label string="You can refer to other lines using their sequence number (e.g. 'L(1)' for first line). Examples of code: 'L(1) * 0.2'; 'L(2) - L(1)'; 'L(1) + L(2) + L(3)'; '1250'" colspan="4"/>
</group>
</form>
</field>
</record>
@ -46,11 +51,13 @@
<field name="model">account.move.template</field>
<field name="arch" type="xml">
<form string="Journal Entry Template">
<field name="name"/>
<field name="company_id" widget='selection' groups="base.group_multi_company"/>
<field name="cross_journals" />
<field name="transitory_acc_id" attrs="{'invisible':[('cross_journals','!=',True)],'required':[('cross_journals','==',True)]}"/>
<field colspan="4" nolabel="1" name="template_line_ids"/>
<group>
<field name="name"/>
<field name="company_id" widget='selection' groups="base.group_multi_company"/>
<field name="cross_journals" />
<field name="transitory_acc_id" attrs="{'invisible':[('cross_journals','!=',True)],'required':[('cross_journals','==',True)]}"/>
<field colspan="4" nolabel="1" name="template_line_ids"/>
</group>
</form>
</field>
</record>
@ -87,8 +94,10 @@
<field name="view_mode">tree,form</field>
<field name="search_view_id" ref="view_move_template_search"/>
</record>
<menuitem
action="action_move_template_form" id="menu_action_move_template_form" sequence="5"
parent="account.menu_configuration_misc" groups="account.group_account_manager"/>
</data>
</openerp>