콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
4 답글
17062 화면

I want to add company logo and address to the financial reports like profit & loss, balance sheet, etc

Where should i add the logo code so that it'll reflect in every report?

아바타
취소
작성자 베스트 답변

I have added the logo and address in report_financial.xml under the account_reports module as below

<template id="main_template">
<div class='o_account_reports_body'>
<div class="container o_account_reports_page o_account_reports_no_print">
<div>
<img src='/web/binary/company_logo' class="float-right" style="max-height: 65px; margin-top:20px;"
alt="Logo"/>
<span t-field="res_company.partner_id"
t-options='{"widget": "contact", "fields": ["address", "name"], "no_marker": true}'/>
</div>
<hr></hr>
.....
.....
</div>
</div>
</template>

Thanks to Niyas Raphy for the answer ( https://www.odoo.com/forum/help-1/question/how-to-get-company-name-in-qweb-report-76684 ).

아바타
취소

Great! So main_template helped you.

작성자

Yes Sudhir, it did :) Thanks though

This was really nice. I manged to put logo in partner ledger using the above code. thnks

베스트 답변

Hi Sameer,

You can find these reports in "account_reports" module. But there is no such internal layout in the module. 

The report is made up of web XML and the JS. 

I am not sure but check the template "main_template" in the "views/report_financial.xml" file and work around on this if you can pass the company image from the "account_report.py" file "get_html" method.

It is not that simple like qweb report. You need to do some R&D and work around to make it work.

아바타
취소
작성자

Thanks for the input and yeah there's no layout in v12 so it shouldn't be as easy as it was done in v11. Will update if anything works out :)

베스트 답변

Hi,

What you can do is that change the internal_layout to external layout in the report. Once you change the report to to external_layout you will get the logo in header of the report.


For this activate the developer mode and navigate to Settings -> Technical -> Reporting -> Reports and search Financial Report. Then open the report and click the Qweb Views smart button in the top right and open that record. In the opening record in the Architecture tab you can see the code, in it 4th or 5th line you can see code like this,


<t t-call="web.internal_layout">


change this line to <t t-call="web.external_layout">



Thanks

아바타
취소
작성자

Hi Niyas,

I can neither seem to find "Financial Report" under the Reporting -> Report menu nor the Actions -> Reports menu.

Which version you are using ? My explanation is based on odoo11

작성자

I'm using v12, any idea on where to find it in odoo 12 ? It would be even more beneficial if you told me how and where to change it using code so that we wouldn't have to worry about versions.

By default in odoo12 CE, accounting reports are not there, are you using third party modules or enterprise edition ?

작성자

Enterprise edition

작성자

where can i find these reports in code though? so i can modify it from there.

You will find these reports in "account_reports" module.

작성자

Hi Sudhir, I've looked it under account_reports/views/report_financial.xml but couldn't find any internal layout.

작성자

There is no external or internal layout defined whatsoever in version 12 so i don't think adding a logo to the report should be as easy as it was done in version 11.

Why negative vote ? Initially you haven't mentioned the version....

작성자

That wasn't me and if it makes you feel any better let me make it zero by up voting. Also FYI, I had the tag of odoov12 attached to the question right from the beginning.

didnt noticed the tag, thats why provided the solution in v11, as the accounting reports are not there in v12, assumed you might be v11, anyway happy to see you got solution

작성자

Your answer did provide me some insight and you answered fast so +1 for that and Keep up the good work Niyas :) Thanks again for the answer :D

It works. Thanks

베스트 답변
in 16 devmode->technical -->views-->find main_template ,, 
it will be account_reports.main_template
in that after warnings_div
  


아바타
취소
관련 게시물 답글 화면 활동
0
7월 24
1588
1
3월 19
7726
1
3월 15
5021
0
7월 22
3614
4
6월 20
4261