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

Relate to one field OR another (Odoo Studio - odoo.sh v13)

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
relationship
3 Replies
4103 Tampilan
Avatar
FD Displays

I created a field in Product form view and i need to show that field on the sales quote.

But, i need to show that field only if it's not empty.

So, if the field is empty, i need to show the product name, and if the field is not empty, i need to show it's content.

I'm trying to accomplish this using a relation and adding the following code in Studio:

If (product_id.x_studio_descrio_1) == "":
  x_studio_descrio_1 = product_id.x_studio_descrio_1
Else:
  x_studio_descrio_1 = product_variant_id.name

So, product_id.x_studio_descrio_1 is the field name i want to show if it's not empty, and x_studio_descrio_1 is the field i'll show it in.
If it possible to do this relation? Relate one or another?

Is my code wrong?

0
Avatar
Buang
Avatar
Chris TRINGHAM
Jawaban Terbai

Yes you can use Python code in an Automated Action, but I'd use a new field for the description that you want to show.  I hope that this example is helpful:

This image has an empty alt attribute; its file name is automated-action-to-set-product-description.jpg
if record.x_studio_extended_description: 
    record['x_studio_print_description'] = record.x_studio_extended_description 
else: 
    record['x_studio_print_description'] = record.name

https://odootricks.tips/simple-conditions-in-an-automated-action/


For a Form View you can add both fields to the View but condition them so that only one is displayed.

Click on "Conditional" next to "Invisible" and the following window is displayed:


Select the field product_id.x_studio_descrio_1

https://odootricks.tips/adding-fields-using-odoo-studio/

1
Avatar
Buang
FD Displays
Penulis

Thank you so much for your help and sorry i took so long to reply.

I think my lack of clarification didn't help, but the field i'm trying to add is a detailed description of the product. Like the description that already exists on sales quote, but i need to add it before it turns into a sales quote, so i need the description in the product itself.

So, resuming... what will happen is i'll have products with a detailed description and products without a detailed description in the sales quote, so i'd need the same field to display the product name or the detailed description. One or the other, in the same column, so i don't have two different columns in the quotation sent to the client.

Chris TRINGHAM

I updated my answer. I hope that points you in the right direction.

FD Displays
Penulis

Gorgeous solution! Thank you so much!

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
how many reated records ?
relationship
Avatar
0
Okt 23
1831
Studio - Dropbox with relation to list of Manufacturing Orders detail? (odoo.sh v13) Diselesaikan
relationship
Avatar
1
Feb 20
2851
string indices must be integers , many2one
relationship
Avatar
Avatar
Avatar
Avatar
Avatar
4
Mar 15
8255
Select field to show relation
relationship
Avatar
Avatar
1
Mar 15
4890
Contacts relationship
relationship contacts
Avatar
Avatar
Avatar
2
Sep 25
1199
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