Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

Index output of browse method

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
browse13
1 Atsakyti
3414 Rodiniai
Portretas
Melvin

Hi everyone, I've been trying to point to specific index in the output of my browse method.


this is my code:

def unir_facturas_boton(self, vals):
active_invoices = self.env['account.move']._context.get('active_ids', [])
active_records = self.env['account.move'].browse(active_invoices)
# source = active_records[--1]
# source_2 = active_records[0]

for items in active_records:
print(items)
# if items[-1].partner_id != items[0].partner_id:
# raise ValidationError('No es posible unir facturas con clientes diferentes')
# else:
# invoice = self.env['account.move'].create(
# {
# 'company_id': items[-1].company_id,
# 'type': items[-1].type,
# 'invoice_date': items[-1].invoice_date,
# 'partner_id': items[-1].partner_id.id,
# 'currency_id': items[-1].currency_id.id,
# 'journal_id': 11
# })
# for lines in items[-1].invoice_line_ids:
# invoice.write({
# "invoice_line_ids": items[0].invoice_line_ids.append(lines)


# })

the commented part is giving me erros since I cant catch the index.



this the output of the browse method:

account.move(2,)
account.move(1,)


how can I point to an specific one of these two?



0
Portretas
Atmesti
Portretas
Murray Carson
Best Answer

It looks like you are trying to merge invoices and don't want to merge them if they each have a different partner_id.  My question would be: are you selecting invoices that have the same partner_id?

As for the error, I think you're using your for loop syntax incorrectly.  It might help to instead write it as:

for item in active_records:

Each item will be iterated through, and depending on the type of object they may have elements 0 and -1, but it's unlikely.  You would want to check active_records[0] against active_records[-1] for a match on the partner_id.  At least that's how it makes sense in my head.

Here's a link on how that particular function works in case you'd like a refresher:
https://www.geeksforgeeks.org/iterate-over-a-list-in-python/

Hope that helps.

1
Portretas
Atmesti
Melvin
Autorius

Yes, I just solved it doing the same thing, instead of iterating over the values of active_record I just created to variables that store each index, In my case I'll always just use 2 active_ids so it would be only active_record[0] and active_record[1], but now I'm having issues trying to append the invoice_line_ids from record[0] with record[1] and making a new invoice based on this

Murray Carson

Not sure if this will solve your new issue, but I would think you'd want to create the new invoice object first and append the invoice_line_ids to that new object. Alternatively you could just use one of the existing ones and append the ones from the other prior to archiving it.

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

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

Registracija
Related Posts Replies Rodiniai Veikla
How to automate initial configuration? Solved
13
Portretas
Portretas
Portretas
Portretas
4
vas. 24
7985
Where can I find a report on cash in / out? Solved
13
Portretas
Portretas
Portretas
Portretas
3
kov. 24
3670
One email with multiple recipient
13
Portretas
0
lapkr. 22
3010
decimal separator ore thousands separator
13
Portretas
Portretas
Portretas
2
vas. 22
6837
Moving Odoo 13 database from Odoo.sh to dedicated server
13
Portretas
0
lapkr. 21
3598
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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