68 lines
2.3 KiB
Python
Executable File
68 lines
2.3 KiB
Python
Executable File
# Copyright 2018 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class SaleOrder(models.Model):
|
|
_inherit = "sale.order"
|
|
|
|
display_discount_with_tax = fields.Boolean(
|
|
name="Show the Discount with TAX",
|
|
help="Check this field to show the Discount with TAX",
|
|
related="company_id.display_discount_with_tax",
|
|
)
|
|
discount_total = fields.Monetary(
|
|
compute="_compute_discount_total",
|
|
name="Discount total",
|
|
currency_field="currency_id",
|
|
store=True,
|
|
)
|
|
discount_subtotal = fields.Monetary(
|
|
compute="_compute_discount_total",
|
|
name="Discount Subtotal",
|
|
currency_field="currency_id",
|
|
store=True,
|
|
)
|
|
price_subtotal_no_discount = fields.Monetary(
|
|
compute="_compute_discount_total",
|
|
name="Subtotal Without Discount",
|
|
currency_field="currency_id",
|
|
store=True,
|
|
)
|
|
price_total_no_discount = fields.Monetary(
|
|
compute="_compute_discount_total",
|
|
name="Total Without Discount",
|
|
currency_field="currency_id",
|
|
store=True,
|
|
)
|
|
|
|
@api.model
|
|
def _get_compute_discount_total_depends(self):
|
|
return [
|
|
"order_line.discount_total",
|
|
"order_line.discount_subtotal",
|
|
"order_line.price_subtotal_no_discount",
|
|
"order_line.price_total_no_discount",
|
|
]
|
|
|
|
@api.depends(lambda self: self._get_compute_discount_total_depends())
|
|
def _compute_discount_total(self):
|
|
for order in self:
|
|
discount_total = sum(order.order_line.mapped("discount_total"))
|
|
discount_subtotal = sum(order.order_line.mapped("discount_subtotal"))
|
|
price_subtotal_no_discount = sum(
|
|
order.order_line.mapped("price_subtotal_no_discount")
|
|
)
|
|
price_total_no_discount = sum(
|
|
order.order_line.mapped("price_total_no_discount")
|
|
)
|
|
order.update(
|
|
{
|
|
"discount_total": discount_total,
|
|
"discount_subtotal": discount_subtotal,
|
|
"price_subtotal_no_discount": price_subtotal_no_discount,
|
|
"price_total_no_discount": price_total_no_discount,
|
|
}
|
|
)
|