21 lines
801 B
Python
21 lines
801 B
Python
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
|||
|
|
# this repository contains the full copyright notices and license terms.
|
||
|
|
|
||
|
|
from trytond.pool import Pool, PoolMeta
|
||
|
|
|
||
|
|
|
||
|
|
class CreateChart(metaclass=PoolMeta):
|
||
|
|
__name__ = 'account.create_chart'
|
||
|
|
|
||
|
|
def default_properties(self, fields):
|
||
|
|
pool = Pool()
|
||
|
|
ModelData = pool.get('ir.model.data')
|
||
|
|
defaults = super().default_properties(fields)
|
||
|
|
template_id = ModelData.get_id('account_do.do_account_root')
|
||
|
|
if self.account.account_template.id == template_id:
|
||
|
|
defaults['account_receivable'] = self.get_account(
|
||
|
|
'account_do.do_account_110201')
|
||
|
|
defaults['account_payable'] = self.get_account(
|
||
|
|
'account_do.do_account_210101')
|
||
|
|
return defaults
|