Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

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

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
modelswriteMethododoo16features
1 Responder
2610 Vistas
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)
Mejor respuesta

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
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
v16: custom model not created, what is error in py file Resuelto
models odoo16features
Avatar
Avatar
1
abr 24
2529
odoo 16: Model creation problem - not creating model Resuelto
models odoo16features
Avatar
Avatar
1
may 23
4386
Odoo 16: Create Just one record for a model and asign it many childs
models one2many_list odoo16features
Avatar
Avatar
2
ene 24
2218
how to fetch settings values Resuelto
settings models odoo16features
Avatar
Avatar
Avatar
3
jul 23
3651
Values entered in One2many field form disapper when clicked on "Save" button in V9.
models write writeMethod
Avatar
Avatar
1
oct 16
7341
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

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