跳至内容
菜单
此问题已终结
1 回复
15776 查看

I have a qweb report which requires a color box to be printed. The color needs to be dynamic or saved in database per record or sales order.


Below is my part of code:

<style type="text/css">

* {-webkit-print-color-adjust:exact;}
 
.order_color {
        background-color: <t t-esc="o.color_code"/> !important;
        -webkit-print-color-adjust: exact;
 }

@media print {
    .order_color {
        background-color: <t t-esc="o.color_code"/>;
        -webkit-print-color-adjust: exact;
        }
    }

 </style>


<div class="col-xs-12 order_color" style='height:40px;width:200px;'></div>

When I preview in "qweb-html" it does show the colored background. But when I print with "qweb-pdf" no background pdf.


I tried alternative as below, but still not printing background:

<div class="col-xs-12 order_color" style='height:40px;width:200px;&lt; t-esc="o.color_code"/&gt;'></div>

When I manually put background color as below then the PDF and HTML are fine.

<div class="col-xs-12 order_color" style='height:40px;width:200px;background-color:#00FFF;'></div>

But I wanted the background color to be dynamic per order, for example, I have at least 12 different color varieties I wanted to display on iteration in orders.


My OS is 8.6 debian. with wkhtmltopdf 0.12.2.1 (with patched qt), and odoo 8.


I suspect the problem is within wkhtmltopdf. 



Any help much appreciated. Thanks.



形象
丢弃

How did You solve this ?

最佳答案

@ V10 Odoo Community : Dynamic set background color in  qweb report 

  • Exmaple

                        primary_color : Char Field 

  • view Xml :

                      <field name="primary_color"   widget="color"/> 

  •  For Widget="Color"   You Should install web_widget_color module 

  • site: https://apps.odoo.com/apps/modules/8.0/web_widget_color/

  • Report Template View

                  <td t-attf-style="background-color:{{data['primary_color']}}!important; ">

  • Also Refer: https://www.odoo.com/apps/modules/10.0/professional_reports_itmcs/


形象
丢弃
相关帖文 回复 查看 活动
2
7月 15
3727
0
6月 21
3088
0
11月 19
3169
0
4月 24
1840
0
1月 24
1584