تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3 الردود
10397 أدوات العرض

In Odoo 9C:

I would like to understand, how to add an custom fonts to the Qweb Reports.

Am aware that this question has already been raised in the forum, However I was unable to get good picture out of it, hence seeking for a vital solution.

So appreciate if somebody can educate me about this or share any documentation if exists, which would help me to understand better and sail through it.

Any help appreciated.


P.S.

@Yenthe, Your question closely matches with mine, would you mind sharing your knowledge.

Thanks.

الصورة الرمزية
إهمال
أفضل إجابة

Inside my stylesheet I added something like this.

<style type="text/css">

<![CDATA[

/* Arial Narrow */

@font-face {

font-family: 'Arial Narrow';

font-style: normal;

src:url('/test_module/static/src/fonts/arial-narrow.woff') format('woff'),

url('/test_module/static/src/fonts/arial-narrow_d.ttf') format('truetype');

}

]]>

</style>

الصورة الرمزية
إهمال
الكاتب

Hi I tried this but its not working for me. then I tried a simple one like

<style type="text/css">

.th{

background-color: blue;

}

</style>

Just trying add background color to the table header, no luck. Thanks

الكاتب

Well finally made it working, However I would like to know from where can I get the URL for the font? Am looking for font Calibri

أفضل إجابة

hello deep,

please try to check this code,


create a css file in your module like as

module/static/src/css/file.css

.row {

font-family: 'Arial Narrow';

font-style: normal;

background-color: white;

}


specified css file name in your openerp file,

'css': ['static/src/css/your_file.css'],


after specify openerp file you can apply below this link in your report file

example name as report_file.xml,

<div class="page">

<link rel="stylesheet" href="/college/static/src/css/file.css"/>

</div>

الصورة الرمزية
إهمال
الكاتب

Hi, I tries this.. no luck.. Thanks

upload your error code

I tried above code its work for me

المنشورات ذات الصلة الردود أدوات العرض النشاط
1
يوليو 19
6082
3
ديسمبر 16
5579
0
يناير 24
1517
0
يناير 24
1215
0
سبتمبر 23
1851