Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Expected singleton ""ERROR"" Here is my code and Error log... Please Help me to solve the problem

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
5 Réponses
2662 Vues
Avatar
joyanto

 @api.multi

    def sync_serviceman_family_push(self, isReload):

        

        synchronizer_configuration = self.env['synchronizer.configuration'].search([('id','=',1)])

        if synchronizer_configuration:

            base_url = synchronizer_configuration['base_url']

            

        url = base_url + "/get-ex-serviceman/family"

        response = requests.get(url, data="")


        if response:

            if response.status_code == 200 or response.status_code == 201:

                items = json.loads(json.dumps(response.json()['data']))

                if items:

                    counter = 0

                    for item in items:

                        

                        _sync_ref_id = 'family-' + str(item['id']) if item['id'] else '' 

                        _name = item['name'] if item['name'] else 'N/A'

                        _phone = item['mobile_number'] if item['mobile_number'] else ''

                        _nid = item['nid'] if item['nid'] else ''

                        _occupation = item['occupation'] if item['occupation'] else ''

                        

                        relation_sync_ref_id = item['relation_id'] if item['relation_id'] else ''

                        _relation_id = self.env['basb.relation'].search([('sync_ref_id','=',relation_sync_ref_id)]).id

                        if _relation_id == False: _relation_id = None 

                        

                        serviceman_sync_ref_id = item['serviceman_id'] if item['serviceman_id'] else ''

                        parent = self.env['res.partner'].search([('sync_ref_id','=',serviceman_sync_ref_id)])

                        

                        _parent_id = parent.id or False

                        if _parent_id == False: _parent_id = None 

                        

                        _dasb_id = None

                        if parent.dasb:

                            _dasb_id = parent.dasb.id or False

                            if _dasb_id == False: _dasb_id = None 


                        _date_of_birth = None

                        try:

                            _date_of_birth = item['date_of_birth'] if item['date_of_birth'] else ''

                            if not _date_of_birth: _date_of_birth = None  

                            else: _date_of_birth = datetime.datetime.strptime(_date_of_birth, '%Y-%M-%d')

                        except Exception:

                            _date_of_birth = None 

                            

                        # dead = item['dead'] if item['dead'] else ''

                        # _status = 'alive'

                        _active = True

                        # if dead == 1: 

                        #     _status = 'dead' 

                        #     _active = False       

                        

                        if _sync_ref_id:

                            

                            '''

                            update_record = self.env['res.partner'].search([('sync_ref_id','=',_sync_ref_id)])      

                            

                            if update_record:

                                update_record.write({

                                    'name': _name,

                                    'phone': _phone,

                                    'national_identification': _nid,

                                    'function': _occupation,

                                    'date_of_birth': _date_of_birth,

                                    'relation': _relation_id,

                                    'parent_id': _parent_id

                                })

                            else:

                                record = self.env['res.partner'].create({

                                    'name': _name,

                                    'sync_ref_id': str(_sync_ref_id),

                                    'phone': _phone,

                                    'national_identification': _nid,

                                    'function': _occupation,

                                    'date_of_birth': _date_of_birth,

                                    'relation': _relation_id,

                                    'parent_id': _parent_id,

                                    'customer': True, 

                                    'active': True, 

                                    'type': 'contact'

                                })

                            

                            '''

                            

                            is_exist = self.env['res.partner'].search([('sync_ref_id','=',_sync_ref_id)])


                            if is_exist:

                                try: 

                                    query = """ UPDATE res_partner

                                                SET name=%s,

                                                display_name=%s,

                                                dasb=%s,

                                                phone=%s, 

                                                national_identification=%s,

                                                function=%s,

                                                date_of_birth=%s,

                                                relation=%s,

                                                parent_id=%s, 

                                                commercial_partner_id=%s

                                                WHERE sync_ref_id=%s """

                                    params = (_name, _name, _dasb_id, _phone, _nid, _occupation, _date_of_birth, _relation_id, _parent_id, _parent_id, str(_sync_ref_id), )  

                                    self.env.cr.execute(query, params)

                                except Exception:

                                    print("Catch Exception ID: " + str(_sync_ref_id))

                            else:

                                try:  

                                    if _sync_ref_id is not None:

                                        query = """ INSERT INTO res_partner

                                                (name, display_name, sync_ref_id, dasb, phone, national_identification, function, date_of_birth, relation, parent_id, commercial_partner_id, customer, active, type)

                                                VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, True, %s, 'contact') """

                                        params = (_name, _name, str(_sync_ref_id), _dasb_id, _phone, _nid, _occupation, _date_of_birth, _relation_id, _parent_id, _parent_id, _active, )

                                        self.env.cr.execute(query, params)

                                except Exception:

                                    print("Catch Exception ID: " + str(_sync_ref_id))

                

                    if isReload:

                        return {'type': 'ir.actions.client', 'tag': 'reload'}

                else:

                    if isReload:

                        raise UserError("No data found to sync.")

        else:

            if isReload:

                raise UserError("No data found to sync.")

