mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
88 lines
3.5 KiB
Python
88 lines
3.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2017 Alexandre Díaz
|
|
# Copyright 2017 Dario Lodeiros
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from openerp import models, fields, api, _
|
|
from openerp.exceptions import UserError, ValidationError
|
|
|
|
import logging
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class AccountInvoice(models.Model):
|
|
|
|
_inherit = 'account.invoice'
|
|
|
|
@api.model
|
|
def create(self, vals):
|
|
cr, uid, context = self.env.args
|
|
context = dict(context)
|
|
if context.get('invoice_origin', False):
|
|
vals.update({'origin': context['invoice_origin']})
|
|
return super(AccountInvoice, self).create(vals)
|
|
|
|
@api.multi
|
|
def action_folio_payments(self):
|
|
self.ensure_one()
|
|
sales = self.mapped('invoice_line_ids.sale_line_ids.order_id')
|
|
folios = self.env['hotel.folio'].search([('order_id.id','in',sales.ids)])
|
|
payments_obj = self.env['account.payment']
|
|
payments = payments_obj.search([('folio_id','in',folios.ids)])
|
|
payment_ids = payments.mapped('id')
|
|
return{
|
|
'name': _('Payments'),
|
|
'view_type': 'form',
|
|
'view_mode': 'tree,form',
|
|
'res_model': 'account.payment',
|
|
'target': 'new',
|
|
'type': 'ir.actions.act_window',
|
|
'domain': [('id', 'in', payment_ids)],
|
|
}
|
|
|
|
dif_customer_payment = fields.Boolean(compute='_compute_dif_customer_payment')
|
|
from_folio = fields.Boolean(compute='_compute_dif_customer_payment')
|
|
sale_ids = fields.Many2many(
|
|
'sale.order', 'sale_order_invoice_rel', 'invoice_id',
|
|
'order_id', 'Sale Orders', readonly=True,
|
|
help="This is the list of sale orders related to this invoice.")
|
|
folio_ids = fields.Many2many(
|
|
comodel_name='hotel.folio', compute='_compute_dif_customer_payment')
|
|
|
|
@api.multi
|
|
def _compute_dif_customer_payment(self):
|
|
for inv in self:
|
|
sales = inv.mapped('invoice_line_ids.sale_line_ids.order_id')
|
|
folios = self.env['hotel.folio'].search([('order_id.id','in',sales.ids)])
|
|
if folios:
|
|
inv.from_folio = True
|
|
inv.folio_ids = [(6, 0, folios.ids)]
|
|
payments_obj = self.env['account.payment']
|
|
payments = payments_obj.search([('folio_id','in',folios.ids)])
|
|
for pay in payments:
|
|
if pay.partner_id != inv.partner_id:
|
|
inv.dif_customer_payment = True
|
|
|
|
@api.multi
|
|
def action_invoice_open(self):
|
|
to_open_invoices_without_vat = self.filtered(lambda inv: inv.state != 'open' and inv.partner_id.vat == False)
|
|
if to_open_invoices_without_vat:
|
|
vat_error = _("We need the VAT of the following companies")
|
|
for invoice in to_open_invoices_without_vat:
|
|
vat_error += ", " + invoice.partner_id.name
|
|
raise ValidationError(vat_error)
|
|
return super(AccountInvoice, self).action_invoice_open()
|
|
|
|
# ~ @api.multi
|
|
# ~ def confirm_paid(self):
|
|
# ~ '''
|
|
# ~ This method change pos orders states to done when folio invoice
|
|
# ~ is in done.
|
|
# ~ ----------------------------------------------------------
|
|
# ~ @param self: object pointer
|
|
# ~ '''
|
|
# ~ pos_order_obj = self.env['pos.order']
|
|
# ~ res = super(AccountInvoice, self).confirm_paid()
|
|
# ~ pos_odr_rec = pos_order_obj.search([('invoice_id', 'in', self._ids)])
|
|
# ~ pos_odr_rec and pos_odr_rec.write({'state': 'done'})
|
|
# ~ return res
|