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.
36 lines
1.1 KiB
36 lines
1.1 KiB
# Copyright 2018 Rémy Taymans <remytaymans@gmail.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
from odoo.http import request
|
|
|
|
from odoo.addons.portal.controllers.portal import CustomerPortal
|
|
|
|
|
|
class PortalPosOrderAmount(CustomerPortal):
|
|
def _prepare_portal_layout_values(self):
|
|
values = super(
|
|
PortalPosOrderAmount, self
|
|
)._prepare_portal_layout_values()
|
|
user = request.env.user
|
|
owned_posorder = (
|
|
request.env["pos.order"]
|
|
.sudo()
|
|
.search(
|
|
[
|
|
(
|
|
"partner_id",
|
|
"=",
|
|
user.partner_id.commercial_partner_id.id,
|
|
),
|
|
("state", "!=", "cancel"),
|
|
]
|
|
)
|
|
)
|
|
values["posorder_amount"] = sum(
|
|
po.amount_total for po in owned_posorder
|
|
)
|
|
values["company_currency"] = (
|
|
request.env["res.company"]._company_default_get().currency_id
|
|
)
|
|
return values
|