Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

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?

Odebírat

Get notified when there's activity on this post

This question has been flagged
enterprisev10
2 Odpovědi
4251 Zobrazení
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
Zrušit
Avatar
Grahame Jordan
Nejlepší odpověď

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
Zrušit
Avatar
Raaj Mishra
Nejlepší odpověď

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
Zrušit
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.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Where can I see all sales activities in ODOO 10 enterprise? Vyřešeno
crm enterprise v10
Avatar
Avatar
1
čvn 19
10358
How to use Fedex Saturday Delivery v10e
enterprise fedex v10
Avatar
0
led 17
4938
Create customer users without incurring enterprise fees for all
enterprise
Avatar
Avatar
1
dub 23
5424
why would Odoo 14 enterprise server reboot every 5 - 10 minutes ?.
enterprise
Avatar
0
čvn 21
2335
[v10] Open Form from Action in Readonly Mode Vyřešeno
v10
Avatar
Avatar
Avatar
2
led 21
7171
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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