Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
14470 Lượt xem

Hello I need change the orientation of the report on qweb-pdf. I am following the documentation making a record, but I don't understand why is this ignored. Here is the XML

     <report
        id="report_asiento_contable"
        model="account.move"
        string="Asiento contable"
        name="velfasa.report_asiento_contable_view"
        file="velfasa.report_asiento_contable"
        report_type="qweb-pdf" />
    <template id="report_asiento_contable_view">
        <xpath expr="//style" position="after">
            <style type="text/css" >
                .tabla {
                    cellpadding: 10;
                    border: 1px solid black;
                }
            </style>
        </xpath>
        <t t-call="report.html_container">
            <record id="paperformat_asiento_contable" model="report_asiento_contable.paperformat">
                    <field name="name" >Asiento contable</field>
                   <field name="orientation" >Landscape</field>
            </record>

       </t>

  </template

Ảnh đại diện
Huỷ bỏ

Thanks, this is the solution.

Câu trả lời hay nhất

Try this:

<report
        id="report_asiento_contable"
        model="account.move"
        string="Asiento contable"
        name="velfasa.report_asiento_contable_view"
        file="velfasa.report_asiento_contable"
        report_type="qweb-pdf" />
        
<template id="report_asiento_contable_view">
        <xpath expr="//style" position="after">
            <style type="text/css" >
                .tabla {
                    cellpadding: 10;
                    border: 1px solid black;
                }
            </style>
        </xpath>
</template>

<record id="paperformat_asiento_contable" model="report.paperformat">
       <field name="name">Asiento contable</field>
       <field name="orientation">Landscape</field>
</record>

<record id="report_asiento_contable" model="ir.actions.report.xml">
    <field name="paperformat_id" ref="paperformat_asiento_contable"/>
</record>   

 

probably you also need: <template id="report_asiento_contable_view" inherit_id="report.XXXXXXXX">

hope this help.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 12 15
4423
3
thg 3 15
18019
0
thg 3 15
3525
Inherit Qweb Đã xử lý
4
thg 2 24
48426
11
thg 4 23
93074