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

In Odoo v8 I have created a custom template for invoices.

I would like to replace the standard header with a custom one, i.e. replace <t-call="report.external_layout">; with <t t-call="cool_header">

Instead of using the header directly into the new invoice template I would like to put in separate view as it could be reused.

Should a new view be created? If so which key paremeters should be used? (view type, child field, etc.)

Thanks,

形象
丢弃
最佳答案

Hello,

For account report code in your xml file :

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<template id="account.report_invoice_document">
Your Account Report
</template>
</data>
</openerp>

For Header Footer you have to do like this :

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<template id="account.report_invoice_document">
<t t-foreach="docs" t-as="o">
<t t-call="module_name.extend_layout">
Your Report
</t>
</t>
</template>
</data>
</openerp>

Now, Code for Custom Header and Footer :

 <template id="extend_layout">
<t t-if="o and 'company_id' in o">
<t t-set="company" t-value="o.company_id"></t>
</t>
<t t-if="not o or not 'company_id' in o">
<t t-set="company" t-value="res_company"></t>
</t>
<t t-call="module_name.report_header" />
<t t-raw="0" />
<t t-call="module_name.report_footer" />
</template>

<template id="report_header">
<div class="header">
Your Report Header
</div>
</template>

<template id="report_footer">
<div class="footer">
Your Report Footer
</div>
</template>

Hope this will help you..!!
Thank you !

形象
丢弃
编写者

Thanks Parikshit, if I understood your answer right, you suggest to create a custom module with a xml file with the definitions to create both footer and header. I am fine with creating the templates through the GUI, but then I don't know how can I refer to them in my custom template report.

this line consider your header footer and call your custom header and footer.."module_name.extend_layout" and extend_layout is id of template as shown in 3rd part . thanks !!

相关帖文 回复 查看 活动
0
7月 20
4290
3
11月 15
5218
2
2月 24
2175
1
10月 15
5305
1
5月 24
1554