Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

How to check "Show fields of relation fields (advanced)" on the import page?

Odoberať

Get notified when there's activity on this post

This question has been flagged
importfieldcheckadvancedexternal_id
14 Replies
13945 Zobrazenia
Avatar
Pascal Tremblay

Hello all,

I'm with Odoo 10 community.

I need the external_id column when importing product. Because I want to reimport many times the same products.

So, I want to check the "Show fields of relation fields (advanced)" option on the import page. But I can't check the box. Even with admin in debug mode.

How could I check this box?




Edit #1

In the code of /home/odoo-10/odoo-10.0/addons/base_import/static/src/xml/base_import.xml, the box is defined like this :

<input type="checkbox" class="oe_import_advanced_mode" disabled="disabled"
                       id="oe_import_advanced_mode"/>

Why disabled????


EDIT #2

No trace of 'oe_import_advanced_mode' in the odoo 10 enterprise code... ??? What is this? I don't understand!


EDIT #3

I have tried removing the "disabled="disabled"" in the code and updating the module base_import. But when I check the box, it comes back disabled as soon.



4
Avatar
Zrušiť
Sprintit Oy / Roy Nurmi

I am having the same problem. In my local development version it works, probably a bit different version?

Pascal Tremblay
Autor

My importation was right finally. If your fields are well declared in the header of your csv/excel file, odoo will recognize them (even if they are many2one and other relationnal fields). After two or 3 importation tests, all my header was correctly set. But the checkbox was always disabled. Never manage to enable this checkbox. But you can import anything without this checkbox.

Avatar
Santiago Rubio
Best Answer

I reccomend to copy the files that you have to modify.

First of all you, on the base_import.xml file find a line like:

<input type="checkbox" class="oe_import_advanced_mode" disabled="disabled" id="oe_import_advanced_mode"/>


Modify the line to:

<input type="checkbox" class="oe_import_advanced_mode" id="oe_import_advanced_mode"/>


After that, you have to modify the base_import.js file (which is located on /YourOdoo/addons/base_import/static/src/js/). On that file, search "oe_import_advanced_mode" (without the " ")  since you find a line like this:

this.$('input.oe_import_advanced_mode').prop('checked', result.advanced_mode);

On that line just change the 'checked' value to 'unchecked'.

1
Avatar
Zrušiť
Xavier Brochard

Don't do that. Just put a slash "/" in a header (you way want to add fields name but it works without). No need to add datas in the column.

Avatar
Sprintit Oy / Roy Nurmi
Best Answer

I forgot this when the problem disappeared, but now we stuck with this issue in another environment, running recent version of Odoo 10.0. Our customer finally solved the problem. We tried to import data from excel, using csv + UTF-8 encoding.

MS Excel generates UTF-8 BOM marker to the beginning of the file, and because of that, Odoo fails to identify the first field as "id".

IMHO this is odoo import bug, if it does not cope with UTF-8 BOM for UTF-8 files, but workaround is take the data e.g. in windows character set, then import works just fine. 

0
Avatar
Zrušiť
Avatar
Xavier Brochard
Best Answer

Put a slash "/" in a header (you way want to add fields name but it works without). No need to add datas in the column.


0
Avatar
Zrušiť
Avatar
Pascal Tremblay
Autor Best Answer

This is not really an answer to original post.

How I manage my Visa each month... 

I download the ofx on AccesD (ofx quicken, conciliation bancaire carte) :


I import it :


I reconcile. Note that total of 0 $ each month end.



My account chart :


We have an account for each Visa card. And we have a main account. Each month, total is transfered to the main account. When we pay the visa with an other bank account, payment is also transferred to the main account. So, when the Visa is paid, all account in the chart should have a balance of 0 $.

We don't download any statement from AccesD for our bank account. We don't use this account for our business (to many fees...). But I have checked, and like you said, it seems that this is only possible to download a CSV file...  


0
Avatar
Zrušiť
Avatar
Hubert Pineault
Best Answer

I'm with Odoo 10 community. Until 5 minutes ago, the checkbox was always enabled and I was unable to un check it. But now, it's unchecked and I can't re-enable it.

@Pascal Tremblay, I'm using this module to import Desjardins bank account statement. It appears to me that I need the relation fields (mostly those in the line statement section) to import line description (ex. check), line reference (ex. check number), line credit and line debit (Desjardins csv splits them in two column instead of negative numbers). My case is not as complexe as yours. Did you manage to import simple Desjardins statements without relation fields?

0
Avatar
Zrušiť
Pascal Tremblay
Autor

To import my visa statement (downloaded on the Desjardins AccesD website), on odoo 8, I use two free modules : account_bank_statement_import and account_bank_statement_import_ofx. I use these two modules since 1 year and they are magic. No more need to enter each line, one by one, of my Visa statement each months to reconcile this statement.

Pascal Tremblay
Autor

I didn't try these two modules on odoo 9 and odoo 10. May be they exist for these versions too.

Hubert Pineault

Merci!

Pascal Tremblay
Autor

No kidding, since I have these two modules, my life is not the same! :)

Hubert Pineault

@Pascal how do you download those ofx file4s from AccesD? I can only download csv.

As for the bank statements proper, I managed to download ofx and import them.

Hubert Pineault

@Pascal

And also, how do you manage credit card accounts in odoo?

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Correct import of related records to Odoo
import vendor external_id
Avatar
Avatar
1
mar 23
3667
Weekly imports update the pricing for all our SKU's. Sometimes users create new products before the Import runs. This creates duplicates! How can I manage this? Solved
import external_id v11.0
Avatar
Avatar
1
mar 20
5045
Cannot update product information through External ID
import update external_id
Avatar
Avatar
Avatar
Avatar
5
apr 18
9152
Sales Order Import Custom field search res.partner
sales import field res.partner
Avatar
0
mar 15
5672
How to rename "External Id" with the "database id".
import .id database_id external_id
Avatar
Avatar
2
mar 15
13605
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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