Ir al contenido
Odoo Menú
  • Identificarse
  • 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
    • eLearning
    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 taberna
    • 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
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • 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
    Browse all Industries
  • 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
    • Services for 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

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • 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

Save records in database

Suscribirse

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

Se marcó esta pregunta
databasedatarecordssave
2 Respuestas
12699 Vistas
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
Descartar
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
Autor

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

Avatar
Algode
Autor Mejor respuesta

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
Descartar
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
Autor

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

Avatar
Jordan Vrtanoski
Mejor respuesta

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
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
Creating database results in "database does not Exist"
database data
Avatar
Avatar
Avatar
3
mar 15
14873
Getting data from user form Resuelto
database form data
Avatar
Avatar
Avatar
3
sept 23
5129
How to keep data after code refactoring?
database data odoo10
Avatar
Avatar
1
nov 18
5066
V11CE., Reset records without wiping database Resuelto
database records odoov11
Avatar
Avatar
2
mar 18
4148
Generate records in database automatically
database record save
Avatar
Avatar
1
abr 15
6738
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 ภาษาไทย 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 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