[imp] account: add a bunch of help text and descriptions to the installer view

bzr revid: xmo@tinyerp.com-20100124210136-odbcxhnnd711cn0z
This commit is contained in:
Xavier Morel 2010-01-24 22:01:36 +01:00
parent d01ede58d5
commit 0d4417c516
2 changed files with 19 additions and 8 deletions

View File

@ -17,15 +17,15 @@
</separator>
<xpath expr="//label[@string='description']"
position="attributes">
<attribute name="string"
></attribute>
<attribute name="string">You can enhance OpenERP's basic
accounting support with a few additional OpenERP applications</attribute>
</xpath>
<group colspan="8">
<separator string="Accounting" colspan="4"/>
<field name="account_analytic_default"/>
<field name="account_analytic_plans"/>
<!-- insert suppliers payment management here -->
<field name="account_payment"/>
<field name="account_followup"/>
<field name="account_asset"/>
</group>

View File

@ -26,11 +26,22 @@ class account_installer(osv.osv_memory):
_columns = {
# Accounting
'account_analytic_default':fields.boolean('Analytic Accounting'),
'account_analytic_plans':fields.boolean('Multiple Analytic Plans'),
'account_payment':fields.boolean('Suppliers Payment Management'),
'account_followup':fields.boolean('Followups Management'),
'account_asset':fields.boolean('Assets Management')
'account_analytic_default':fields.boolean('Analytic Accounting',
help="Automatically selects analytic accounts based on various "
"criteria."),
'account_analytic_plans':fields.boolean('Multiple Analytic Plans',
help="Allows invoice lines to impact multiple analytic accounts "
"simultaneously."),
'account_payment':fields.boolean('Suppliers Payment Management',
help="Streamlines invoice payment and creates hooks to plug "
"automated payment systems in."),
'account_followup':fields.boolean('Followups Management',
help="Helps you generate reminder letters for unpaid invoices, "
"including multiple levels of reminding and customized "
"per-partner policies."),
'account_asset':fields.boolean('Assets Management',
help="Enables asset management in the accounting application, "
"including asset categories and usage periods.")
}
_defaults = {
'account_analytic_default':True,