Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

How to check is a field image is empty and set a default image?

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
imagesodoo12.0
2 Replies
14796 Rodiniai
Portretas
Paulo Matos

Hi everyone,

I have a field of type image in Odoo 12, declared as:

image = fields.Binary("Image", attachment=True,)

On the form view I added the code for the user to choose an image.

What I need to do is, on both create and write methods, check if there is an image attached to the field and if not, set a default image to that field.

What I have tried (for write method as an example):

@api.model
def write(self, vals, context=None
        if not vals.get(self.image, False):
        get_image = "/mymodule/static/img/noimage.jpg"
        vals['image'] = get_image
return super(mymodule_model, self).write(vals)

Using this code i get the error: AttributeError: 'list' object has no attribute 'get'

also tried..

    @api.model
    def write(self, vals, contect=None):
        if (self.image == False):
            get_imae = "/mymodule/static/img/noimage.jpg"
            vals['image'] = get_image
     return super(mymodule_model, self).write(vals)

...and does not work either!

How can I test if the image field is empty and if so, have Odoo to save a default image to the database.

Thank you in advance

Regards

0
Portretas
Atmesti
Portretas
Mitul Shingala
Best Answer

Hello 

try with below code, this will helps you.

from odoo import api, fields, models,  tools
from odoo.modules import get_module_resource
import base64

class your_class(models.Model):
_name = 'your.class'
   
@api.model
    def _get_default_image_value(self):
        image = False
        img_path = get_module_resource('your_modulename', 'static/img', 'avatar.png') # your default image path
        if img_path:
            with open(img_path, 'rb') as f: # read the image from the path
                image = f.read()
        if image: # if the file type is .jpg then you don't need this whole if condition.
            image = tools.image_colorize(image)
        return tools.image_resize_image_big(base64.b64encode(image))
   
@api.model
    def create(self, vals):
        if not vals.get('image'):
            vals['image'] = self._get_default_image_value()
        return super(your_class, self).create(vals)
   
@api.multi
    def write(self, vals):
        res = super(your_class, self).write(vals)
        if not self.image:
            self.image = self._get_default_image_value()
        return res

2
Portretas
Atmesti
Paulo Matos
Autorius

Thank you @Mitul

I had to remove the line "image = tools.image_colorize(image)". Using this line, Odoo generates an error: on the "image = tools.image_colorize(image)". The error is: "ValueError: bad transparency mask".

I think it's related to the fact that I am using a .jpg and not a .png image file.

Can you please comment your code on "_get_default_image_value" so I can understand what exactly it does?

Thank you in advance. +1 for you.

Mitul Shingala

i have update my answer.

Paulo Matos
Autorius

Great @Mitul. Thank you once again

Portretas
Pablo Guerra
Best Answer

check this code

if not vals.get('image', False):

or

if self.image == False:


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

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

Registracija
Related Posts Replies Rodiniai Veikla
Expected singleton: hr.emp.travel.location(62, 63)
odoo12.0
Portretas
Portretas
Portretas
2
spal. 25
2038
Suggestion for image management for the website, mailings...
images
Portretas
0
birž. 25
3449
How to write Record Rule with domain based on the company_dependent Fields Solved
odoo12.0
Portretas
Portretas
Portretas
3
spal. 23
10855
loan request
odoo12.0
Portretas
Portretas
1
rugs. 23
4053
sum Colum of based on id
odoo12.0
Portretas
Portretas
1
geg. 23
3037
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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