Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Problem with function write when i posted multi invoice

Naroči se

Get notified when there's activity on this post

This question has been flagged
writeeventaccount.movev17
1 Odgovori
1929 Prikazi
Avatar
Roger Masias Font

Dear community,


I'm trying to add register when i change the state of the invoice, the draft to posted.


I think that i have to catch the write event and the vals but i can't understand, how can i filter the vals for every register.


Example code :


    @api.model    def write(self, vals):        for invoice in self:            if (vals.get('state') == 'posted'):                pos_id = invoice.line_ids.sale_line_ids.order_id.astore_tpv_id                invoice_date = invoice.invoice_date                amount_total = invoice.amount_total                account_move_id = invoice.id


Kind regards 

0
Avatar
Opusti
Avatar
Zinfin Solutions Private Limited
Best Answer

Hello Roger Masias Font,

​​If you want to trigger a specific action when changing the state of an invoice from draft to posted, you can indeed use the write method.

​However, there are a few issues in your provided code. First, the if condition should check if the current state is 'draft' and the new state is 'posted'. Second, you should use the super function to call the parent class's write method. Here's a corrected version of your code:

def write(self, vals):
    result = super(YourInvoiceModel, self).write(vals)
    
    for invoice in self:
        if 'state' in vals and vals['state'] == 'posted' and invoice.state == 'draft':
            # Your logic here
            pos_id = invoice.line_ids.sale_line_ids.order_id.astore_tpv_id
            invoice_date = invoice.invoice_date
            amount_total = invoice.amount_total
            account_move_id = invoice.id
            # Perform your custom actions with the gathered data

    return result

​Make sure to replace YourInvoiceModel with the actual name of your invoice model. This code checks if the 'state' key is present in the vals dictionary and its value is 'posted', and if the current state of the invoice is 'draft'. If these conditions are met, you can access the required fields and perform your custom logic.

​Remember to adapt the model and field names according to your actual data model


0
Avatar
Opusti
Roger Masias Font
Avtor

Dear Zinfin,

I can't undestant, how are you filter self with specific invoice, i think that self contain a lot of invoice but i think vals contain some values of specific invoice or all of invoice?

Kind regards, thanks for your help.

Zinfin Solutions Private Limited

Hello Roger,
the loop is iterating over invoices represented by self. The condition within the loop checks if the key 'state' is present in the vals dictionary and if its value is 'posted'. Additionally, it checks if the state of the current invoice in the loop is 'draft'. If these conditions are met, the code inside the loop is executed.

The invoice variable in the loop represents the current invoice being processed. So, the code inside the loop is dealing with a specific invoice that satisfies the conditions specified in the if statement. The vals dictionary seems to contain information related to the state of invoices, and it's being checked for the 'posted' state.

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

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Add a new column in the partner legder
account.move v17 Ledger
Avatar
Avatar
1
avg. 24
1855
odoo17: Is this bug known? Mail Composer in Account Move renders same report doesn't matter which mail template is selected (reproducable in runbot)
mail templates account.move reports v17
Avatar
0
apr. 24
2278
payment_state never get value "paid" in code
development invoice write onchange v17
Avatar
Avatar
1
mar. 24
1878
Ya es posible hacer Upgrade de v17 a v17.1 ?
v17
Avatar
Avatar
1
okt. 25
1370
How to add a new Many2one field in res.config.settings? Solved
v17
Avatar
Avatar
Avatar
Avatar
4
okt. 25
3811
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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