AND THE ERROR SHOW IS DOWN


Error:

 Server Error


Traceback (most recent call last):

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 656, in _handle_exception

    return super(JsonRequest, self)._handle_exception(exception)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 314, in _handle_exception

    raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])

  File "/usr/lib/python3/dist-packages/odoo/tools/pycompat.py", line 87, in reraise

    raise value

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 698, in dispatch

    result = self._call_function(**self.params)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 346, in _call_function

    return checked_call(self.db, *args, **kwargs)

  File "/usr/lib/python3/dist-packages/odoo/service/model.py", line 97, in wrapper

    return f(dbname, *args, **kwargs)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 339, in checked_call

    result = self.endpoint(*a, **kw)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 941, in __call__

    return self.method(*args, **kw)

  File "/usr/lib/python3/dist-packages/odoo/http.py", line 519, in response_wrap

    response = f(*args, **kw)

  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 966, in call_button

    action = self._call_kw(model, method, args, {})

  File "/usr/lib/python3/dist-packages/odoo/addons/web/controllers/main.py", line 954, in _call_kw

    return call_kw(request.env[model], method, args, kwargs)

  File "/usr/lib/python3/dist-packages/odoo/api.py", line 759, in call_kw

    return _call_kw_multi(method, model, args, kwargs)

  File "/usr/lib/python3/dist-packages/odoo/api.py", line 746, in _call_kw_multi

    result = method(recs, *args, **kwargs)

  File "/mnt/extra-addons/meta_basb_offline/models/synchronizer_wizard.py", line 214, in sync

    self.sync_serviceman_family_push(False)

  File "/mnt/extra-addons/meta_basb_offline/models/synchronizer_wizard.py", line 674, in sync_serviceman_family_push

    _parent_id = parent.id or False

  File "/usr/lib/python3/dist-packages/odoo/fields.py", line 2863, in __get__

    raise ValueError("Expected singleton: %s" % record)

ValueError: Expected singleton: res.partner(13129, 100805)

0
Avatar
Ignorer
joyanto
Auteur
Thanks, I'll check it out. 

On Thu, Feb 20, 2020 at 10:59 AM Sehrish <sehrishnaz47@gmail.com> wrote:

You have to loop through from where you get singleton error....

Sent by Odoo S.A. using Odoo.

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi,

You missing loops,check how many records are in parent if it's more than one , then you have to add the loop at next line.

parent = self.env['res.partner'].search([('sync_ref_id','=',serviceman_sync_ref_id)])

Try after looping the parent

Regards

1
Avatar
Ignorer
Avatar
tamysmithing
Meilleure réponse


my name is TAMMY  please write through my  private email [ tammys15@yahoo.com ] i have something important to discuss with you through email,,,

0
Avatar
Ignorer
Avatar
Sehrish
Meilleure réponse

You have to loop through from where you get singleton error....

0
Avatar
Ignorer
joyanto
Auteur

not found where is my problem please help

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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