Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
6 Replies
25817 Tampilan

For example, when I click print on a sales quotation it downloads the pdf as a file. I would like it to open the PDF in a new tab in the web browser using a PDF web viewer plugin. This is the same action that happens when you click on a hyperlink in a webpage that points directly to a PDF file.

The reason for this is that I need to save the PDFs in a certain location with a certain name. Right now I have 50 Quotation_Order PDFs in my downloads folder.

Avatar
Buang
Jawaban Terbai

hello, you can do it with this module,

[Openerp Web PDF Report Preview & Print] https://github.com/buke/openerp-web-pdf-preview-print.git

Avatar
Buang

Does it work in ubuntu or it works in windows only?

This doesn't work with chrome in ubuntu..It throws an error get_title not defined..

not working on the version 11.0

Jawaban Terbai

I tried it with Google Chrome that natively deal with it and even try adding a dedicated module with no psitive result. It keeps asking to download the .pdf file. Why preview isn't natively included in OpenERP ? It seems to be a basical user need.

Avatar
Buang
Jawaban Terbai

I tried it with Google Chrome on MacOS that natively deals with it and even try adding a dedicated module with no positive result. It keeps asking to download the .pdf file.

But Haylahi's option worked like a charm and I can now preview Openerp pdfs in my browser.

Why PDF and other file preview isn't natively included in OpenERP ? It seems to be a basical user need.

Avatar
Buang
Jawaban Terbai

Another thought: give some naming to the PDF-files you want to save, so you can see the difference between them.

Settings -> Actions -> Reports

Click on report you want to change the default name of

in the field behind 'Save as Attachment Prefix' you can specify the name. You can use python code to specify the name. My situation:

((object.name or '!NoName')+('_')+time.strftime('%Y-%m-%d-%H-%M').replace('-','')+'.pdf')

This will use the name of the object, an _ and than the year (not century), month, day, hour and minute of the moment you pressed the print button for this object.

Avatar
Buang

This will not work with jasper reports, only rml reports..

Jawaban Terbai

I beleive this is possible with correct browser/pdf plugin settings and it has nothing to do with OpenERP

Avatar
Buang

can you show us which browser and how, (I could not managed to do that)

Hey Tim, I believe that this answer is incorrect. Browser will open any .pdf in browser EXCEPT in Odoo. It appears Odoo MIME is not set correctly for viewing.

Jawaban Terbai

Firefox browser can preview the pdf with option to print or save

Avatar
Buang