Fix comment
This commit is contained in:
parent
acaa2e514d
commit
2093af5da1
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue