Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

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?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
enterprisev10
2 Replies
4292 Tampilan
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
Buang
Avatar
Grahame Jordan
Jawaban Terbai

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
Buang
Avatar
Raaj Mishra
Jawaban Terbai

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
Buang
Bruno Figares
Penulis

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.

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
Where can I see all sales activities in ODOO 10 enterprise? Diselesaikan
crm enterprise v10
Avatar
Avatar
1
Jun 19
10432
How to use Fedex Saturday Delivery v10e
enterprise fedex v10
Avatar
0
Jan 17
5027
Create customer users without incurring enterprise fees for all
enterprise
Avatar
Avatar
1
Apr 23
5609
why would Odoo 14 enterprise server reboot every 5 - 10 minutes ?.
enterprise
Avatar
0
Jun 21
2444
[v10] Open Form from Action in Readonly Mode Diselesaikan
v10
Avatar
Avatar
Avatar
2
Jan 21
7318
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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