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.
| 相关帖文 | 回复 | 查看 | 活动 | |
|---|---|---|---|---|
|
0
1月 25
|
1646 | |||
|
0
7月 24
|
2039 | |||
|
1
11月 25
|
2478 | |||
|
1
10月 25
|
6229 | |||
|
1
10月 22
|
12197 |
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.