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
    • Validacions
    • 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ó
    • Gestió immobiliària
    • 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

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
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

How to display Payment Date as a field in Inovice List View - Accounting App

Subscriure's

Get notified when there's activity on this post

This question has been flagged
accountinginvoicereportpaymentsv15
3 Respostes
4031 Vistes
Avatar
Naz

Hi,

 

All I need to do is (in Odoo 15 web):

 

When we make payment in Register Payment,

 

We get this Payment date right?

 

I need this payment date as a field, in accounting app > customers > Invoices(List view) with data being populated. 


So that, I would know when the payment is made.

 

If it is possible, kindly guide me with,


Thank You in Advance.
Email: nazeersaleem385@gmail.com


0
Avatar
Descartar
Avatar
Renata Carrillo
Best Answer

Hello, Naz.
Você pode fazer o seguinte (eu fiz e deu certo):
01) With Studio, create a Date type field in account.move [x_studio_data_de_pagamento_1] (and make it visible only when the entry type is equal to "Vendor Invoice": move_type != "in_invoice");

02) Add it to the tree view;

03) Create an automation with python code in Base Automation so that we can take the value of the 'date' field in account.payment and assign it to this field created with Studio, as follows:

for record in records:

    # Check if the payment state is 'not_paid'

    if record.payment_state == 'not_paid':

        # If the payment state is 'not_paid', clear the field 'x_studio_data_de_pagamento_1'

        record.update({'x_studio_data_de_pagamento_1': False})

    else:

        # Check if the invoice has associated payments

        if record.invoice_payments_widget:

            payments = record.invoice_payments_widget.get('content')

            dates = []

            for payment_info in payments:

                # Extract the payment date

                payment = payment_info.get('date', '')

                if payment:  # Add the date only if it is present

                    # Check if 'payment' is of type datetime.date

                    if isinstance(payment, datetime.date):

                        # Format the date in D/M/Y (Day/Month/Year) for display

                        formatted_date = payment.strftime('%d/%m/%Y')

                        dates.append(formatted_date)  # Use the formatted date

                    else:

                        # Otherwise, assume that 'payment' is a string in the format 'YYYY-MM-DD'

                        formatted_date = payment.split("-")

                        formatted_date = f"{formatted_date[2]}/{formatted_date[1]}/{formatted_date[0]}"

                        dates.append(formatted_date)  # Use the formatted date

            # Update the field 'x_studio_data_de_pagamento_1' with the first payment date

            if dates:  # Check if there are dates to update

                # The first payment date (in 'DD/MM/YYYY' format) will be converted to 'Date' without using fields

                first_payment_date_str = dates[0]  # Example: "26/03/2025"

                try:

                    # Converting the string 'DD/MM/YYYY' to the format 'YYYY-MM-DD'

                    day, month, year = first_payment_date_str.split('/')

                    first_payment_date = f"{year}-{month}-{day}"  # Format 'YYYY-MM-DD'

                    record.update({'x_studio_data_de_pagamento_1': first_payment_date})

                except ValueError:

                    # In case of conversion error, clear the field 'x_studio_data_de_pagamento_1'

                    record.update({'x_studio_data_de_pagamento_1': False})

            else:

                # If there are no dates, clear the field 'x_studio_data_de_pagamento_1'

                record.update({'x_studio_data_de_pagamento_1': False})

In my case, I needed to convert the date presentation to the Brazilian format, but you do not need to include this part of the code in your automation.

0
Avatar
Descartar
Avatar
Naz
Autor Best Answer

Hi Mily Shajan,

Thanks for your response. 

am working on odoo 15 web studio, above mentioned code did not work for me but using that code i have modified as per need. The modified code works well for me, i have created a field (date) and include that in my list view and i created one 'automated action' for 'model journal entry', i set trigger for 'on update' and triggers field is 'payment status' and action to do is 'execute python code' this is what i did, I will give that code here :

all_records = env['account.move'].search([])

#model name -> env['account.move']
#to get all the records ->  .search([])

for rec in all_records:    
if rec.payment_state == 'paid':        
​if rec.invoice_payments_widget:
​ ​try:                
​ ​ ​# Parse the JSON string into a dictionary                ​ ​ ​ ​ ​
​ ​ ​invoice_payments_widget_dict = json.loads(rec.invoice_payments_widget)                                
​ ​ ​# Access the required information                
​ ​ ​content_list = invoice_payments_widget_dict.get('content', [])                                
​ ​ ​if content_list:                    
​ ​ ​ ​content_data = content_list[0]                    
​ ​ ​ ​date_str = content_data.get('date', '')                                        
​ ​ ​ ​if date_str:                        
​ ​ ​ ​ ​rec['x_studio_date_field_a1MrW'] = date_str            
​ ​except Exception:                
​ ​ ​rec['x_studio_date_field_a1MrW'] = None

(Please check the indentation) 
 

0
Avatar
Descartar
Avatar
Mily Shajan
Best Answer

Hi Naz

Create a field payment_date in the 'account. move' model  and compute the value 

Try the following code 

class AccountMoveInherit(models.Model):
_inherit = 'account.move'

payment_date = fields.Char(compute='_compute_payment_date')

def _compute_payment_date(self):
self.payment_date = False
for inv in self:
dates = []
if inv.invoice_payments_widget:
payment = inv.invoice_payments_widget.get('content')
for payment_info in payment:
dates.append(str(payment_info.get('date', '')))
inv.payment_date = ', '.join(dates)


Inherit the tree view of the Invoices 'view_out_invoice_tree' and add this field 


Regards


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
Related Posts Respostes Vistes Activitat
How to display Payment Date as a field in Inovice List View - Accounting App
accounting invoice payments v15
Avatar
Avatar
Avatar
Avatar
4
de gen. 24
4758
Add Payment Date field in Accounting Invoice view
accounting invoice payments v15
Avatar
Avatar
1
de nov. 25
3960
Adding Payment Details to Invoice Reports
invoice report payments
Avatar
Avatar
Avatar
2
de febr. 25
2687
Add total no of quantities in the invoice report in odoo 17
accounting invoice report
Avatar
Avatar
Avatar
2
d’abr. 24
3607
Get this user error "Cannot create unbalanced journal entry." when i write 'quantity' or 'price_unit' in invoice_line_ids
accounting invoice v15
Avatar
Avatar
Avatar
2
d’abr. 24
2446
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 ภาษาไทย 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