Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Intelligenza artificiale
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Odoo 11.0 ValueError: Expected singleton on create operation

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
createvalueerrorsingleton
4 Risposte
7263 Visualizzazioni
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
Abbandona
LaLibreRie
Autore

@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
Autore Risposta migliore

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
Abbandona
Avatar
Sudhir Arya (ERP Harbor Consulting Services)
Risposta migliore

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
Abbandona
Avatar
TenthPlanet Technologies Pvt Ltd, Subbarao Singalla
Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Error with singleton value
valueerror singleton
Avatar
Avatar
Avatar
Avatar
4
mar 24
4297
ValueError: ValueError singleton Risolto
valueerror singleton
Avatar
Avatar
Avatar
4
feb 19
5787
ValueError: Expected singleton (odoo 14) Risolto
expected valueerror singleton v14
Avatar
Avatar
1
dic 20
16760
Create new bug
create
Avatar
0
apr 24
4353
Wrong value for crm.lead.service: <odoo.fields.Selection>
valueerror
Avatar
Avatar
2
lug 23
4323
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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