Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

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

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
importfieldcheckadvancedexternal_id
14 Risposte
13944 Visualizzazioni
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
Abbandona
Sprintit Oy / Roy Nurmi

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

Pascal Tremblay
Autore

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
Risposta migliore

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
Abbandona
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
Risposta migliore

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
Abbandona
Avatar
Xavier Brochard
Risposta migliore

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
Abbandona
Avatar
Pascal Tremblay
Autore Risposta migliore

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
Abbandona
Avatar
Hubert Pineault
Risposta migliore

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
Abbandona
Pascal Tremblay
Autore

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
Autore

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
Autore

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?

Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
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? Risolto
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
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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