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

Hi, I've been doing almost all my reports on webkit, because are easier to do. Any way, I was wondering how could I put a background image for the report, or for a group of reports.

I know a little of CSS and HTML, enough to make a reports on webkit. But im triubuling with this because i dont know where I should put my image, on the header/footer area of webkit, or directly on CSS.

Hope someone has been on my same problem and fix it. Any way thanks in advance...

形象
丢弃
最佳答案

I did that and it worked beautifully: I scanned a paper form into a png, placed it's in my Webkit report as a backgroud image, using base64, and then used CSS to place the OpenERP data fields on the right places:

This is the HTML head I used:

<head>
    <style type="text/css">
        ${css}
    </style>
    <style type="text/css"><!--
    .table1 { 
        width: 180mm;
        height: 255mm;
        font-size:10;
        background-image: url(data:image/png;base64,{{image base64 goes here}};
        background-repeat: no-repeat; 
        background-size: 100%;
        background-origin: border-box;

    }--></style>
</head>
形象
丢弃
相关帖文 回复 查看 活动
2
3月 15
6426
2
3月 15
6057
3
3月 15
7277
4
3月 15
12853
1
3月 15
5924