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

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

Abonare

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

Această întrebare a fost marcată
modelswriteMethododoo16features
1 Răspunde
2632 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Niyas Raphy (Walnut Software Solutions)
Cel mai bun răspuns

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
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
v16: custom model not created, what is error in py file Rezolvat
models odoo16features
Imagine profil
Imagine profil
1
apr. 24
2555
odoo 16: Model creation problem - not creating model Rezolvat
models odoo16features
Imagine profil
Imagine profil
1
mai 23
4413
Odoo 16: Create Just one record for a model and asign it many childs
models one2many_list odoo16features
Imagine profil
Imagine profil
2
ian. 24
2247
how to fetch settings values Rezolvat
settings models odoo16features
Imagine profil
Imagine profil
Imagine profil
3
iul. 23
3673
Values entered in One2many field form disapper when clicked on "Save" button in V9.
models write writeMethod
Imagine profil
Imagine profil
1
oct. 16
7355
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