Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Search for similar products quoted by Different vendors in order_line and get cheapest

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
purchase_orderodoopurchaseorderorder_linepurchase.order
1 Responder
2329 Vistas
Avatar
Leonard Kiprop

I am trying to search for similar products in order_line quoted by different vendors in Purchase order model and then get the cheapest vendor.

The below code is what I was trying to do for the cheapest product.

def compute_cheapest(self):
for rec in self:
partner = rec.env['purchase.order'].search([('partner_id', '=', rec.partner_id.id)])
for each_partner in partner:
line = each_partner.order_line
for item in line:
if item.product_id.__________:


item.write({'quality': True})
else:
item.write({'quality': False})


The place where I have put the dash is where I am stuck. How can I search in every vendor's oder_line and find similar products quoted by them. The cheapest price for that product I do the last code

....   
item.write({'quality': True})
else:
item.write({'quality': False})

NB: I have set field quality to Boolean that's why in the end I am writting "True" or "False"


Or is there a better way to do it

0
Avatar
Descartar
Leonard Kiprop
Autor

Hi jjjaberi0n,

Sorry I can share images or link that has images to clarify further. But my Purchase.order has:
- partner/vendor name
- A unique supplier_prequalification_id_id which is in both vendors that applied for it

Then the product and price are in the class below it and many other field like cheapest price . Here is where I want to compare the the product for different vendors in purchase order and get the cheapest

# -*- coding: utf-8 -*-

from odoo import models, fields, api,_

class PurchaseOrder(models.Model):
_inherit = 'purchase.order'

supplier_prequalification_id = fields.Many2one("supplier.prequalification", string="Supplier Prequalification")

class PurchaseOrderLine(models.Model):
_inherit = 'purchase.order.line'
supplier_prequalification_id = fields.Many2one("supplier.prequalification", related="order_id.supplier_prequalification_id", string="Supplier Prequalification", store=True)
msf_brand = fields.Char(string="MSF Brand")
supplier_brand = fields.Char("Not MSF Brand")
lead_time = fields.Float()
note = fields.Text("Means of Pay")
termsofpay = fields.Text("Terms of Pay")
number_quoted = fields.Float("Number Quoted", related="product_qty")
quality = fields.Boolean(string="Cheapest Price", compute="compute_cheapest")
vendor = fields.Many2one("res.partner", string="Vendor", related="partner_id", store=True)
count = fields.Float()

def compute_cheapest(self):
for rec in self:
rec.quality = False
# req_product = rec.env['purchase.requisition'].search([''])
partner = rec.env['purchase.order'].search([('partner_id', '=', rec.partner_id.id)])
for each_partner in partner:
line = each_partner.order_line
for item in line:
if item.product_id == item.product_id:
item.count = min(item.price_unit)

# item.
# if item.count:
# item.write({'quality': True})
# else:
# item.write({'quality': False})

The compute I was trying to do in the odoo lines which purchase.order.line

Leonard Kiprop
Autor

I can't share images but I have commented the scenario

Avatar
jjjaberi0n
Mejor respuesta

Hi Leonard, Its a little bit hard when I can not see your codes of model 'purchase.order'. Anyway, I read your code and dont understand meaning of the line:

partner = rec.env['purchase.order'].search([('partner_id', '=', rec.partner_id.id)]

In my opinion,  you are trying to have list of similar products in order_line quoted by different vendors. And in that list, find the product which has lowest price. I guess your model 'purchase.order' has attributes 'name_of_product' , 'price', and 'name_of_vendor'. So you can group records of that model by attribute 'name_of_product', and find the record has the lowest 'price'.

0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Handle recurring billing and open purchase order
purchase_order billing purchaseorder purchase.order advancepayment
Avatar
Avatar
1
jul 21
1666
reference supplier in purchase order
purchase_order odoo
Avatar
Avatar
1
mar 15
4644
How do I change the format of Purchase Order Numbers, ie: POXXXXX, to something else? Resuelto
formatting purchase_order purchaseorder
Avatar
Avatar
1
feb 18
12291
Restriction of creating a Vendor Bill (Odoo v13)
purchase_order purchaseorder vendorbill controlpolicy
Avatar
Avatar
1
ene 23
2112
add "forecast" column into SO/PO
purchase_order sales.order odoo odoo10
Avatar
Avatar
1
ene 19
3557
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Sitio web hecho con

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now