Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Food & Hospitality
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Guest House
    • Distribuidor de bebidas
    • Hotel
    Real Estate
    • Real Estate Agency
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consulting
    • Accounting Firm
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Trades
    • Handyman
    • Hardware y asistencia informática
    • Solar Energy Systems
    • Zapatero
    • Servicios de limpieza
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar 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
  • Proyecto
  • 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

Somebody here has found the trick to use pricelists directly in invoices?

Suscribirse

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

Se marcó esta pregunta
invoicecustomersupplierusepricelist
7 Respuestas
5956 Vistas
Avatar
Pascal Tremblay

???




UPDATE #1

Just to be sure we all talk the same thing. Here are screenshots.

The product :





The supplier :




The pricelist :



 

With a request for quotation, we get the right price of 1,52 $. 



With an invoice, always impossible to get our price of 1,52 $.


Is it the same thing for you?


0
Avatar
Descartar
Avatar
Cyril Gaspard (GEM)
Mejor respuesta

Pricelists are used only in sale, purchase, pos forms, not in invoice form, for that, the field should be add to the invoice form, to override methods product_id_change depending pricelist (eventually onchange_partner_id to get automatically the good pricelist) .


Difference between product price inherited from sale, purchase, pos in an invoice (without do a product onchange after creation of this invoice), and created an invoice directly without inherithing sale, purchase, pos, is due to onchange on field product_id.

Example :

for sale, pricelist is used to calculate price :


def product_id_change(self, cr, uid, ids, pricelist, product, qty=0,

uom=False, qty_uos=0, uos=False, name='', partner_id=False,

lang=False, update_tax=True, date_order=False, packaging=False, fiscal_position=False, flag=False, context=None):

.....................


price = self.pool.get('product.pricelist').price_get(cr, uid, [pricelist],

product, qty or 1.0, partner_id, {

'uom': uom or result.get('product_uom'),

'date': date_order,

})[pricelist]


...............................


for invoice, no pricelist used :


def product_id_change(self, product, uom_id, qty=0, name='', type='out_invoice',

partner_id=False, fposition_id=False, price_unit=False, currency_id=False,

company_id=None):

..................


if type in ('in_invoice', 'in_refund'):

values['price_unit'] = price_unit or product.standard_price

else:

values['price_unit'] = product.list_price

..................


It is enough clear ?


bye

2
Avatar
Descartar
michel Guénard

@Pascal Can you try to modify the pricelist by adding the product (or category) you are buying

michel Guénard

Clear! thanks. would'nt it be a bug? if you make a sale with a price depending of the pricelist that you are not able to invoice with the same price.

Cyril Gaspard (GEM)

when you have an order or a picking, you push a button to create invoice, the called function by the button takes values of the order to create the invoice, in this case, the onchange of product is not called, and values correspond to the sale, more, never modify invoice line by changing values in popup product because in this case, values will no more correspond to the order if you use special pricelist, bye

Pascal Tremblay
Autor

Thanks a lot for all. I print all of it. We will use it soon.

Frank Kubsda

Hello I have build a module, which uses the price lists on direct invoice-creation. The module has some addition features. Have a look at http://www.itis-odoo.de/en_US/page/preislisten-modul regards Frank

Avatar
michel Guénard
Mejor respuesta




The parner form (your client) has a field where you state which pricelist will be applied for the transaction with this partner.

Same functionality for the suppliers



0
Avatar
Descartar
Pascal Tremblay
Autor

By chance, would you have a url of an example?

michel Guénard

I don't know the reason why the picture (screen shot) I have added to my comment is not showing on the forum. Is there a limitation in size?

Pascal Tremblay
Autor

not easy to put image on forum on this time. I have updated my post. Pricelists are well set in my supplier form. thanks

Cyril Gaspard (GEM)

update my answer which explain why you have not same price in sale and invoice, bye

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

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

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
How can i assign a specific supplier purchase pricelist with a customer ?
customer supplier pricelist
Avatar
0
mar 15
4222
How to do inter-company invoicing?
invoice customer supplier
Avatar
Avatar
Avatar
2
mar 15
6615
Pay Invoice Customer with Vendors Bill or vice versa odoo 10
invoice customer supplier bill odoo10
Avatar
0
ago 17
3895
Display report based on condition in "Print" dropdown
invoice customer print supplier report
Avatar
0
jun 17
3778
How can a Salesperson change unit prices defined in Pricelists (overriding them) without the ability to edit the Pricelist rules?
invoice product customer price pricelist
Avatar
0
ene 16
4190
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información 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 totalmente integrado.

Website made with

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