-
-
Notifications
You must be signed in to change notification settings - Fork 344
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DO NOT MERGE: sale_commission_partial_settlement: major refactor
- Loading branch information
Showing
15 changed files
with
459 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
107 changes: 97 additions & 10 deletions
107
sale_commission_partial_settlement/models/account_invoice_line_agent_partial.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,115 @@ | ||
# Copyright 2023 Nextev | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from odoo import fields, models | ||
from odoo import api, fields, models | ||
|
||
|
||
class AccountInvoiceLineAgentPartial(models.Model): | ||
_name = "account.invoice.line.agent.partial" | ||
_description = "Partial agent commissions" | ||
_description = "Partial agent commissions. " | ||
"Tracks the expected commissions." | ||
|
||
move_line_id = fields.Many2one( | ||
"account.move.line", | ||
required=True, # TODO: migration? Probably cannot enforce | ||
ondelete="cascade", | ||
) | ||
invoice_line_agent_id = fields.Many2one( | ||
"account.invoice.line.agent", required=True, ondelete="cascade" | ||
) | ||
# logically a One2one | ||
agent_line = fields.Many2many( | ||
comodel_name="sale.commission.settlement.line", | ||
relation="settlement_agent_line_partial_rel", | ||
column1="agent_line_partial_id", | ||
column2="settlement_id", | ||
copy=False, | ||
settlement_line_partial_ids = fields.One2many( | ||
"sale.commission.settlement.line.partial", | ||
"invoice_agent_partial_id", | ||
compute="_compute_settlement_line_partial_ids", | ||
store=True, | ||
) | ||
account_partial_reconcile_id = fields.Many2one("account.partial.reconcile") | ||
account_partial_reconcile_id = fields.Many2one( | ||
"account.partial.reconcile" | ||
) # TODO: Remove | ||
amount = fields.Monetary( | ||
compute="_compute_amount", | ||
store=True, | ||
string="Commission Amount", | ||
) | ||
currency_id = fields.Many2one( | ||
related="invoice_line_agent_id.currency_id", | ||
) | ||
settled_amount = fields.Monetary( | ||
compute="_compute_settled_amount", | ||
store=True, | ||
) | ||
is_settled = fields.Boolean( | ||
compute="_compute_settled_amount", store=True, string="Fully settled" | ||
) | ||
|
||
move_id = fields.Many2one(related="move_line_id.move_id", string="Invoice") | ||
date_maturity = fields.Date( | ||
related="move_line_id.date_maturity", | ||
store=True, | ||
) | ||
invoice_line_id = fields.Many2one( | ||
related="invoice_line_agent_id.object_id", string="Invoice Line" | ||
) | ||
agent_id = fields.Many2one( | ||
related="invoice_line_agent_id.agent_id", | ||
store=True, | ||
) | ||
invoice_date = fields.Date( | ||
related="invoice_line_agent_id.invoice_date", | ||
store=True, | ||
) | ||
|
||
@api.depends( | ||
"settlement_line_partial_ids.amount", | ||
"settlement_line_partial_ids.is_settled", | ||
) | ||
def _compute_settled_amount(self): | ||
for rec in self: | ||
# TODO: handle different currencies | ||
rec.settled_amount = sum( | ||
x.amount for x in rec.settlement_line_partial_ids if x.is_settled | ||
) | ||
rec.is_settled = rec.currency_id.is_zero(rec.settled_amount - rec.amount) | ||
|
||
@api.depends( | ||
"move_line_id.balance", | ||
"move_line_id.move_id.amount_total", | ||
"invoice_line_agent_id.amount", | ||
) | ||
def _compute_amount(self): | ||
for rec in self: | ||
rec.amount = ( | ||
rec.move_line_id.balance | ||
* rec.invoice_line_agent_id.amount | ||
/ rec.move_line_id.move_id.amount_total | ||
) | ||
|
||
@api.depends( | ||
"move_line_id.matched_debit_ids", | ||
"move_line_id.matched_credit_ids", | ||
) | ||
def _compute_settlement_line_partial_ids(self): | ||
""" | ||
Cf. method _get_reconciled_invoices_partials | ||
in odoo.addons.account.models.account_move.AccountMove. | ||
""" | ||
for rec in self: | ||
pay_term_line = rec.move_line_id | ||
matched_partials = ( | ||
pay_term_line.matched_debit_ids + pay_term_line.matched_credit_ids | ||
) | ||
if not matched_partials: | ||
continue | ||
existing_partial_settlements = rec.settlement_line_partial_ids | ||
existing_partials = existing_partial_settlements.mapped( | ||
"partial_reconcile_id" | ||
) | ||
|
||
for partial in matched_partials: | ||
if partial not in existing_partials: | ||
existing_partial_settlements.create( | ||
{ | ||
"partial_reconcile_id": partial.id, | ||
"invoice_agent_partial_id": rec.id, | ||
} | ||
) |
36 changes: 18 additions & 18 deletions
36
sale_commission_partial_settlement/models/account_partial_reconcile.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
from odoo import api, fields, models | ||
from odoo import fields, models | ||
|
||
|
||
class AccountPartialReconcile(models.Model): | ||
_inherit = "account.partial.reconcile" | ||
|
||
# Logically a One2one | ||
account_invoice_line_agent_partial_ids = fields.One2many( | ||
"account.invoice.line.agent.partial", "account_partial_reconcile_id" | ||
) | ||
partial_commission_settled = fields.Boolean( | ||
compute="_compute_partial_commission_settled", store=True | ||
) | ||
) # TODO: Remove? | ||
# partial_commission_settled = fields.Boolean( | ||
# compute="_compute_partial_commission_settled", store=True | ||
# ) | ||
|
||
@api.depends( | ||
"account_invoice_line_agent_partial_ids", | ||
"account_invoice_line_agent_partial_ids.agent_line.settlement_id.state", | ||
) | ||
def _compute_partial_commission_settled(self): | ||
for rec in self: | ||
rec.partial_commission_settled = any( | ||
settlement.state != "cancel" | ||
for settlement in rec.mapped( | ||
"account_invoice_line_agent_partial_ids.agent_line.settlement_id" | ||
) | ||
) | ||
# APR can't tell if every agent was settled! | ||
# @api.depends( | ||
# "account_invoice_line_agent_partial_ids", | ||
# "account_invoice_line_agent_partial_ids.agent_line.settlement_id.state", | ||
# ) | ||
# def _compute_partial_commission_settled(self): | ||
# for rec in self: | ||
# rec.partial_commission_settled = any( | ||
# settlement.state != "cancel" | ||
# for settlement in rec.mapped( | ||
# "account_invoice_line_agent_partial_ids.agent_line.settlement_id" | ||
# ) | ||
# ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.