Sari la conținut
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Artificial Intelligence
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Property Management
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Toate postările Oameni Insigne
Etichete (Vezi tot)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Toate postările Oameni Insigne
Etichete (Vezi tot)
odoo accounting v14 pos v15
Despre acest forum
Suport

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

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
2 Răspunsuri
5404 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Eric CATTELIN
Autor Cel mai bun răspuns

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
Imagine profil
Abandonează
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.

Imagine profil
Artem
Cel mai bun răspuns

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
Imagine profil
Abandonează
Îți place discuția? Nu doar citi, alătură-te!

Creează-ți un cont astăzi pentru a beneficia de funcții exclusive și a interacționa cu minunata noastră comunitate!

Înscrie-te
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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