79 lines
2.6 KiB
Python
79 lines
2.6 KiB
Python
|
# Copyright 2018 Onestein (<https://www.onestein.eu>)
|
||
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from odoo import api, fields, models
|
||
|
|
||
|
|
||
|
class AccountSpreadTemplate(models.Model):
|
||
|
_name = 'account.spread.template'
|
||
|
_description = 'Account Spread Template'
|
||
|
|
||
|
name = fields.Char(required=True)
|
||
|
spread_type = fields.Selection([
|
||
|
('sale', 'Customer'),
|
||
|
('purchase', 'Supplier')],
|
||
|
default='sale',
|
||
|
required=True)
|
||
|
company_id = fields.Many2one(
|
||
|
'res.company',
|
||
|
default=lambda self: self.env.user.company_id,
|
||
|
string='Company',
|
||
|
required=True)
|
||
|
spread_journal_id = fields.Many2one(
|
||
|
'account.journal',
|
||
|
string='Journal',
|
||
|
required=True)
|
||
|
spread_account_id = fields.Many2one(
|
||
|
'account.account',
|
||
|
string='Spread Balance Sheet Account',
|
||
|
required=True)
|
||
|
|
||
|
@api.model
|
||
|
def default_get(self, fields):
|
||
|
res = super().default_get(fields)
|
||
|
if 'company_id' not in fields:
|
||
|
company_id = self.env.user.company_id.id
|
||
|
else:
|
||
|
company_id = res['company_id']
|
||
|
default_journal = self.env['account.journal'].search([
|
||
|
('type', '=', 'general'),
|
||
|
('company_id', '=', company_id)],
|
||
|
limit=1)
|
||
|
if 'spread_journal_id' not in res and default_journal:
|
||
|
res['spread_journal_id'] = default_journal.id
|
||
|
return res
|
||
|
|
||
|
@api.onchange('spread_type', 'company_id')
|
||
|
def onchange_spread_type(self):
|
||
|
company = self.company_id
|
||
|
if self.spread_type == 'sale':
|
||
|
account = company.default_spread_revenue_account_id
|
||
|
journal = company.default_spread_revenue_journal_id
|
||
|
else:
|
||
|
account = company.default_spread_expense_account_id
|
||
|
journal = company.default_spread_expense_journal_id
|
||
|
if account:
|
||
|
self.spread_account_id = account
|
||
|
if journal:
|
||
|
self.spread_journal_id = journal
|
||
|
|
||
|
def _prepare_spread_from_template(self):
|
||
|
self.ensure_one()
|
||
|
company = self.company_id
|
||
|
spread_vals = {
|
||
|
'name': self.name,
|
||
|
'template_id': self.id,
|
||
|
'journal_id': self.spread_journal_id.id,
|
||
|
'company_id': company.id,
|
||
|
}
|
||
|
|
||
|
if self.spread_type == 'sale':
|
||
|
invoice_type = 'out_invoice'
|
||
|
spread_vals['debit_account_id'] = self.spread_account_id.id
|
||
|
else:
|
||
|
invoice_type = 'in_invoice'
|
||
|
spread_vals['credit_account_id'] = self.spread_account_id.id
|
||
|
|
||
|
spread_vals['invoice_type'] = invoice_type
|
||
|
return spread_vals
|