unable to use company fields in template xml ${res.company.name} not working showing as it as text
<?xml version="1.0" encoding="utf-8" ?>
<openerp>
<template id="index" inherit_id="point_of_sale.index">
<xpath expr="//title" position="replace">
<title>${res.company.name}</title>
</xpath>
</template>
</openerp>
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
4
الردود
4022
أدوات العرض
Try this:
<xpath expr="//title" position="replace">
<title><t t-esc="res_company.name"/></title>
<xpath>
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
2
سبتمبر 24
|
1259 | ||
|
0
أكتوبر 20
|
2386 | ||
|
1
أبريل 20
|
3063 | ||
|
0
يونيو 15
|
3927 | ||
|
1
يوليو 24
|
968 |
thanx and what for if i want to shot a new field created in res.company like 'res.company.pTitle'
What have you tried? It is res_company, not res.company.
yes done thanx one more help if you can will be very thankful to you
i want to show image from model res.company.plogo which is binary custom field
how can we do that like scr="res.company.plogo" or any other solution to get image from model res.company.plogo and show here down
<?xml version="1.0" encoding="UTF-8" ?>
<templates id="template" xml:space="preserve">
<t t-extend="Chrome">
<t t-jquery=".pos-logo" t-operation="replace">
<img src="" style="padding: 5px; margin: 0px; height: 40px; width: 100px;" />
</t>
</t>
</templates>