Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

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

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
hrv7
3 Replies
14332 Tampilan
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
Buang
Avatar
Martin
Jawaban Terbai

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
Buang
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
Penulis

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
Jawaban Terbai

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
Buang
Michael Karrer

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

Avatar
Thuy Ngoc
Jawaban Terbai

Hi  Nahedh,

I think this video can help you:

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

-1
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
There is no reference available for base.element
hr v7
Avatar
0
Mar 15
5138
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
8298
How to allow manager to access his employees or his department only? Diselesaikan
security hr v7
Avatar
Avatar
Avatar
Avatar
14
Sep 24
25979
How to add expense of an employee in employee payslip?
hr v7 expense
Avatar
Avatar
Avatar
2
Sep 17
8924
Payroll Module in openerp
hr v7 payroll
Avatar
Avatar
1
Sep 17
6911
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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