diff --git a/addons/account/account.py b/addons/account/account.py index ffdb75010b5..ddb3a305842 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -2477,6 +2477,7 @@ class account_chart_template(osv.osv): 'name': fields.char('Name', size=64, required=True), 'parent_id': fields.many2one('account.chart.template', 'Parent Chart Template'), '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="Set this False, then instead of the 2 many2one for default sale and purchase taxes, we display the default sale and purchase rates float field in the wizard"), 'account_root_id': fields.many2one('account.account.template', 'Root Account', domain=[('parent_id','=',False)]), 'tax_code_root_id': fields.many2one('account.tax.code.template', 'Root Tax Code', domain=[('parent_id','=',False)]), 'tax_template_ids': fields.one2many('account.tax.template', 'chart_template_id', 'Tax Template List', help='List of all the taxes that have to be installed by the wizard'), @@ -2635,12 +2636,19 @@ class wizard_multi_charts_accounts(osv.osv_memory): 'seq_journal':fields.boolean('Separated Journal Sequences', help="Check this box if you want to use a different sequence for each created journal. Otherwise, all will use the same sequence."), "sale_tax": fields.many2one("account.tax.template", "Default Sale Tax"), "purchase_tax": fields.many2one("account.tax.template", "Default Purchase Tax"), + 'sale_tax_rate': fields.float('Sale Tax(%)'), + 'purchase_tax_rate': fields.float('Purchase Tax(%)'), + 'tracking': fields.boolean('Tracking'), } def onchange_chart_template_id(self, cr, uid, ids, chart_template_id=False, context=None): res = {} res['value'] = {} + res['value']["tracking"] = False res['value']["sale_tax"] = False res['value']["purchase_tax"] = False + for template in self.pool.get('account.chart.template').browse(cr, uid, [chart_template_id], context=context): + if template.set_tax_complete: + res['value']["tracking"] = True if chart_template_id: # 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 = self.pool.get('account.tax.template').search(cr, uid, [("chart_template_id" diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index 7bf22cd1d1c..038cd1550ce 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -2146,6 +2146,7 @@ + @@ -2399,8 +2400,11 @@ - - + + + + +