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

How to use <span t-esc=""> into xpath?

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
inheritxpathspan
2 Replies
9436 Tampilan
Avatar
Chints

I have span tag which contain a method define in parser now I want to add additional parameter and used in inherit xml template How can I so existing methods get replaced with new, Below is my xml code for main model:

<?xml version="1.0" encoding="UTF-8" ?>

<odoo>
<template id="report_team_wizard_multi">
<t t-call="web.html_container">
<t t-call="web.external_layout">
<center>
<h3>Pay Slip</h3>
</center>
<t t-foreach="docs" t-as="emp">
<strong>Date:</strong>
<sapn t-esc="data['form']['date']"/> <!--fields used from wizard must be like this-->
<br/>
<strong class="text-uppercase">Name:</strong>
<span t-field="emp.name"/>
<br/>
<strong class="text-uppercase">Email:</strong>
<span t-field="emp.email"/>
<br/>
<strong class="text-uppercase">Department:</strong>
<span t-field="emp.comp_name"/>
<br/>
<strong class="text-uppercase">Contact Number:</strong>
<span t-field="emp.phone"/> <!--TODO 8.8 print information from model-->
<br/>
<strong class="text-uppercase">Reporting To:</strong>
<span t-field="emp.parent_id"/>
<br/>
<br/>
<table width="100%" class="table-primary">
<thead>
<th>Month</th>
<th>Basic</th>
<th>Allowance</th>
<th>Deduction</th>
</thead>
<t t-foreach="emp.salary_ids" t-as="sal">
<tr>
<td>
<span t-field="sal.month"/>
</td>
<td>
<span t-field="sal.basic"/>
</td>
<td class="text-success">
<span t-field="sal.allowance"/>
</td>
<td class="text-danger">
<span t-field="sal.deduction"/>
</td>
</tr>
</t>
</table>
<br/>
<br/>
<td>
<b>Total Gross:</b>
</td>
<span t-esc="get_total_gross(emp.salary_ids)"/>
<br/>
<td>
<b>House Rent Allowance:</b>
</td>
<span t-esc="data['form']['house_rent_allowance']"/> <!--TODO 8.8 wizard's field-->
<br/>
<td>
<b>CTC:</b>
</td>
<span t-esc="get_ctc(emp.salary_ids, data['form']['house_rent_allowance'])"/>
<br/>
<br/>
<br/>
<br/>
<b>
<h3>
<span t-esc="sign"/>
</h3>
</b>
<br/>
<br/>
<center>
<h8>
<b>NOTE:</b>
Benefit for all employee will be 10000, Total Gross + Benefits + House Rent Allowance = CTC
</h8>
</center>
</t>
</t>
</t>
</template>
</odoo>

And Here my inherit xml:


<?xml version="1.0" encoding="UTF-8" ?>

<!-- TODO: 8.18 -->
<odoo>
<template id="report_team_wizard_multi_inherit" inherit_id="workshop_aftersales.report_team_wizard_multi">
<xpath expr="//span[@t-field='emp.parent_id']" position="after">
<br/>
<br/>
<strong>Medical Insurance:</strong>
<span t-esc="data['form']['med_insure']"/>
</xpath>

<xpath expr="//span[@t-esc='get_ctc(emp.salary_ids, data['form']['house_rent_allowance'])']" position="replace">
<!-- <xpath expr="//a[@name='ctc']" position="before">-->
<span t-esc="get_ctc(emp.salary_ids, data['form']['house_rent_allowance'], data['form']['med_insure'])"/>
</xpath>

</template>
</odoo>

This gave me error, lxml.etree.XPathSyntaxError: Invalid predicate

Thank you.

0
Avatar
Buang
Avatar
Jérémy Kersten (jke)
Jawaban Terbai

The error message is because this xpath is wrong:

//span[@t-esc='get_ctc(emp.salary_ids, data['form']['house_rent_allowance'])'

you have ' in ', nothing related with

 <span t-esc/>
0
Avatar
Buang
Avatar
Chints
Penulis Jawaban Terbai

Hey there, thanks but I've figured it out. Thanks anyway!!

-1
Avatar
Buang
Gabin

Hey, i have a similary error, hat solution did you find ?

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
Is it possible to use xpath in a qweb template WITHOUT to inherit an other template? Diselesaikan
inherit xpath
Avatar
Avatar
1
Sep 15
5653
odoo 15 to odoo 16 error while upgrading the app
inherit xpath odoo
Avatar
Avatar
Avatar
2
Mar 24
2537
Problem XML View Architecture
view inherit xpath
Avatar
Avatar
Avatar
3
Mar 15
7743
How to modify child_ids form fields by inheriting contact page
views inherit xpath
Avatar
1
Mar 15
6151
[SOLVED] customisasi/inherit xpath widget hr_leave_stats in hr.holidays (Time Off)
holidays inherit xpath timeoff
Avatar
Avatar
1
Mei 24
2748
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