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
    • Conocimientos
    • 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
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • 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

Is there a way to use a specific currency for the sale prices of a product? Via a pricelist? Do I really need a fixed price per item?

Suscribirse

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

Se marcó esta pregunta
enterprisev10
2 Respuestas
4290 Vistas
Avatar
Bruno Figares

Is there a way to use a specific currency for the sale prices of a product?

My accounting is in UYU, I sell consulting hours in USD among other things. I tried configuring pricelists, but the price is interpreted in the UYU currency and automatically translated - and I want to charge a specific amount of dollars, not the product price. It would be a bit impractical to set up a pricelist with fixed cost for each item - is this the only way? Also, if that is the case, how can I force a pricelist to substitute the price of the product, ie, that it is always used instead of the actual value in sale_price?


Best regards,

Bruno

0
Avatar
Descartar
Avatar
Grahame Jordan
Mejor respuesta

For my use case, I want any products that are "Published to Web" to have the list price in USD otherwise the User currency.

So I overode product_template -> _compute_currency_id()

class ProductTemplate(models.Model):
   _inherit = 'product.template'

   @api.depends('company_id')
   def _compute_currency_id(self):
       company = self.env.user.company_id
       user_currency_id = company.sudo().currency_id
       usd_currency_id = self.env['res.currency'].search([('name', '=', 'USD')], limit=None)
       for t in self:
           if t.is_published:
               t.currency_id = usd_currency_id
           else:
               t.currency_id = user_currency_id

You can adapt to suit your own use case

0
Avatar
Descartar
Avatar
Raaj Mishra
Mejor respuesta

Hi Bruno,you can achieve it by enabling use pricelist at sales configuration and then by enabling multi currency for the logged in user.pls refer to the screenshot added.

0
Avatar
Descartar
Bruno Figares
Autor

Hello Raaj, thanks for answering the question. This is a partial answer to my problem, as I mentioned in the post - I already know how to set fixed prices to pricelists, but I want to use some value in the product as the price in a foreign currency, not translating it through the pricelist. I know you can do it through fixed prices in the pricelist, but that is awfully inconvenient - is there any other way to do it?

Ermin Trevisan

Using an ERP system (at least all that I know of) means selling products (sometimes also called articles or items, but it is the same logical business object). Such products have product price expressed in a curreny, no matter what currency. These prices may be overwritten in business document lines such as quotation lines, sales order lines or invoice lines, but they are always product prices and you should always keep the integrated flow of quantities and values in mind. So you may be more specific about your issue and maybe provide an example to explain what you exactly mean.

¿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
Where can I see all sales activities in ODOO 10 enterprise? Resuelto
crm enterprise v10
Avatar
Avatar
1
jun 19
10431
How to use Fedex Saturday Delivery v10e
enterprise fedex v10
Avatar
0
ene 17
5026
Create customer users without incurring enterprise fees for all
enterprise
Avatar
Avatar
1
abr 23
5605
why would Odoo 14 enterprise server reboot every 5 - 10 minutes ?.
enterprise
Avatar
0
jun 21
2440
[v10] Open Form from Action in Readonly Mode Resuelto
v10
Avatar
Avatar
Avatar
2
ene 21
7317
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