Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Artificial Intelligence
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Property Management
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

[Solved] Odoo 9 - Importing accounting entry with python code

Subscriure's

Get notified when there's activity on this post

This question has been flagged
2 Respostes
5325 Vistes
Avatar
Eric CATTELIN

Hello,

I try to import this files in my account journal entry.

NUMJL;DTOPE;NPIEC;INPIE;MONNAIE_IDENT;COURS;NUMCP;VMTDEB;VMTCRE;
PAY;30042016;0000000001;O.D.;EUR;0;633300;0.1;0;
PAY;30042016;0000000001;O.D.;EUR;0;448600;0;0.1;

For this i use this code :

def _import_data(self, data):
move_obj = self.env['account.move']
 line_obj = self.env['account.move.line']
 move = None
  for row in data:
if move and row['NPIEC'] != move.name:
move.post()
 move = None
move_vals = {}
line_vals = {}
for col in row:
value = row[col]
 if not move:
if col == 'NUMJL':
move_vals['journal_id'] = self._get_record_id(value, 'account.journal')
elif col == 'NUMPIEC':
move_vals['name'] = value
 elif col == 'DTOPE':
move_vals['ref'] = 'PAY-%s%s-01' % (value[4:],value[2:4])
 move_vals['date'] = self._get_date(value)
 if col == 'NUMCP':
line_vals['account_id'] = self._get_record_id(value, 'account.account')
 elif col == 'INPIE':
line_vals['name'] = value
 elif col == 'VMTDEB':
line_vals['debit'] = self._get_amount(value)
 elif col == 'VMTCRE':
line_vals['credit'] = self._get_amount(value)
 if not move:
move = move_obj.create(move_vals)
 line_vals['move_id'] = move.id
 line = line_obj.create(line_vals)
 if move:
 move.post()

But i've this message warning box in odoo :

"Cannot create unbalanced journal entry."

I've try to change my code like this without success

                 elif col == 'VMTDEB':
line_vals['debit'] = self._get_amount(value)
 if value <> 0:
line_vals['balance'] = self._get_amount(value)
 elif col == 'VMTCRE':
line_vals['credit'] = self._get_amount(value)
 if value <> 0:
line_vals['balance'] = self._get_amount(value) * -1

Can you help me please ?


I've finaly found the solution.
For line, we need to inhibit some controll by remplacing this
"line = line_obj.create(line_vals)"
by this
"line =line_obj.with_context(check_move_validity=False).create(line_vals)"


1
Avatar
Descartar
Avatar
Eric CATTELIN
Autor Best Answer

Thanks for you help Artem

I use french accounting so that why i've this format for accounting_id. My fonction self._get_record_id(value, 'account.account') helps me to find the right accounting_id with the name of my account.

I change my code and come soon to tell about the result.

0
Avatar
Descartar
Artem

'if col == 'NUMCP'' I think this does not work because 'col' is not equal 'NUMCP'. So to help I need to know 'data' variable format. Is it a list or dictionary or string or whatever....

Eric CATTELIN
Autor

I've finaly found the solution.

For line, we need to inhibit some controll by remplacing this

"line = line_obj.create(line_vals)"

by this

"line =line_obj.with_context(check_move_validity=False).create(line_vals)"

Artem

Using such context you create problems in the future. Suppose you will not able to post this entries later.

Avatar
Artem
Best Answer

Field of account_move that are required : state, journal_id, date, name
Fields of account_move_line are required: date,  account_id, journal_id, debit, credit, date_maturity, move_id, name
For multi currency: currency_id, amount_currency
What is 'data' format? I'm not sure that 'if col == 'NUMCP'' works.

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

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

Registrar-se
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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