Rohan Nayani(Open ERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-l10n-control-dev-add-integer-field-on-acc-chart-template-ron
into lp:~openerp-dev/openobject-addons/trunk-l10n-control-dev.
Requested reviews:
Rucha (Open ERP) (rpa-openerp)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-l10n-control-dev-add-integer-field-on-acc-chart-template-ron/+merge/70841
Hello,
On account.chart.template, added field.integer(code_digits) which is the
default value for number of digits the user wants to have. => Gave onchange
instead if the current _default:{code_digits :6}
Thanks
RON
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-l10n-control-dev-add-integer-field-on-acc-chart-template-ron/+merge/70841
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-addons/trunk-l10n-control-dev.
=== modified file 'account/account.py'
--- account/account.py 2011-08-08 12:57:08 +0000
+++ account/account.py 2011-08-09 10:11:27 +0000
@@ -2476,6 +2476,7 @@
_columns={
'name': fields.char('Name', size=64, required=True),
'parent_id': fields.many2one('account.chart.template', 'Parent Chart Template'),
+ 'code_digits': fields.integer('# of Digits', required=True, help="No. of Digits to use for account code"),
'visible': fields.boolean('Can be Visible?', help="Set this to False if you don't want this template to be used actively in the wizard that generate Chart of Accounts from templates, this is useful when you want to generate accounts of this template only when loading its child template."),
'set_tax_complete': fields.boolean('Complete Set of Tax', help="Check this if you want to create new default Sales and Purchase taxes from selected rate instead of choosing it from list of taxes."),
'account_root_id': fields.many2one('account.account.template', 'Root Account', domain=[('parent_id','=',False)]),
@@ -2495,6 +2496,7 @@
_defaults = {
'visible': True,
+ 'code_digits': 6
}
account_chart_template()
@@ -2708,9 +2710,10 @@
def onchange_chart_template_id(self, cr, uid, ids, chart_template_id=False, context=None):
res = {}
tax_templ_obj = self.pool.get('account.tax.template')
- res['value'] = {'complete_tax': False, 'sale_tax': False, 'purchase_tax': False}
+ res['value'] = {'complete_tax': False, 'sale_tax': False, 'purchase_tax': False, 'code_digits': 0}
if chart_template_id:
- complete_tax = self.pool.get('account.chart.template').browse(cr, uid, chart_template_id, context=context).set_tax_complete
+ data = self.pool.get('account.chart.template').browse(cr, uid, chart_template_id, context=context)
+ complete_tax = data.set_tax_complete
if complete_tax:
# default tax is given by the lowesst sequence. For same sequence we will take the latest created as it will be the case for tax created while isntalling the generic chart of account
sale_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id"
@@ -2718,7 +2721,7 @@
purchase_tax_ids = tax_templ_obj.search(cr, uid, [("chart_template_id"
, "=", chart_template_id), ('type_tax_use', 'in', ('purchase','all'))], order="sequence, id desc")
res['value'].update({'sale_tax': sale_tax_ids and sale_tax_ids[0] or False, 'purchase_tax': purchase_tax_ids and purchase_tax_ids[0] or False})
- res['value'].update({'complete_tax': complete_tax})
+ res['value'].update({'complete_tax': complete_tax, 'code_digits': data.code_digits})
return res
@@ -2732,8 +2735,6 @@
{'acc_name': _('Cash'), 'account_type': 'cash'}]})
if 'company_id' in fields:
res.update({'company_id': self.pool.get('res.users').browse(cr, uid, [uid], context=context)[0].company_id.id})
- if 'code_digits' in fields:
- res.update({'code_digits': 6})
if 'seq_journal' in fields:
res.update({'seq_journal': True})
=== modified file 'account/account_view.xml'
--- account/account_view.xml 2011-08-05 06:09:27 +0000
+++ account/account_view.xml 2011-08-09 10:11:27 +0000
@@ -2145,6 +2145,7 @@
<field name="bank_account_view_id" attrs="{'required': [('parent_id', '=', False)]}"/>
<field name="tax_code_root_id" attrs="{'required': [('parent_id', '=', False)]}"/>
<field name="parent_id" />
+ <field name="code_digits" />
<field name="visible" />
<field name="set_tax_complete" />
</group>
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp