purchase_stock_usability: add product_supplier_code in tree view of stock.move and stock.move.line

purchase_usability: improve computation of product_supplier_code on purchase order line
This commit is contained in:
Alexis de Lattre
2023-11-29 16:51:15 +01:00
parent 5ad925cee1
commit 92a1b511c1
8 changed files with 134 additions and 4 deletions

View File

@@ -79,15 +79,21 @@ class PurchaseOrderLine(models.Model):
compute='_compute_product_supplier_code', string='Vendor Product Code')
def _compute_product_supplier_code(self):
pso = self.env['product.supplierinfo']
for line in self:
code = False
if not line.display_type and line.product_id and line.order_id:
partner_id = line.order_id.partner_id.commercial_partner_id.id
if partner_id:
for supplier_info in line.product_id.seller_ids:
if supplier_info.partner_id.id == partner_id:
code = supplier_info.product_code
break
sinfo = pso.search_read([
('product_code', '!=', False),
('partner_id', '=', partner_id),
('company_id', 'in', (False, line.order_id.company_id.id)),
('product_id', 'in', (False, line.product_id.id)),
], ['product_code'], limit=1, order='product_id')
# if I order by product_id, I get the null values at the end
if sinfo:
code = sinfo[0]['product_code']
line.product_supplier_code = code
def _get_product_purchase_description(self, product_lang):