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.
59 lines
2.3 KiB
59 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
################################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2022-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Raveena Vijayan V (odoo@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 fields, models, api
|
|
|
|
|
|
class SaleOrder(models.Model):
|
|
_inherit = 'sale.order'
|
|
|
|
invoiced_amount = fields.Float("Invoiced Amount",
|
|
compute="_compute_invoice_amount")
|
|
due_amount = fields.Float("Due Amount")
|
|
paid_amount = fields.Float("Paid Amount")
|
|
paid_amount_percent = fields.Float("Paid Amount in %",
|
|
compute="_compute_paid_amount_percent")
|
|
|
|
def _compute_invoice_amount(self):
|
|
for rec in self:
|
|
rec.invoiced_amount = 0.0
|
|
rec.paid_amount = 0.0
|
|
rec.due_amount = 0.0
|
|
if rec.invoice_ids:
|
|
inv = self.env['account.move'].search([
|
|
('id', 'in', rec.invoice_ids.ids)])
|
|
for r in inv:
|
|
rec.invoiced_amount += r.amount_total
|
|
rec.paid_amount += r.amount_total - r.amount_residual
|
|
rec.due_amount = rec.amount_total - rec.paid_amount
|
|
|
|
def _compute_paid_amount_percent(self):
|
|
for rec in self:
|
|
rec.paid_amount_percent = 0.0
|
|
if rec.invoice_ids:
|
|
inv = self.env['account.move'].search(
|
|
[('id', 'in', rec.invoice_ids.ids)])
|
|
p_amount = 0
|
|
for r in inv:
|
|
p_amount += r.amount_total - r.amount_residual
|
|
rec.paid_amount_percent = (p_amount/rec.amount_total)*100
|
|
|
|
|