mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
[IMP] stock_available_unreserved: Improve perf in stock computation;
Read quants without lang into the context to avoid sql join on ir.translations Iter on product with prefetch_fields=False and lang='' to avoid reading useless column ad join on ir.translations
This commit is contained in:
committed by
Lois Rilo
parent
b39846cc5a
commit
08dc76405e
@@ -90,7 +90,7 @@ class ProductProduct(models.Model):
|
||||
|
||||
domain_quant = self._prepare_domain_available_not_res(self)
|
||||
|
||||
quants = self.env['stock.quant'].read_group(
|
||||
quants = self.env['stock.quant'].with_context(lang=False).read_group(
|
||||
domain_quant,
|
||||
['product_id', 'location_id', 'qty'],
|
||||
['product_id', 'location_id'],
|
||||
@@ -100,7 +100,7 @@ class ProductProduct(models.Model):
|
||||
# create a dictionary with the total value per products
|
||||
values_prod.setdefault(quant['product_id'][0], 0)
|
||||
values_prod[quant['product_id'][0]] += quant['qty']
|
||||
for product in self:
|
||||
for product in self.with_context(prefetch_fields=False, lang=''):
|
||||
res[product.id] = {}
|
||||
# get total qty for the product
|
||||
qty = float_round(values_prod.get(product.id, 0.0),
|
||||
|
||||
Reference in New Issue
Block a user