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

Custom fields get overwritten in order templates

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
templatesordercustomizationOdoo.sh
1 Balas
436 Tampilan
Avatar
Hannes Winkler

I am using Odoo.sh in Version 18.0, I added some custom fields to my sale order view and have them printed in the pdf order. Now I would like to have them included in the order templates to have them precompiled and be able to make just little modifications to it, so I don't have to copy/paste the text all the time. I added the fields to the template view and changed the fields in the order view in a way, that they are dependent on the fields of the template (screenshots below). So far that works good, if I make a template and write stuff in that fields, the text is inserted in the orders, but now my problem: If I make some modification in the order to the text, it overwrites the text in the template as well, so everytime I create a new order, the modificated text will be shown, not the original one from the template. How can I make sure, that if I use the template and make changes to the text, that it only affects this specific order and does not overwrite the template?

Thanks for any help.





0
Avatar
Buang
Avatar
Christoph Farnleitner
Jawaban Terbai

Based on your configuration, this is behaving as intended.

The Related Field Definition (zu deutsch Bezugsfeld) is meant to define a direct 'link' between two fields on different models to have exactly the same value in both (das, was wir gemeinhin als 'durchschleifen' bezeichnen).

What you need is the Compute field (zu deutsch Berechnen), in order to only set the value of x_studio_teil_1 upon selecting/changing a Sale Order Template.

Something like this should do:

for record in self:
    record['x_studio_teil_1'] = record.sale_order_template_id.x_studio_teil_1


For this to work you need to set the Dependencies field (Abhängigkeiten) to 

sale_order_template_id

in order to have Odoo know, under what circumstance to change the value.

Finally, since by default, a field with a compute function is Readonly, you may want to untick that checkbox then (Nur Lesen) so you can also override the value in the Sale Order.


This will, whenever you change the Sale Order Template on a Sale Order, reset the Value to the one from the selected Template.

If you prefer the value to remain the same if set once, change the compute method to something like this:

for record in self:
    record['x_studio_teil_1'] = record.sale_order_template_id.x_studio_teil_1 if not record.x_studio_teil_1 else record.x_studio_teil_1
0
Avatar
Buang
Hannes Winkler
Penulis

Thanks for your help, the first part works fine, it does not even change the text when the template is modified. The second option was not exactly what I wanted, it would not even have changed the text if I would used another template, it would always stay the same. But the first one works, so thanks for that.

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
Customize purchase order
purchase order customization
Avatar
Avatar
1
Mar 15
12249
Odoo Sign Email Template Issue
templates signature customization missing
Avatar
Avatar
1
Okt 22
6354
How can our team "hold" and "release" Delivery Orders based on the Sales Order? Diselesaikan
release delivery order customization 18.0
Avatar
Avatar
1
Mar 25
1413
How to revert customized views and templates on website (Odoo 10) ?
views translations templates customization odoo10
Avatar
Avatar
1
Mar 22
9715
How to Add a User to Access the Database on Odoo.sh?
Odoo.sh
Avatar
Avatar
1
Okt 25
3988
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