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

Why XML in odoo ?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
actionxmlodoo
3 Replies
2210 Tampilan
Avatar
yahya sbini

I have an issue with understanding the core use of xml in odoo !

for example ,If i want to cerate an window action I can do that in 2 ways:

  1. xml code
  2. directly through UI 

but the difficult questions: 

does doing that in the UI also generate an XML file and why?

for the option 1 ,if doing that using XML will in the end insert a new record in DB ,what is the need of writing the xml code ,I cannot get the idea of using XML ,I am too much confused since data are stored in DB.

0
Avatar
Buang
Avatar
Andry Ang
Jawaban Terbai

Hi Yahya,

First, let's differentiate XML File and XML Code (I am not sure if it's should be called as code or just the way to define).

  1. XML File is file that consists XML "code", just like json file
  2. XML "Code" is define and store data in a shareable manner (Just like how JSON object also do)

Yes, changing UI will also update the Architecture that is written in XML form (form not file)

Let me share my thoughts on this. It will be best if you are familiar with "Factory and Seeding" or Creating Initial Data by Code if you used ORM before.

Example:
How do we add the very first user account? do we technically do an insert query to db? of course we can. But what if we can set it without access directly to db - as it might be concerning to access directly. Of course after you have the user let's say the "Administrator", if you want to change the access will it be easier for you to change it through UI that will update the DB or you prefer to update your xml file to update your code, commit, push, pull, restart your server, upgrade your module.

In short this is how you can think about it:

Uploading XML file that has the XML code > create data in db with the xml code as the architecture > you can edit the architecture (which written in XML format) from the UI on the db - more convenient this way.

Key note: XML file sets the initial data by the data that formatted in XML form written in it, DB plays for the changes in future.

Hope this helps.

0
Avatar
Buang
yahya sbini
Penulis

Thanks Andry ,but I think most of MVC frameworks do not use XML like Laravel ......etc ,why odoo user xml . we can handle the data and insert also in the HTML ?

yahya sbini
Penulis

moreover ,how can I display content for by XML ,it is not HTML . so how does browser knows the for example
<field> tag should represents as a gray rectangle for example.

yahya sbini
Penulis

look at this XML code I ,I do not know how it will be rendered in the browser since it is not an HTML code but I think it will be translated via something ,additionally this code is four 2 things UI display and for sending the record to DB ?

<record id="window_action_hospital_patient" model="ir.actions.act_window">
<field name = "name">Patient</field>
<field name="res_model">Hospitaal<field>
<field name="view_mode">tree,form</field>
<field name="help" type="html">
<p class="o_view_noncontent_smiling_face">
Create a new inconterm
</p>
</field>
</record>

yahya sbini
Penulis

also I think there is a mapping between view code and XML code so :
data will flow: UI -> view code -> XML -> DB ,is that correct ?

Andry Ang

Hi Yahya,
1. XML is only a way of formatting data.
2. XML is not HTML, browser use HTML to render UI
3. In Odoo, there is explanation on why they use XML, check https://www.odoo.com/documentation/18.0/developer/reference/backend/data.html

Andry Ang

Remember, browser always use HTML.
XML in Odoo which stored in db will be translated by QWeb Template engine to HTML

Avatar
Ray Carnes (ray)
Jawaban Terbai

XML is used to create database records. (1)

You can create database records within the database. (2)

Creating a database record (2) does not create an XML file.

XML is just one way Odoo creates database records from files during the installation of a module. The other main way is via CSV files.

0
Avatar
Buang
yahya sbini
Penulis

Thanks Ray ,If i have for imagination some UI not related to the DB or inserting just for showing some info ,in this situation why to use XML ?

Avatar
Apiuser
Jawaban Terbai

I guess it is because you can make them persistent using xml, because they will be added in your module and not only at the db. Take for example if we update the mail module and we added the custom templates using the UI you will overwrite the modifications unless you marked it as noupdate.

That is appart of the ease of installing a module and adding new templates or views on the fly without using the UI.

0
Avatar
Buang
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 CAN I GET CURRENT COMPANY ID IN CONTEXT OF ACTION USING JUST XML
action xml context odoo
Avatar
Avatar
1
Jul 24
2630
Problemas al imprimir factura en el odoo
xml odoo
Avatar
0
Jan 25
1934
How to post xml code
xml odoo
Avatar
1
Mar 25
652
How can I include my generic qweb view on my Odoo 16 Form View using JS or Controller
xml odoo
Avatar
Avatar
1
Sep 23
3468
How can i call a specific module view when i log ? am using Odoo studio
action odoo
Avatar
0
Des 22
2515
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