Skip to content

Commit

Permalink
[IMP] Move the constraint on uniqueness for cutoff date at line level…
Browse files Browse the repository at this point in the history
… + Add the possibility to create several cutoff with the same date

    Business case can be :

    - One user (A) creates a cutoff for some account moves. Another user (B) creates other moves, then wants to see those moves in a cutoff.
    However, B does not want to interfere with the cutoff A already made. B creates a new cutoff with the same date as the one of A, and when he generates lines,
    only retrieves the one that were not already in the cutoff of A.

    - One user wants to create several cutoff at the same date, but for different journals/accounts
  • Loading branch information
lmarion-source committed Nov 14, 2024
1 parent efd98e9 commit 554ee1a
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 12 deletions.
2 changes: 1 addition & 1 deletion account_cutoff_base/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

{
"name": "Account Cut-off Base",
"version": "16.0.1.5.0",
"version": "16.0.1.0.1",
"category": "Accounting & Finance",
"license": "AGPL-3",
"summary": "Base module for Account Cut-offs",
Expand Down
19 changes: 19 additions & 0 deletions account_cutoff_base/migrations/16.0.1.0.1/post-migrate.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2024 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
import logging

import odoo

_logger = logging.getLogger(__name__)


def migrate(cr, version):
_logger.info("Remove constraint on account cutoff")
odoo.api.Environment(cr, odoo.SUPERUSER_ID, {})

cr.execute(
"""
ALTER TABLE account_cutoff
DROP CONSTRAINT account_cutoff_date_type_company_uniq
"""
)
8 changes: 0 additions & 8 deletions account_cutoff_base/models/account_cutoff.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,6 @@ def _compute_move_reversal_id(self):
"the state is set to 'Done' and the fields become read-only.",
)

_sql_constraints = [
(
"date_type_company_uniq",
"unique(cutoff_date, company_id, cutoff_type)",
_("A cutoff of the same type already exists with this cut-off date !"),
)
]

def name_get(self):
res = []
type2label = self.cutoff_type_label_map
Expand Down
13 changes: 11 additions & 2 deletions account_cutoff_base/models/account_cutoff_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import fields, models
from odoo import _, fields, models


class AccountCutoffLine(models.Model):
Expand All @@ -12,7 +12,8 @@ class AccountCutoffLine(models.Model):
_description = "Account Cut-off Line"

parent_id = fields.Many2one("account.cutoff", string="Cut-off", ondelete="cascade")
cutoff_type = fields.Selection(related="parent_id.cutoff_type")
cutoff_type = fields.Selection(related="parent_id.cutoff_type", store=True)
cutoff_date = fields.Date(related="parent_id.cutoff_date", store=True)
company_id = fields.Many2one(
"res.company", related="parent_id.company_id", store=True
)
Expand Down Expand Up @@ -83,3 +84,11 @@ class AccountCutoffLine(models.Model):
readonly=True,
)
notes = fields.Text()

_sql_constraints = [
(
"line_date_type_company_uniq",
"unique(cutoff_date, company_id, cutoff_type)",
_("A cutoff line of the same type already exists with this cut-off date !"),
)
]
1 change: 1 addition & 0 deletions account_cutoff_start_end_dates/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from . import account_cutoff
from . import account_cutoff_line
from . import account_move_line
6 changes: 5 additions & 1 deletion account_cutoff_start_end_dates/models/account_cutoff.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ def _prepare_date_cutoff_line(self, aml, mapping):
"name": aml.name,
"start_date": aml.start_date,
"end_date": aml.end_date,
"cutoff_date": self.cutoff_date,
"account_id": aml.account_id.id,
"cutoff_account_id": cutoff_account_id,
"analytic_distribution": aml.analytic_distribution,
Expand Down Expand Up @@ -209,8 +210,11 @@ def get_lines(self):
("start_date", "<=", self.cutoff_date),
("date", ">", self.cutoff_date),
]

amls = aml_obj.search(domain)
for aml in amls:
if self.cutoff_date in aml.cutoff_line_ids.mapped("cutoff_date"):
# cutoff line already exists for this date
continue
line_obj.create(self._prepare_date_cutoff_line(aml, mapping))

return res
15 changes: 15 additions & 0 deletions account_cutoff_start_end_dates/models/account_move_line.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2024 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from odoo import fields, models


class AccountMoveLine(models.Model):

_inherit = "account.move.line"
cutoff_line_ids = fields.One2many(
"account.cutoff.line",
inverse_name="origin_move_line_id",
string="Related cutoff line",
readonly=True,
)
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ def test_with_cutoff_before_after_and_in_the_middle(self):
cutoff = self._create_cutoff("01-31")
cutoff.get_lines()
self.assertEqual(amount, cutoff.total_cutoff_amount)
# cutoff at the same date as the previous one : no new line created
cutoff = self._create_cutoff("01-31")
cutoff.get_lines()
self.assertEqual(0, cutoff.total_cutoff_amount)

def tests_1(self):
"""generate move, and test move lines grouping"""
Expand Down

0 comments on commit 554ee1a

Please sign in to comment.