Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How to display in Odoo 9 a pdf already stored in ir.attachment DB model?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
pdfdisplayir.attachment
2 Răspunsuri
8160 Vizualizări
Imagine profil
Javier

Hello all,


I have a PDF file stored in table ir.attachment which looks like this in table's sql query:

"id";"create_date";"write_date";"res_model";"write_uid";"res_name";"db_datas";"file_size";"create_uid";"company_id";"index_content";"type";"public";"store_fname";"description";"res_field";"mimetype";"name";"url";"res_id";"checksum";"datas_fname"



575;"2015-12-07 17:56:51.769814";"2015-12-07 17:56:51.769814";"purchase.order";1;"PO00008...";"";25095;1;1;"(u'application',)";"binary";f;"89/8954bbeec7fda48248aa40600162dbb43adac851";"";"";"application/pdf";"salida.pdf";"";8;"8954bbeec7fda48248aa40600162dbb43adac851";"salida.pdf"



I am looking for a way to display it (ie. in a new window) when the user clicks on a button in a screen.  For that i did the following:

1. I extended purchase.order model and added do_print_stored_po as shown below:

# -*- coding: utf-8 -*-

from openerp import models, fields, api

class TodoTask(models.Model):

_inherit = 'purchase.order'

@api.one

def do_print_stored_po(self):

my_PO = self.env['ir.attachment'].search([('datas_fname', 'like', 'salida.pdf')])

return {

"type": "ir.actions.client",

"Content-Type: application/pdf\n": my_PO.db_datas

}



2. I inherited also  from purchase.purchase_order_form in the following way:

<openerp>

<data>

<record id="Purchase_Order_Extended" model="ir.ui.view">

<field name="name">Purchase Order - User extension</field>

<field name="model">purchase.order</field>

<field name="inherit_id" ref="purchase.purchase_order_form"/>

<field name="arch" type="xml">

<field name="date_order" position="after">

<button name="do_print_stored_po" type="object" string="Print stored PO" class="oe_highlight" />

</field>

</field>

</record>

</data>

</openerp>

<openerp>

<data>

<record id="Purchase_Order_Extended" model="ir.ui.view">

<field name="name">Purchase Order - User extension</field>

<field name="model">purchase.order</field>

<field name="inherit_id" ref="purchase.purchase_order_form"/>

<field name="arch" type="xml">

<field name="date_order" position="after">

<button name="do_print_stored_po" type="object" string="Print stored PO" class="oe_highlight" />

</field>

</field>

</record>

</data>

</openerp>


When app executed, it does not appear any kind of error or warning, however the screen only  trembles, but nothing happens. I expected the PDF contents would be displayed, but it isn't so.


Can anybody provide any guidance on what  should be done in this case?

I am new at developing with Odoo and may be my question is very basic, if so, I apologize in advance.


Thanks.

0
Imagine profil
Abandonează
Yenthe Van Ginneken (Mainframe Monkey)

@Javier, could this be a solution for you? https://www.odoo.com/apps/modules/8.0/attachment_preview/ This shows a small icon next to an attachment and when you click on it it opens a PDF in a new tab with a nice preview.

Imagine profil
Javier
Autor Cel mai bun răspuns

Yenthe, thanks for your reply. I will test it with v9 and come back to comment on results.

I appreciate your help.

 


0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Quote Builder With Custom Rental Report (Studio)
pdf
Imagine profil
0
oct. 25
583
Quote Builder With Custom Rental Report (Studio)
pdf
Imagine profil
0
oct. 25
4
How to edit the header of the quote template Rezolvat
pdf
Imagine profil
Imagine profil
Imagine profil
2
aug. 25
1382
Customize Report problem Rezolvat
pdf
Imagine profil
Imagine profil
Imagine profil
3
aug. 25
1695
How to Edit Out the Blank Space in the Quote/Order Confirmation PDFs? Rezolvat
pdf
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
aug. 25
2817
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now