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
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • 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
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • 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

ValueError: Expected singleton: as.product.brand(9, 10, 8)

Subscriure's

Get notified when there's activity on this post

This question has been flagged
modelswriteMethododoo16features
1 Respondre
2611 Vistes
Avatar
Sean Craig

So there's a Brand thing from our theme which is a model called as.product.brand. It has a Logo field, for, well, logo, and it's a binary field. We are trying to import the logos dynamically. I have prepared the below codes to loop over files and then figure out the Brand of the file and then update it. It works great when we're working with one file. But whenever I try this with multiple files I get this error: ValueError: Expected singleton: as.product.brand(9, 10, 8)​. 9, 10, 8 here are the brand IDs that were found. I am not sure how to resolve this, I am not even sure why its giving this error. I have added the full error and code below.

for ff in os.listdir(d):
​ff_path = d +'/'+ ff
​images =False               
​​with open(ff_path, "rb") as image_file:
​ ​bytes= image_file.read()                   
​ ​images = base64.b64encode(bytes)               
​ ​image_name = os.path.splitext(ff)[0]               
​ ​if(image_name.startswith("Logo")):                       
​ ​ ​prefix ="Logo_"                       
​ ​ ​suffix ="_"  # Assumes there is always an underscore after the prefix                       
​ ​ ​prefix_end = image_name.index(prefix) +len(prefix)                       
​ ​ ​suffix_start = image_name.index(suffix, prefix_end)                       
​ ​ ​image_name = image_name[prefix_end:suffix_start]                       
​ ​ ​domain = self.get_domain(image_name) # Returns [('name','=ilike',name)]         
​ ​ ​brands = brand_pool.search(domain, limit=1) # brand_pool = self.env['as.product.brand']    
​ ​ ​if not brands:           
​ ​ ​ ​note = note +'\n'+str(ff)                       
​ ​ ​​else:                           
​ ​ ​ ​note = note +'\n'+str(brands)                           
​ ​ ​ ​for brand in brands:                               
​ ​ ​ ​ ​brand.logo = images

Error Message:

Traceback (most recent call last):
  File "C:\Program Files\Odoo\server\odoo\models.py", line 5108, in ensure_one
    _id, = self._ids
ValueError: too many values to unpack (expected 1)

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Program Files\Odoo\server\odoo\http.py", line 1584, in _serve_db
    return service_model.retrying(self._serve_ir_http, self.env)
  File "C:\Program Files\Odoo\server\odoo\service\model.py", line 134, in retrying
    result = func()
  File "C:\Program Files\Odoo\server\odoo\http.py", line 1613, in _serve_ir_http
    response = self.dispatcher.dispatch(rule.endpoint, args)
  File "C:\Program Files\Odoo\server\odoo\http.py", line 1810, in dispatch
    result = self.request.registry['ir.http']._dispatch(endpoint)
  File "C:\Program Files\Odoo\server\odoo\addons\website\models\ir_http.py", line 235, in _dispatch
    response = super()._dispatch(endpoint)
  File "C:\Program Files\Odoo\server\odoo\addons\base\models\ir_http.py", line 149, in _dispatch
    result = endpoint(**request.params)
  File "C:\Program Files\Odoo\server\odoo\http.py", line 699, in route_wrapper
    result = endpoint(self, *args, **params_ok)
  File "C:\Program Files\Odoo\server\odoo\addons\web\controllers\dataset.py", line 46, in call_button
    action = self._call_kw(model, method, args, kwargs)
  File "C:\Program Files\Odoo\server\odoo\addons\web\controllers\dataset.py", line 33, in _call_kw
    return call_kw(request.env[model], method, args, kwargs)
  File "C:\Program Files\Odoo\server\odoo\api.py", line 462, in call_kw
    model.env.flush_all()
  File "C:\Program Files\Odoo\server\odoo\api.py", line 732, in flush_all
    self._recompute_all()
  File "C:\Program Files\Odoo\server\odoo\api.py", line 728, in _recompute_all
    self[field.model_name]._recompute_field(field)
  File "C:\Program Files\Odoo\server\odoo\models.py", line 6152, in _recompute_field
    field.recompute(records)
  File "C:\Program Files\Odoo\server\odoo\fields.py", line 1325, in recompute
    self.compute_value(recs)
  File "C:\Program Files\Odoo\server\odoo\fields.py", line 1347, in compute_value
    records._compute_field_value(self)
  File "C:\Program Files\Odoo\server\odoo\models.py", line 4186, in _compute_field_value
    getattr(self, field.compute)()
  File "c:\program files\odoo\server\addons\atharva_theme_base\models\brands.py", line 26, in _get_logo
    self.image_1920 = self.logo
  File "C:\Program Files\Odoo\server\odoo\fields.py", line 1132, in __get__
    record.ensure_one()
  File "C:\Program Files\Odoo\server\odoo\models.py", line 5111, in ensure_one
    raise ValueError("Expected singleton: %s" % self)
ValueError: Expected singleton: as.product.brand(9, 10, 8)

The above server error caused the following client error:
RPC_ERROR: Odoo Server Error
    at makeErrorFromResponse (http://localhost:8069/web/assets/2204-495f151/web.assets_backend.min.js:967:163)
    at XMLHttpRequest. (http://localhost:8069/web/assets/2204-495f151/web.assets_backend.min.js:975:13)
0
Avatar
Descartar
Avatar
Niyas Raphy (Walnut Software Solutions)
Best Answer

Hi,

From the shared traceback it seems the issue is with this line of code:  self.image_1920 = self.logo, where self is holding multiple records and thus you receive the single ton error.

You just need to iterate the self over a for loop and treat one record at a time.

For eg:
self.image_1920 = self.logo

Change to
for record in self:
 record.image_1920 = record.logo


Thanks

0
Avatar
Descartar
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
v16: custom model not created, what is error in py file Solved
models odoo16features
Avatar
Avatar
1
d’abr. 24
2534
odoo 16: Model creation problem - not creating model Solved
models odoo16features
Avatar
Avatar
1
de maig 23
4387
Odoo 16: Create Just one record for a model and asign it many childs
models one2many_list odoo16features
Avatar
Avatar
2
de gen. 24
2226
how to fetch settings values Solved
settings models odoo16features
Avatar
Avatar
Avatar
3
de jul. 23
3653
Values entered in One2many field form disapper when clicked on "Save" button in V9.
models write writeMethod
Avatar
Avatar
1
d’oct. 16
7341
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