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?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
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?
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
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.
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati| Post correlati | Risposte | Visualizzazioni | Attività | |
|---|---|---|---|---|
|
0
gen 25
|
1575 | |||
|
0
lug 24
|
1945 | |||
|
1
nov 25
|
2339 | |||
|
1
ott 25
|
6097 | |||
|
1
ott 22
|
12079 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
Hello,
Currently, invoices do not display the payment date at the view level. You’ll need to implement a customization to include it.