Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Can I show the Payment Date(s) for my Customer Invoices? Odoo 19

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
invoicecustomerpaymentdates
1 Rispondi
211 Visualizzazioni
Avatar
Community Question

Users are asking for a List that shows Customer Invoices, together with the date they were paid.

Given that an Invoice can be paid with a single payment, or multiple payments, and that a single Payment can cover multiple Invoices, is this possible?

0
Avatar
Abbandona
Codesphere Tech

Hello,
Currently, invoices do not display the payment date at the view level. You’ll need to implement a customization to include it.

Avatar
Ray Carnes (ray)
Risposta migliore

You want to create a new Menu that displays records from the account.partial.reconcile model, with custom fields added to pull additional information.

An example:

Here you can see

  • INV/2025/00001 was paid with two payments of $500 each
  • INV/2025/00003 was partially paid with a payment of $200
  • INV/2025/00004 and INV/2025/00005 were paid with the same $1,200 payment
  • INV/2025/00006 was paid with a payment of $10,000 that has an unapplied balance


This approach leverages several additional custom fields:


With XML like this:

<list create="0">
    <field name="x_type" column_invisible="1"/>
    <field name="debit_move_id" string="Invoice Number"/>
    <field name="x_partner" string="Customer"/>
    <field name="x_date" string="Invoice Date"/>
    <field name="x_total" widget="monetary"
options="{'currency_field': 'debit_currency_id'}"/>
    <field name="debit_currency_id" column_invisible="1"/>
    <field name="x_status_in_payment" string="Status" widget="badge"
decoration-info="x_status_in_payment == 'draft'"
decoration-danger="x_status_in_payment == 'cancel'"
decoration-muted="x_status_in_payment in ('posted', 'sent', 'partial')"
decoration-success="x_status_in_payment in ('in_payment', 'paid', 'reversed')"/>
    <field name="x_payment"/>
    <field name="max_date" string="Date"/>
    <field name="x_payment_amount" />
    <field name="credit_amount_currency" string="Applied"/>
    <field name="credit_currency_id" column_invisible="1"/>
</list>


The Window Action would need to filter for just Customer related payments, since we use this same model for Vendor Payments:


Your Odoo Digital Advisor or Odoo Partner can help you if you don't have the technical skills to make these modifications to your database.

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Payment / Invoicing
invoice customer payment
Avatar
0
gen 25
1575
I want to receive the payment first then dispatch the item
invoice customer delivery payment
Avatar
0
lug 24
1945
How do I mark a "partial" invoice as paid, for real? Risolto
invoice payment
Avatar
1
nov 25
2339
How to create a payment for an invoice from python code in odoo15
invoice payment
Avatar
Avatar
1
ott 25
6097
How can you pay with write off
invoice payment
Avatar
Avatar
1
ott 22
12079
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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