Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Using PDF viewer widget without uploading an image

Odebírat

Get notified when there's activity on this post

This question has been flagged
pdfwidgetlinkautomationviewer
1 Odpovědět
6230 Zobrazení
Avatar
Boris

I would like to use the pdf viewer widget. I know that to display the pdf/image you have to have it downloaded to a directory so that you can pull it from there. But I wonder if there is a way to show image without uploading it. Is there is a way to use an image viewer/pdf widget that can accept a link that can be programmed into a database?

0
Avatar
Zrušit
Avatar
shubham shiroya
Nejlepší odpověď

you can try this way:
Create a New Field:
Add a new field to your model that will store the URL of the image or PDF you want to display.
from odoo import fields, models


class MyModel(models.Model):

_name = 'my.model'

_description = 'My Model'


image_url = fields.Char(string="Image URL")


Modify the Form View: In your form view, you can use the widget attribute to display the image or PDF using an external URL
record id="view_my_model_form" model="" rel="ugc">ir.ui.view">

field name="name">my.model.form

field name="model">my.model

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

form>

group>

field name="image_url" widget="image" options="{'preview_image': 'url'}"/>

/group>

/form>

/field>

/record>


  1. In this example, the widget attribute is set to "image" to display an image. The options attribute specifies that the URL should be used as the image source.

  2. Input Image URLs: Now you can input external image URLs directly into the image_url field of your model. This URL can point to an image or a PDF file.


0
Avatar
Zrušit
Boris
Autor

Thank you for this info @ shubham shiroya

I added the field and modified the form view.
When I checked the table in the database, I can see that the new field image_url has been successfully created there.

This is the updated form view:
<record id="vendor_bill_form" model="ir.ui.view">
<field name="name">vendor_bill_form</field>
<field name="model">vendor.bill</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form>
<group>
<field name="image_url" widget="image" options="{'preview_image':
'https://www.usnews.com/media/best-states/overall-rankings-2021.pdf'}"/>
</group>
</form>
</field>
</record>

And this is my new added field in my model:
image_url = fields.Char(string="Image URL")

Just for an example, I inputted that external link shown above.
But when I update the module, that URL is not being displayed. What can I do to fix it?

Boris
Autor

I also tried to apply the options attribute to the pdf widget, instead of image widget:
<group>
<field name="file" class="pdf_viewer" widget="pdf_viewer" options="{'preview_image':
'https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png'}" />
/group>

In this case, when I update the module, if I don't have an image uploaded already, then the pdf file states as missing PDF file:
PDF.js v2.2.228 (build: d7afb74a)
Message: Missing PDF "http://localhost:8069/web/content?model=vendor.bill&field=https%3A%2F%2Fwww.google.com%2Fimages%2Fbranding%2Fgooglelogo%2F1x%2Fgooglelogo_color_272x92dp.png&id=3".

Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Is it possible to change the height of a binary field that uses the pdf_viewer widget? Vyřešeno
pdf widget Community V11 viewer
Avatar
1
čvc 20
6338
pdf_viewer widget error
pdf widget
Avatar
0
zář 24
1855
linking different translations
pdf translations link
Avatar
Avatar
1
srp 20
1634
Odoo 10: widget='pdf_viewer', download option doesn't appear when the field is defined inside notebook.
pdf widget odoo10
Avatar
0
lis 16
7441
How to Display Each Item in List with Custom XML
pdf xml widget foreach
Avatar
1
čvc 20
7031
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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