Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Real Estate
    • Real Estate Agency
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consulting
    • Accounting Firm
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Solar Energy Systems
    • Shoe Maker
    • Serveis de neteja
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

URL of user image on the Web Site ODOO

Subscriure's

Get notified when there's activity on this post

This question has been flagged
imageuploadwebsite_builder
1 Respondre
17606 Vistes
Avatar
Cloud Engineering SAS

Hello Folks


After uploading an image on ODOO site and display it on the webpage

We have an image location like this


https://www.domain_name/web/image/565


the only difference with another uploaded image is the ID number


Where does ODOO store that image ?


in the server  file system ? where ?

in the PostgreSQL database ?


I've used find to search elsewhere on the entire server whithout success

may be it's an hidden directory ?


the problem is thant when I restore my database from one server to another

The images of website are not available

I think I need to restore in the same way the  image folder, but from where ?


where am I wrong ?


thank you for your help

0
Avatar
Descartar
Avatar
Jainesh Shah(Aktiv Software)
Best Answer

Hello,

Template to attach image file in your website form should contain following code:

 <form action="/save/my/profile" method="post" enctype="multipart/form-data">

  <input class="form-control" id="profile_image" type="file" name="profile_image" accept=".jpeg,.jpg,.png,"/>
 </form>

 Python code to save submitted image to res.partner:

 @http.route('/save/my/profile', type='http', auth="public", website=True)

    def save_image(self, **kw):
     datas = kw.get('profile_image').stream.getvalue()
     # store image in base64 format to image field of partner
     partner.sudo().write({'image': base64.encodestring(datas)})

Note: binary field for image should be defined with attachment=True

This image file will be stored inside the ir.attachment model (ir_attachment table).This table contains following values to establish the link to the original record:

    name: name of the binary field, e.g. image

    res_field: name of the binary field, e.g. image

    res_model: model containing the field, e.g. res.partner

    res_id: ID of the record the binary field belongs to

    type: 'binary'

    datas: virtual field with the contents of the binary field, which is actually stored on disk

Hope this will help you!

Thanks,

0
Avatar
Descartar
Kamrul Hasan (KH)

This error message show:

AttributeError: 'SpooledTemporaryFile' object has no attribute 'getvalue'

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
Product image import Solved
image upload
Avatar
Avatar
Avatar
Avatar
3
d’ag. 25
2310
How to fix error when saving image to Odoo 16
image upload
Avatar
Avatar
1
de febr. 23
5236
Uploading products with images with URL through Excel file
image upload
Avatar
Avatar
Avatar
3
de nov. 22
4960
how can i make my image active and lead to another link
image block website_builder
Avatar
Avatar
Avatar
2
de juny 25
6916
How to do a scrolling image in website builder
image website_builder scroll
Avatar
0
d’oct. 24
3041
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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