Merge branch 'fix/12.0/stock_landed_costs_average' into '12.0-test'

fix/12.0/stock_landed_costs_average into 12.0-test

See merge request hibou-io/hibou-odoo/suite!420
This commit is contained in:
Hibou Bot
2020-07-22 19:28:41 +00:00

View File

@@ -88,7 +88,7 @@ class LandedCost(models.Model):
('id', 'in', quant_loc_ids)])
qty_available = line.product_id.with_context(location=locations.ids).qty_available
total_cost = (qty_available * line.product_id.standard_price) + cost_to_add
line.product_id.write({'standard_price': total_cost / qty_available})
line.product_id.write({'standard_price': total_cost / qty_available if qty_available != 0 else 0})
move = move.create(move_vals)
cost.write({'state': 'done', 'account_move_id': move.id})