add label in all wizards for account fiscal year

bzr revid: mra@tinyerp.com-20080904061431-1bgglgi9ix5kdag1
This commit is contained in:
Mustufa Rangwala 2008-09-04 11:44:31 +05:30
parent 86bcad5092
commit bd325713cf
8 changed files with 10 additions and 2 deletions

View File

@ -34,6 +34,7 @@ import pooler
dates_form = '''<?xml version="1.0"?>
<form string="Select period">
<field name="fiscalyear" colspan="4"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<field name="periods" colspan="4"/>
<field name="state" colspan="4"/>
</form>'''

View File

@ -35,6 +35,7 @@ class wizard_account_chart(wizard.interface):
_account_chart_arch = '''<?xml version="1.0"?>
<form string="Account charts">
<field name="fiscalyear"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<field name="target_move"/>
</form>'''

View File

@ -41,6 +41,7 @@ _aged_trial_form = """<?xml version="1.0"?>
<field name="company_id"/>
<newline/>
<field name="fiscalyear"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<newline/>
<field name="period_length"/>
<newline/>

View File

@ -34,6 +34,7 @@ import pooler
dates_form = '''<?xml version="1.0"?>
<form string="Select period">
<field name="fiscalyear" colspan="4"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<field name="periods" colspan="4"/>
<field name="state" colspan="4"/>
</form>'''

View File

@ -36,7 +36,8 @@ dates_form = '''<?xml version="1.0"?>
<form string="Select period">
<field name="company_id" colspan="4"/>
<newline/>
<field name="fiscalyear" colspan="4"/>
<field name="fiscalyear" colspan="4"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<newline/>
<field name="date1"/>
<field name="date2"/>

View File

@ -36,6 +36,7 @@ dates_form = '''<?xml version="1.0"?>
<form string="Select period">
<field name="company_id" colspan="4"/>
<field name="fiscalyear" colspan="4"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<newline/>
<field name="date1"/>
<field name="date2"/>
@ -68,7 +69,7 @@ class wizard_report(wizard.interface):
states = {
'init': {
'actions': [_get_defaults],
'actions': [_get_defaults],
'result': {'type':'form', 'arch':dates_form, 'fields':dates_fields, 'state':[('end','Cancel'),('report','Print') ]}
},
'report': {

View File

@ -43,6 +43,7 @@ dates_form = '''<?xml version="1.0"?>
<notebook tabpos="up">
<page string="Report Options">
<separator string="Select Fiscal Year(s)(Maximum Three Years)" colspan="4"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<field name="fiscalyear" colspan="5" nolabel="1"/>
<field name="landscape" colspan="4"/>
<field name="show_columns" colspan="4"/>

View File

@ -25,6 +25,7 @@ _aged_trial_form = """<?xml version="1.0"?>
<field name="company_id"/>
<newline/>
<field name="fiscalyear"/>
<label align="0.7" colspan="6" string="(If you do not select Fiscal year it will take all open fiscal year)"/>
<newline/>
<field name="target_move"/>
</form>"""