Fix comment

This commit is contained in:
Matthias Brück 2024-06-26 19:54:08 +10:00
parent acaa2e514d
commit 2093af5da1

View file

@ -9,7 +9,7 @@ class WebsiteSaleMinMax(WebsiteSale):
@http.route() @http.route()
def cart_update(self, *args, min_qty=None, max_qty=None, **kw): def cart_update(self, *args, min_qty=None, max_qty=None, **kw):
""" Override to parse to datetime optional pickup and return dates. """ Override to get min_qty and max_qty from the product.
""" """
product_uom_min_qty = fields.Float(min_qty) product_uom_min_qty = fields.Float(min_qty)
product_uom_max_qty = fields.Float(max_qty) product_uom_max_qty = fields.Float(max_qty)