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
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita 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
  • Proyectos
  • 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

How can I import photos of my employees into HR module?

Suscribirse

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

Se marcó esta pregunta
hrv7
3 Respuestas
14309 Vistas
Avatar
Nahedh Alharbi

I have more than 800 .JPG photos for my employees, is there any way to import them into my HR module? I use OpenERP 7 which installed on UBUNTU 12.4 server.

Thank you in advance.

5
Avatar
Descartar
Avatar
Martin
Mejor respuesta

First be sure you set "Allow users to import data from CSV files" in Settings >> General Settings. (In fact you must have the module base_import installed for even that to be possible) After you've done that, a new link will appear, beside the [Create] button in the List view (not Icon view) of the employee directory.

Probably you will need to export to CSV first and then open the CSV into a spreadsheet, in order to see what an import file should look like.

I tried it just now importing into a Google Docs spreadsheet, then downloading as a new CSV file and importing into OpenERP. I can confirm that this correctly created a new user from an existing one. The photo restored correctly, too.

To add new images to your spreadsheet you'll need to use a Base64 encoder

If your employee data is already installed you will face the problem of matching photos to persons. The solution to that is to choose one or two fields that together form some sort of unique identifier. Export just those fields to a file and import it into a spreadsheet workbook (Let's call that Sheet_1). You'll see that an additional "External ID" column will have been created in Sheet_1. Load your Base64 encoded images into a second sheet in the workbook (Sheet_2), keyed with the same unique identifier. In a third sheet (Sheet_3), use the VLOOKUP function on a person in Sheet_1 to get the "External ID" for each image in Sheet_2, and thus form a correctly formatted sheet for exporting back to OpenERP.

If you are just experimenting, you can quickly convert an image to Base64, with a site like http://base64.wutils.com/encoding-online/ for example.

On a "good" Linux distribution, you can just run this:

cat photo.jpg | base64 --wrap=0 > photo.b64

(--wrap=0 ensures no <cr><lf> cruft sneak into it)

Now, if you want to go completely loopy about this you can try ...

1) A bash script (MakeBase64CSV.sh) such as ...

#!/bin/bash
#
echo \"name\",\"image\" > $1.csv
while IFS=, read f1 f2; do
    # echo "fields[$f1 $f2 $f3 $f4]"
    echo -n \"$f1\",\" >> $1.csv
    cat $f2 | base64 --wrap=0 >> $1.csv
    echo \" >> $1.csv
done < $1

2) . . . that expects a records file (PersonPix.txt) such as . . .

Bob Roberts, BobRoberts.png
Carol Karolice, CarolKarolice.png
Ted Edwards, TedEdwards.png
Alice Alder, AliceAlder.png

3) . . . that gets executed like this ...

./MakeBase64CSV.sh PersonPix.txt

4) . . . that can be viewed like this . . .

cat PersonPix.txt.csv

5) . . . spitting out something that'll look like this . . .

"name","image"
"Bob Roberts","2dd5xU1...milesOfTerrifyingGibberish...fn/3/dO2"
"Carol Karolice","9TU9Pd0...milesOfTerrifyingGibberish...9FwwgDAjKIT"
"Ted Edwards","53xC2vA...milesOfTerrifyingGibberish...DGxGCwkwF"
"Alice Alder","UBQqsm2...milesOfTerrifyingGibberish...yx9YtbHR"
12
Avatar
Descartar
Cameron

"use a Base64 encoder" The key :) - now I can progress - many thanks

Martin

up votes gratefully received. :-) (bowing)

Daniel Reis

+1 A recipe for converting to base64 would be a great addition.

Martin

your weesh is mine command line

Nahedh Alharbi
Autor

Great, It works with me, thank you very much Martin. :)

Martin

Glad to help!

Alex

Not working. I keep getting No such file or directory on each line. It appears to not be parsing the file to base64 for some reason. Using Centos 6.4.

Alex

It turns out that the file name pair near the end of the CSV was incomplete. So if you get this error, check that each row has a matching image entry!!

Avatar
Andreas Brueckl
Mejor respuesta

I am a friend of python scripts using XMLRPC.

First you should rename all images before the import. Use the OpenERP-ID or the employee name as the image name.

In the script:

  • loop over all images
  • encode file with base64.encode()
  • perform write on object hr.employee with value {'image': b64data} using xmlrpclib
  • if you have named to file with the employee name you first have to search the OpenERP before you can perform the write
1
Avatar
Descartar
Michael Karrer

Thanks for the Hint! - Would it be possible to get a bit more detailed description ;) - Thanks in advance!

Avatar
Thuy Ngoc
Mejor respuesta

Hi  Nahedh,

I think this video can help you:

https://www.youtube.com/watch?v=VMJ0UI1crz4&list=PLSKcWRTtEl5qzvRaI-VTGavfReiHS_EEb&index=3

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

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

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
There is no reference available for base.element
hr v7
Avatar
0
mar 15
5109
How do I send out emails to all followers when an update happens in the HR (hiring) module)
hr v7
Avatar
Avatar
1
mar 15
8281
How to allow manager to access his employees or his department only? Resuelto
security hr v7
Avatar
Avatar
Avatar
Avatar
14
sept 24
25957
How to add expense of an employee in employee payslip?
hr v7 expense
Avatar
Avatar
Avatar
2
sept 17
8908
Payroll Module in openerp
hr v7 payroll
Avatar
Avatar
1
sept 17
6884
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • 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 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