blob: 8c33b40d895899be61e55392638305ff6b536498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
from odoo.addons.website.models import ir_http
class ProductProduct(models.Model):
_inherit = 'product.product'
cart_qty = fields.Integer(compute='_compute_cart_qty')
def _compute_cart_qty(self):
website = ir_http.get_request_website()
if not website:
self.cart_qty = 0
return
cart = website.sale_get_order()
for product in self:
product.cart_qty = sum(cart.order_line.filtered(lambda p: p.product_id.id == product.id).mapped('product_uom_qty')) if cart else 0
|