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
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • e-learning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Cervecería
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y soporte técnico
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Explorar todos los sectores
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Servicios para partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Sobre este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Sobre este foro
Ayuda

Odoo 11.0 ValueError: Expected singleton on create operation

Suscribirse

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

Esta pregunta ha sido marcada
createvalueerrorsingleton
4 Respuestas
6547 Vistas
Avatar
LaLibreRie

Hello,

I’m working on an module extending the Project Application, to connect it with an external Kanban software. I created a class with classic inheritance on the project.project model and I’m trying to implement a method to import projects data from the internal software and map them into new project.project records in Odoo. The class is built as follows :

class ProjectExtension(models.Model):
    _inherit='project.project'
    
    url=fields.Char('Project page URL')
    
    @api.multi
    def import_projects(self):
        imported_projects=self.get_client().import_data()
        for project in imported_projects:
             self.create({'url': project.url})

The import_data() function has been tested and does give the expected data. But, still, when I test the import_projects method, I get a ValueError: Expected singleton exception. The line that seems to give raise the exception is "self.create({'url': project.url})" and I can’t figure out why.


ERROR
======================================================================
ERROR: test_import_projects (odoo.addons.draft_odoo_trello.tests.test_project.TestTrelloProject)
Traceback (most recent call last):
`   File "/odoo/addons-dev/draft_odoo_trello/tests/test_project.py", line 19, in test_import_projects
`     projects.import_projects()
`   File "/odoo/addons-dev/draft_odoo_trello/models/trello_project.py", line 42, in import_projects
`     self.create({'url':project.url})
`   File "/opt/odoo/odoo/addons/project/models/project.py", line 257, in create
`     project = super(Project, self).create(vals)
`   File "/opt/odoo/odoo/addons/mail/models/mail_alias.py", line 223, in create
`     )).create(vals)
`   File "/opt/odoo/odoo/addons/mail/models/mail_thread.py", line 236, in create
`     thread = super(MailThread, self).create(values)
`   File "/opt/odoo/odoo/odoo/models.py", line 3349, in create
`     vals = self._add_missing_default_values(vals)
`   File "/opt/odoo/odoo/odoo/models.py", line 1601, in _add_missing_default_values
`     defaults = self.default_get(list(missing_defaults))
`   File "/opt/odoo/odoo/odoo/models.py", line 1087, in default_get
`     defaults = self._convert_to_write(defaults)
`   File "/opt/odoo/odoo/odoo/models.py", line 4475, in _convert_to_write
`     value = field.convert_to_cache(value, self, validate=False)
`   File "/opt/odoo/odoo/odoo/fields.py", line 2076, in convert_to_cache
`     ids = OrderedSet(record[self.name].ids if record.id else ())
`   File "/opt/odoo/odoo/odoo/fields.py", line 2541, in __get__
`     return record.ensure_one()._ids[0]
`   File "/opt/odoo/odoo/odoo/models.py", line 4366, in ensure_one
`     raise ValueError("Expected singleton: %s" % self)
` ValueError: Expected singleton: project.project(6, 14, 4, 3, 2, 5)

Thanks.

0
Avatar
Descartar
LaLibreRie
Autor

@Sudhir Arya (ERP Harbor Consulting Services), I know it is not project, since it is not an odoo record or recordset object. Self is a recordsets of several projects, so it does have multiple records.

@subbaro and @Sudhir Arya (ERP Harbor Consulting Services) what I understand from your answers is that the create method is a record level method, is that right ? It is a bit odd, since it aims at appending new records to the whole recordset.

Avatar
LaLibreRie
Autor Mejor respuesta

My bad, the problem was coming from the decorator. I used @api.multi, but the appropriate decorator for my case was @api.model. That way, the 'self' variable is a reference to the model, instead of a set of record and the model level 'create' method is therefore available via 'self'.

0
Avatar
Descartar
Avatar
Sudhir Arya (ERP Harbor Consulting Services)
Mejor respuesta

Something is wrong in the following code:

for project in imported_projects:
self.create({'url': project.url})

Either project or self is having multiple recordsets. Print the value of "self and project" variables in the loop before create method and check which variable has multiple recordsets and post it here in comment.


2
Avatar
Descartar
Avatar
TenthPlanet Technologies Pvt Ltd, Subbarao Singalla
Mejor respuesta

Hi,

you can try this one

@api.multi

def import_projects(self):

for projects in self:

imported_projects = projects.get_client().import_data()

for project in imported_projects:

     self.create({'url': project.url})


if not working please check the following line

self.create({'url': project.url})


2
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

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

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
Error with singleton value
valueerror singleton
Avatar
Avatar
Avatar
Avatar
4
mar 24
3201
ValueError: ValueError singleton Resuelto
valueerror singleton
Avatar
Avatar
Avatar
4
feb 19
4672
ValueError: Expected singleton (odoo 14) Resuelto
expected valueerror singleton v14
Avatar
Avatar
1
dic 20
15930
Create new bug
create
Avatar
0
abr 24
3357
Wrong value for crm.lead.service: <odoo.fields.Selection>
valueerror
Avatar
Avatar
2
jul 23
3645
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones empresariales de código abierto que cubre 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