18 lines
677 B
Python
18 lines
677 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, models
|
|
|
|
|
|
class AccountChartTemplate(models.Model):
|
|
_inherit = 'account.chart.template'
|
|
|
|
@api.model
|
|
def _prepare_all_journals(self, acc_template_ref, company, journals_dict=None):
|
|
journal_data = super(AccountChartTemplate, self)._prepare_all_journals(
|
|
acc_template_ref, company, journals_dict)
|
|
for journal in journal_data:
|
|
if journal['type'] in ('sale', 'purchase') and company.account_fiscal_country_id.code == "LU":
|
|
journal.update({'refund_sequence': True})
|
|
return journal_data
|