Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
5491 มุมมอง

Hello I want to put a variable between <style> sentence on qweb reports

I already setting the variable on model and views, the variable will set the color for a table style, I tried with this sentence, but doesn't work:

<style type="text/css">
.title{
color:#<span t-esc="o.company_id.cr_invoice_color"/>;
font-size:24px;

</code>

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

to achieve this goal, you should have to load Style in template (e.g. frontend/backend assets)

In that, you can do like:

<t t-set="invoice_color" t-value="o.company_id.cr_invoice_color"/>

<style type="text/css">
.title{
color: #<t t-esc="invoice_color"/>;
}
</style>

I hope it will work for you.


Thanks and regards

Haresh Kansara

อวตาร
ละทิ้ง