fix signature from copute_request

This commit is contained in:
Àngel Àlvarez 2021-05-07 07:56:29 +02:00
parent 13fce605ed
commit 49b49b82de
1 changed files with 2 additions and 1 deletions

View File

@ -355,7 +355,8 @@ class Production(metaclass=PoolMeta):
return cost
@classmethod
def compute_request(cls, product, warehouse, quantity, date, company):
def compute_request(cls, product, warehouse, quantity, date, company,
order_point=None):
"Inherited from stock_supply_production"
production = super(Production, cls).compute_request(product,
warehouse, quantity, date, company)