Skip to content

Commit

Permalink
[10.0][FIX] stock_cycle_count: fix compute turnover
Browse files Browse the repository at this point in the history
  • Loading branch information
LoisRForgeFlow committed Oct 10, 2017
1 parent 8f01995 commit a4d958c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stock_cycle_count/models/stock_cycle_count_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def _get_turnover_moves(self, location, date):

@api.model
def _compute_turnover(self, move):
price = move.get_price_unit(move)
price = move.get_price_unit()
turnover = move.product_uom_qty * price
return turnover

Expand Down

0 comments on commit a4d958c

Please sign in to comment.