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

Save records in database

S'inscrire

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

Cette question a été signalée
databasedatarecordssave
2 Réponses
12704 Vues
Avatar
Algode

I have a function that process some data and the result od this need save in a database.
All process of data work fine, but the problem is when i want save the data in a database, not have any error in process.

When i use "ids" in create(), as self.pool.get('hr.attendance').create(cr,uid,ids,datas)  this give me an error(see below)

What I do wrong?

This is my function: 

    def import_time(self, cr, uid, ids, context=None):
        def see_time(x1, x2, x3, z1):
            x21 = str(timedelta(hours=x2))
            x31 = str(timedelta(hours=x3))
            res1 = (datetime.strptime(x1, '%H:%M:%S') - timedelta(hours=3)) - datetime.strptime(x21, '%H:%M:%S')
            res2 = (datetime.strptime(x1, '%H:%M:%S') - timedelta(hours=3)) - datetime.strptime(x31, '%H:%M:%S')
            zz = 'action'
            if (z1%2)==0: 
                    zz = 'sign_in'
            else:
                zz = 'sign_out'
            return zz

        for lines in self.browse(cr, uid, ids):
            attendance_obj = self.pool.get('hr.attendance')
            mess = []
            cr.execute('SELECT user_time, hr_employee.id '\
                'FROM hr_py_import_time, hr_employee '\
                'WHERE user_id=id_inter')
            temp = cr.fetchall()
            cr.execute('SELECT date_start, date_end '\
                'FROM hr_employee, hr_py_turno '\
                'WHERE hr_py_turno.id=id_turn')
            turn = cr.fetchall()
            contar = -1
            for x in temp:
                te = x[0]
                us = x[1]
                te1 = te.split(' ')[1]
                contar+=1
                for y in turn:
                    res = see_time(te1, y[0], y[1], contar)
                    datas = {'employee_id':us,'name':te,'action':res,}
                    crea = self.pool.get('hr.attendance').create(cr,uid,datas)
                    attendance_obj.write(cr,uid,crea,datas,context=context)

                     #this not work too, not save any data

                    #cr.execute('''INSERT INTO hr_attendance (employee_id, name, action) VALUES( %s, %s, %s)''',(us, te, res,))

          #this is only for see the results of process

            raise osv.except_osv(_('Atención!'),_(type(res)))

Now this is my view: 

<record model="ir.ui.view" id="hr_py_import_time_menu_form">
            <field name="name">hr_py_import_time_menu_form_view</field>
            <field name="model">hr.py.import.menu</field>
            <field name="arch" type="xml">
                <form string="Importar">
                    <sheet>
                        <label for="name" string="Periodo" class="oe_inline"/>
                        <field name="name" class="oe_inline"/>
                        <button colspan="1" name="import_time" string="Importar Horas" type="object" class="oe_highlight"/>
                        <group>
                            <field name="time_s"/>
                        </group>
                    </sheet>
                </form>
            </field>
        </record>

        <record model="ir.ui.view" id="hr_py_import_time_menu_tree">
            <field name="name">hr_py_import_time_menu_tree_view</field>
            <field name="model">hr.py.import.menu</field>
            <field name="arch" type="xml">
                <tree string="Importar">
                    <field name="name"/>
                </tree>
            </field>
        </record>

The error:

crea = self.pool.get('hr.attendance').create(cr,uid,ids,datas) File "/usr/lib/python2.7/dist-packages/openerp/api.py", line 241, in wrapper return old_api(self, *args, **kwargs) File "/usr/lib/python2.7/dist-packages/openerp/addons/hr_timesheet_sheet/hr_timesheet_sheet.py", line 482, in create sheet_id = context.get('sheet_id') or self._get_current_sheet(cr, uid, vals.get('employee_id'), vals.get('name'), context=context) AttributeError: 'list' object has no attribute 'get'

1
Avatar
Ignorer
Ludo - 21South

Jordan Vrtanoski is absolutely right. You only use the "ids" parameter on methods where you actually already have id's and need to either lookup data or manipulate the records.

Algode
Auteur

Right, but if not use the "ids", no have error and not save any data in the database.

Avatar
Algode
Auteur Meilleure réponse

When I use without "ids", this no give me any error but not save the record in the database. 

I don't know why and not know what can do more. 

0
Avatar
Ignorer
Jordan Vrtanoski

I also see the "write" after the "create". You don't need a "write" since create will already write the record to the database (unless there is exception in which case all changes are rolled back). First make sure that there are no exceptions in the log file. Next, check that you have the records in the database table with SELECT * from hr_attendance; It can be the case that you have not connected the records properly, so they appear "lost".

Algode
Auteur

Thanks very much. The problem is solved. The problem was in the raise comand, that cause the lost of record.

Avatar
Jordan Vrtanoski
Meilleure réponse

The method create doesnt accept IDs, it creates new records, therefore it still doesn't have the ids. You can call the create in two ways:
[V7 and older] 
    self.pool.get('hr.attendance').create(cr, uid, values_dictionary, context=context)

[V8 style within methods decorated with @api.xxxxx ]
    hr_obj = self.env['hr.attendance']
    hr_obj.create(
values_dictionary)

 

1
Avatar
Ignorer
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
Publications associées Réponses Vues Activité
Creating database results in "database does not Exist"
database data
Avatar
Avatar
Avatar
3
mars 15
14882
Getting data from user form Résolu
database form data
Avatar
Avatar
Avatar
3
sept. 23
5133
How to keep data after code refactoring?
database data odoo10
Avatar
Avatar
1
nov. 18
5067
V11CE., Reset records without wiping database Résolu
database records odoov11
Avatar
Avatar
2
mars 18
4150
Generate records in database automatically
database record save
Avatar
Avatar
1
avr. 15
6740
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