Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

Accounting Module v7 : Account move -- Create Method Issue

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
accountingcreatev7methodaccount.move
1 Svar
7370 Visninger
Avatar
TEIMI Yassine

                                                              SHORT SITUATION EXPLAINATION  :

I am creating a method, trying to create a record on account.move object,

the account.move object had a one2many field into account.move.line, so as to fill this field while creating the account.move record, I used a list of dictionnaries like this : [{'name' : name, 'debit' : debit} , {'name' : name2 , 'debit' : debit}], so as every dictionnary of this list is corresponding to a record of the account.move.line.

                                                                 CODE AND ERROR TRACEBACK :

Here is the interesting part of my method : 

        line = [{}]
        line = [{
            'name' : 'Credit Client',
            'account_id' : acc_id,
            'debit' : debit,
        }]

        line.append({
            'name' : 'equilibrage',
            'account_id' : 726,
            'credit' : debit,
        })

        period = period_obj.find(cr, uid, date, context=None)
        period_res = period[0]
        move = {
            'ref' : num_bl,
            'line_id' : line,
            'journal_id' : 2,
            'date' : date,
            'company_id' : company_id,
            'period_id' : period_res,
        }

        move_id = move_obj.create(cr, uid, move, context=None)
        move_obj.post(cr, uid, [move_id], context=None)
        res = super(StockPickingOut, self).force_assign(cr, uid, ids, *args)

        return res

Here is the create method of account.move overrided : 

    def create(self, cr, uid, vals, context=None):
        if context is None:
            context = {}
        if 'line_id' in vals and context.get('copy'):
            for l in vals['line_id']:
                if not l[0]:
                    l[2].update({
                        'reconcile_id':False,
                        'reconcile_partial_id':False,
                        'analytic_lines':False,
                        'invoice':False,
                        'ref':False,
                        'balance':False,
                        'account_tax_id':False,
                        'statement_id': False,
                    })

            if 'journal_id' in vals and vals.get('journal_id', False):
                for l in vals['line_id']:
                    if not l[0]:
                        l[2]['journal_id'] = vals['journal_id']
                context['journal_id'] = vals['journal_id']
            if 'period_id' in vals:
                for l in vals['line_id']:
                    if not l[0]:
                        l[2]['period_id'] = vals['period_id']
                context['period_id'] = vals['period_id']
            else:
                default_period = self._get_period(cr, uid, context)
                for l in vals['line_id']:
                    if not l[0]:
                        l[2]['period_id'] = default_period
                context['period_id'] = default_period

        if vals.get('line_id', False):
            c = context.copy()
            c['novalidate'] = True
            c['period_id'] = vals['period_id'] if 'period_id' in vals else self._get_period(cr, uid, context)
            c['journal_id'] = vals['journal_id']
            if 'date' in vals: c['date'] = vals['date']

            result = super(account_move, self).create(cr, uid, vals, c)
            tmp = self.validate(cr, uid, [result], context)
            journal = self.pool.get('account.journal').browse(cr, uid, vals['journal_id'], context)
            if journal.entry_posted and tmp:
                self.button_validate(cr,uid, [result], context)
        else:
            result = super(account_move, self).create(cr, uid, vals, context)
        return result

Here is the server traceback :

File "/opt/openerp/server/openerp/addons/add_bl_valcr/stock.py", line 64, in force_assign move_id = move_obj.create(cr, uid, move, context=None) File "/opt/openerp/server/openerp/addons/account/account.py", line 1393, in create result = super(account_move, self).create(cr, uid, vals, c) File "/opt/openerp/server/openerp/osv/orm.py", line 4550, in create result += self._columns[field].set(cr, self, id_new, field, vals[field], user, rel_context) or [] File "/opt/openerp/server/openerp/osv/fields.py", line 557, in set if act[0] == 0: KeyError: 0

 

I think there is something wrong with the key 0 on the line 5 of create method, caused by the "line" type, it tried to access the object via the key 0, but it's not valid, I'm searching a simple and valid way to save these two records in account.move.line.

Should I override the create method too ? because it's used for another purpose, and because I am using it in different conditions.

Suggestions, solutions please ?

1
Avatar
Kassér
Avatar
Mohamed Essakali
Bedste svar

To create one2many records you must use tuples like this : (0,0,{'field1':value1,'field2':value2...}), other tuples that can be used :

(0, 0, { values }) link to a new record that needs to be created with the given values dictionary 

(1, ID, { values }) update the linked record with id = ID (write *values* on it) 

(2, ID) remove and delete the linked record with id = ID (calls unlink on ID, that will delete the object completely, and the link to it as well) (3, ID) cut the link to the linked record with id = ID (delete the relationship between the two objects but does not delete the target object itself) 

(4, ID) link to existing record with id = ID (adds a relationship) 

(5) unlink all (like using (3,ID) for all linked records) 

(6, 0, [IDs]) replace the list of linked IDs (like using (5) then (4,ID) for each ID in the list of IDs)

For more details see https://doc.odoo.com/v6.0/developer/2_5_Objects_Fields_Methods/methods.html/

Good luck!

1
Avatar
Kassér
TEIMI Yassine
Forfatter

Thank you very much Ssi Mohamed, very interesting informations.

Mohamed Essakali

You're welcome Ssi Yassine ;)

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

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
Remove bank account from supplier
accounting account.move
Avatar
Avatar
1
mar. 25
2717
Mexican location, stamped to billing address. Odoo v14 enterprise
accounting account.move
Avatar
0
nov. 22
2458
Record does not exist or have been deleted
create method
Avatar
Avatar
1
jan. 19
12141
Cash Register Løst
accounting v7
Avatar
Avatar
Avatar
Avatar
Avatar
12
feb. 24
34546
one create method 2 separate models
create method
Avatar
Avatar
1
okt. 17
4124
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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