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.
75 lines
3.3 KiB
75 lines
3.3 KiB
# -*- coding: utf-8 -*-
|
|
################################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
################################################################################
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class LinkInvoice(models.TransientModel):
|
|
"""
|
|
This model handles the linking of invoices to sale orders.
|
|
"""
|
|
_name = 'link.invoice'
|
|
_description = "Link Invoice"
|
|
|
|
invoice_ids = fields.Many2many(
|
|
"account.move", string="Invoices",
|
|
help="Select the invoices you want to link to the sale order.")
|
|
sale_order_id = fields.Many2one('sale.order',
|
|
string="Default Sale Order",
|
|
readonly=True,
|
|
help="The default sale order to which the "
|
|
"selected invoices will be linked.")
|
|
|
|
def action_add_invoices(self):
|
|
"""
|
|
Add selected invoices to the associated sale order and perform
|
|
validation checks.
|
|
"""
|
|
if self.sale_order_id:
|
|
for invoice in self.invoice_ids:
|
|
if invoice.link_invoice:
|
|
matched_products = self.sale_order_id.order_line.mapped(
|
|
'product_id')
|
|
for invoice_line in invoice.invoice_line_ids.product_id:
|
|
if invoice_line not in matched_products:
|
|
raise ValidationError(_(
|
|
"Invoice contains a product not present in the Sale "
|
|
"Order: %s" % invoice_line.display_name))
|
|
for line in self.sale_order_id.order_line.filtered(
|
|
lambda x: x.product_id == invoice_line):
|
|
delivery_quantity = line.product_uom_qty
|
|
line.qty_invoiced = delivery_quantity
|
|
line.invoice_lines |= invoice.invoice_line_ids.filtered(
|
|
lambda x: x.product_id == line.product_id)
|
|
|
|
@api.constrains('invoice_ids')
|
|
def invoice_ids_field(self):
|
|
"""
|
|
Check for partner mismatch between sale order and selected invoices.
|
|
"""
|
|
for invoice in self:
|
|
sale_order_partner_id = invoice.sale_order_id.partner_id
|
|
for inv_line in invoice.invoice_ids:
|
|
if inv_line.partner_id != sale_order_partner_id:
|
|
raise ValidationError(_(
|
|
"Partner mismatch between Sale Order and Invoice. "
|
|
"Please remove it to Link Invoice"))
|
|
|