Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Mapping imported data

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
importvaluesv7
2 Antwoorden
16066 Weergaven
Avatar
Cameron

In the past I have managed to import data, but I find it very hit and miss when it come to mapping the data to the correct place.

eg when manually creating a supplier "purchase receipt" openerp Form asks for the following info.. Supplier, Bill Date, Memo, Due Date, Ref#, Journal, Company, Account, Description, Amount, Tax.

So I create a csv file using these headings, only to find when I try to import the only one Openerp recognises only some of the headings.

Openerp states " you should use the unique identifier from the original application and map it to the ID column in OpenERP"

I've looked in the database, and starting to think its a bit of a mishmash between db column name and the comment!

I can guess some, but how do I know?

Any pointers please.

0
Avatar
Annuleer
Avatar
Cameron
Auteur Beste antwoord

After a lot of messing I think I've cracked it!

Based on a import of a "Supplier Purchase Receipt"

From countless tests, doing exports of existing data, looking through the database and a bit of jigury pokery, I came up with the following table which shows how names and values can change, and hence my confusion over the values to use.

image description

As you can see the the export method is almost there, but not quiet, plus a bit of guesswork knowledge of knowing to include the "account_id" and "type".

I found having to export the data, interpret it tedious. So...

My preferred way of mapping the data is to "activate the developer mode" then "create a new form" then by "mousing over" each field you are told the "Field" name, which is the correct import name to use! The lines are a bit more difficult - first obtain the field name (eg line_dr_ids) then select "add an item" then obtain the rest of the field (eg account_id) then join them together to give your name (eg line_dr_ids/account_id). You still need a bit of psychic wisdom to know to include "account_id" and "type", by "vaildating" the imported csv, OpenERP will guide you through this! I included "tax_amount" because it easy to include and it help a bit with validating the purchase receipt later.

Hope this helps you out and saves you some time! if so give me a "vote"!

4
Avatar
Annuleer
Martin

A little bit of additional advice : "Trust The Magic!" I have found that the ORM is pretty darn good at correctly identifying a related record from the data I supply. I created a group and passed in some users by Name. Then I tried passing in users by Login without changing the column title. It figured it out anyway!

Avatar
Bonnet Denis
Beste antwoord

Export the fields you want to import and rename your headings.

0
Avatar
Annuleer
Cameron
Auteur

Many thanks Denis, although certainly along the correct line, it didnt give me the exact information I was after - please see my answer.

Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
How to import multiple lines text fields with CSV ? Opgelost
import v7
Avatar
Avatar
Avatar
Avatar
Avatar
5
sep. 25
24754
How to import an existing chart of accounts?
import v7
Avatar
Avatar
2
jul. 16
13812
Current record in massive import
import v7
Avatar
Avatar
1
mrt. 15
5275
What is the best method to upload a large quantity of records?
import v7
Avatar
Avatar
Avatar
Avatar
3
mrt. 15
9883
Import Invoices while maintaining date
invoice import v7
Avatar
0
okt. 25
3988
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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