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.
161 lines
7.0 KiB
161 lines
7.0 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 LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from datetime import date, timedelta
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
"""Inheriting res.partner"""
|
|
_inherit = "res.partner"
|
|
|
|
invoice_list = fields.One2many('account.move', 'partner_id',
|
|
string="Invoice Details",
|
|
readonly=True,
|
|
domain=(
|
|
[('payment_state', '=', 'not_paid'),
|
|
('move_type', '=', 'out_invoice')]))
|
|
total_due = fields.Monetary(compute='_compute_for_followup', store=False,
|
|
readonly=True)
|
|
next_reminder_date = fields.Date(compute='_compute_for_followup',
|
|
store=False, readonly=True)
|
|
total_overdue = fields.Monetary(compute='_compute_for_followup',
|
|
store=False, readonly=True)
|
|
followup_status = fields.Selection(
|
|
[('in_need_of_action', 'In need of action'),
|
|
('with_overdue_invoices', 'With overdue invoices'),
|
|
('no_action_needed', 'No action needed')],
|
|
string='Followup status',
|
|
)
|
|
|
|
warning_stage = fields.Float(string='Warning Amount',
|
|
help="A warning message will appear once the "
|
|
"selected customer is crossed warning "
|
|
"amount. Set its value to 0.00 to"
|
|
" disable this feature")
|
|
blocking_stage = fields.Float(string='Blocking Amount',
|
|
help="Cannot make sales once the selected "
|
|
"customer is crossed blocking amount."
|
|
"Set its value to 0.00 to disable "
|
|
"this feature")
|
|
due_amount = fields.Float(string="Total Sale",
|
|
compute="compute_due_amount")
|
|
active_limit = fields.Boolean("Active Credit Limit", default=False)
|
|
|
|
enable_credit_limit = fields.Boolean(string="Credit Limit Enabled",
|
|
compute="_compute_enable_credit_limit")
|
|
|
|
def _compute_for_followup(self):
|
|
"""
|
|
Compute the fields 'total_due', 'total_overdue' , 'next_reminder_date' and 'followup_status'
|
|
"""
|
|
for record in self:
|
|
total_due = 0
|
|
total_overdue = 0
|
|
today = fields.Date.today()
|
|
for am in record.invoice_list:
|
|
if am.company_id == self.env.company:
|
|
amount = am.amount_residual
|
|
total_due += amount
|
|
|
|
is_overdue = today > am.invoice_date_due if am.invoice_date_due else today > am.date
|
|
if is_overdue:
|
|
total_overdue += amount or 0
|
|
min_date = record.get_min_date()
|
|
action = record.action_after()
|
|
if min_date:
|
|
date_reminder = min_date + timedelta(days=action)
|
|
if date_reminder:
|
|
record.next_reminder_date = date_reminder
|
|
else:
|
|
date_reminder = today
|
|
record.next_reminder_date = date_reminder
|
|
if total_overdue > 0 and date_reminder > today:
|
|
followup_status = "with_overdue_invoices"
|
|
elif total_due > 0 and date_reminder <= today:
|
|
followup_status = "in_need_of_action"
|
|
else:
|
|
followup_status = "no_action_needed"
|
|
record.total_due = total_due
|
|
record.total_overdue = total_overdue
|
|
record.followup_status = followup_status
|
|
|
|
def get_min_date(self):
|
|
"""Get the minimum invoice due date from the partner's invoice list."""
|
|
today = date.today()
|
|
for this in self:
|
|
if this.invoice_list:
|
|
min_list = this.invoice_list.mapped('invoice_date_due')
|
|
while False in min_list:
|
|
min_list.remove(False)
|
|
return min(min_list)
|
|
else:
|
|
return today
|
|
|
|
def get_delay(self):
|
|
"""Retrieve the delay information for follow-up lines associated with the company."""
|
|
delay = """SELECT fl.id, fl.delay
|
|
FROM followup_line fl
|
|
JOIN account_followup af ON fl.followup_id = af.id
|
|
WHERE af.company_id = %s
|
|
ORDER BY fl.delay;
|
|
|
|
"""
|
|
self._cr.execute(delay, [self.env.company.id])
|
|
record = self._cr.dictfetchall()
|
|
|
|
return record
|
|
|
|
def action_after(self):
|
|
"""Retrieve the delay information for follow-up lines associated with the company and return the delay value if found."""
|
|
lines = self.env['followup.line'].search([(
|
|
'followup_id.company_id', '=', self.env.company.id)])
|
|
if lines:
|
|
record = self.get_delay()
|
|
for i in record:
|
|
return i['delay']
|
|
|
|
def compute_due_amount(self):
|
|
"""Compute function to compute the due amount with the
|
|
credit and debit amount"""
|
|
for rec in self:
|
|
if not rec.id:
|
|
continue
|
|
rec.due_amount = rec.credit - rec.debit
|
|
|
|
def _compute_enable_credit_limit(self):
|
|
""" Check credit limit is enabled in account settings """
|
|
params = self.env['ir.config_parameter'].sudo()
|
|
customer_credit_limit = params.get_param('customer_credit_limit',
|
|
default=False)
|
|
for rec in self:
|
|
rec.enable_credit_limit = True if customer_credit_limit else False
|
|
|
|
@api.constrains('warning_stage', 'blocking_stage')
|
|
def constrains_warning_stage(self):
|
|
"""Constrains functionality used to indicate or raise an
|
|
UserError"""
|
|
if self.active_limit and self.enable_credit_limit:
|
|
if self.warning_stage >= self.blocking_stage:
|
|
if self.blocking_stage > 0:
|
|
raise UserError(_(
|
|
"Warning amount should be less than Blocking amount"))
|
|
|