You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
2.0 KiB
56 lines
2.0 KiB
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2017 Creu Blanca
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
|
|
from odoo import api, models, _
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class CashInvoiceIn(models.TransientModel):
|
|
_inherit = 'cash.invoice.in'
|
|
|
|
def default_company(self, active_model, active_ids):
|
|
if active_model == 'pos.session':
|
|
active = self.env[active_model].browse(active_ids)
|
|
return active[0].config_id.company_id
|
|
return super(CashInvoiceIn, self).default_company(
|
|
active_model, active_ids
|
|
)
|
|
|
|
def default_journals(self, active_model, active_ids):
|
|
if active_model == 'pos.session':
|
|
active = self.env[active_model].browse(active_ids)
|
|
if not active.cash_register_id:
|
|
raise UserError(_(
|
|
"There is no cash register for this Pos session"
|
|
))
|
|
return active.cash_register_id.journal_id
|
|
return super(CashInvoiceIn, self).default_journals(
|
|
active_model, active_ids
|
|
)
|
|
|
|
def default_currency(self, active_model, active_ids):
|
|
if active_model == 'pos.session':
|
|
journal = self._default_journal()
|
|
if journal.currency_id:
|
|
return journal.currency_id
|
|
return super(CashInvoiceIn, self).default_currency(
|
|
active_model, active_ids
|
|
)
|
|
|
|
@api.multi
|
|
def run(self):
|
|
active_model = self.env.context.get('active_model', False)
|
|
active_ids = self.env.context.get('active_ids', False)
|
|
if active_model == 'pos.session':
|
|
bank_statements = [
|
|
session.statement_ids.filtered(
|
|
lambda r: r.journal_id.id == self.journal_id.id
|
|
)
|
|
for session in self.env[active_model].browse(active_ids)
|
|
]
|
|
if not bank_statements:
|
|
raise UserError(_('Bank Statement was not found'))
|
|
return self._run(bank_statements)
|
|
else:
|
|
return super(CashInvoiceIn, self).run()
|