[IMP]GOLEM Membership : default categories to 706/604 accounts

This commit is contained in:
Fabien BOURGEOIS 2018-08-03 10:35:19 +02:00
parent cf4a804038
commit fa539c29dd
2 changed files with 20 additions and 2 deletions

View File

@ -18,7 +18,7 @@
{
'name': 'GOLEM non-profit membership handling',
'summary': 'Extends Odoo membership',
'version': '10.0.2.2.0',
'version': '10.0.2.2.1',
'category': 'GOLEM',
'author': 'Fabien Bourgeois, Michel Dessenne',
'license': 'AGPL-3',

View File

@ -27,7 +27,8 @@ class AccountConfig(models.AbstractModel):
@api.model
def account_settings(self):
""" Please use better default taxes and account.journal config """
""" Please use better default taxes, account.journal config, base
accounts for categories """
account_conf_obj = self.env['account.config.settings']
data = {'company_id': self.env.ref('base.main_company').id}
account_conf = account_conf_obj.create(data)
@ -53,3 +54,20 @@ class AccountConfig(models.AbstractModel):
'default_debit_account_id': bank_journal.default_debit_account_id.id,
'default_credit_account_id': bank_journal.default_credit_account_id.id
})
# Default categories account to 706 and 604
categories = (self.env.ref('product.product_category_all'),
self.env.ref('product.product_category_1'))
account_obj = self.env['account.account']
income_account = account_obj.search([('code', '=', '706000')])
expense_account = account_obj.search([('code', '=', '604000')])
for categ in categories:
categ.write({
'property_account_income_categ_id': income_account.id,
'property_account_expense_categ_id': expense_account.id
})
property_obj = self.env['ir.property']
income = property_obj.search([('name', '=', 'property_account_income_categ_id')])
income.write({'value_reference': 'account.account,%s' % income_account.id})
expense = property_obj.search([('name', '=', 'property_account_expense_categ_id')])
expense.write({'value_reference': 'account.account,%s' % expense_account.id})