diff --git a/account_due_list/i18n/account_due_list.pot b/account_due_list/i18n/account_due_list.pot index 0a1cda690c3..94ad3717a92 100644 --- a/account_due_list/i18n/account_due_list.pot +++ b/account_due_list/i18n/account_due_list.pot @@ -6,6 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 15.0\n" "Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-12 13:55+0000\n" +"PO-Revision-Date: 2023-09-12 13:55+0000\n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -48,6 +50,11 @@ msgstr "" msgid "Group By" msgstr "" +#. module: account_due_list +#: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_filter +msgid "Incoming" +msgstr "" + #. module: account_due_list #: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_filter #: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_tree @@ -74,6 +81,11 @@ msgstr "" msgid "Not Full Reconciled" msgstr "" +#. module: account_due_list +#: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_filter +msgid "Outgoing" +msgstr "" + #. module: account_due_list #: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_filter msgid "Overdue" diff --git a/account_due_list/i18n/es.po b/account_due_list/i18n/es.po index cad5a52be0e..c8a57145832 100644 --- a/account_due_list/i18n/es.po +++ b/account_due_list/i18n/es.po @@ -80,6 +80,16 @@ msgstr "Apunte contable" msgid "Not Full Reconciled" msgstr "No conciliado completamente" +#. module: account_due_list +#: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_filter +msgid "Incoming" +msgstr "A recibir" + +#. module: account_due_list +#: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_filter +msgid "Outgoing" +msgstr "A dar salida" + #. module: account_due_list #: model_terms:ir.ui.view,arch_db:account_due_list.view_payments_filter msgid "Overdue" diff --git a/account_due_list/readme/CONTRIBUTORS.rst b/account_due_list/readme/CONTRIBUTORS.rst index 445ab68783c..24923174e05 100644 --- a/account_due_list/readme/CONTRIBUTORS.rst +++ b/account_due_list/readme/CONTRIBUTORS.rst @@ -8,6 +8,7 @@ * Pedro M. Baeza * Carlos Dauden * Luis Daniel Lafaurie + * Carolina Fernandez * Jordi Ballester (Odoo v9 port) * Maxime Chambreuil diff --git a/account_due_list/readme/DESCRIPTION.rst b/account_due_list/readme/DESCRIPTION.rst index 39477b84ddf..e6c684a9d75 100644 --- a/account_due_list/readme/DESCRIPTION.rst +++ b/account_due_list/readme/DESCRIPTION.rst @@ -1,2 +1,2 @@ This module adds a pending payments due list. The list contains every -expected payment that has been generated by invoices. The list is fully filterable. +expected payment that has been generated by reconcilable accounts. The list is fully filterable. diff --git a/account_due_list/static/description/index.html b/account_due_list/static/description/index.html index c891e6598a2..32643656485 100644 --- a/account_due_list/static/description/index.html +++ b/account_due_list/static/description/index.html @@ -431,6 +431,7 @@

Contributors

  • Pedro M. Baeza
  • Carlos Dauden
  • Luis Daniel Lafaurie
  • +
  • Carolina Fernandez
  • diff --git a/account_due_list/views/payment_view.xml b/account_due_list/views/payment_view.xml index 0fb012a9fd5..a38e840f958 100644 --- a/account_due_list/views/payment_view.xml +++ b/account_due_list/views/payment_view.xml @@ -1,6 +1,6 @@ - + Payments account.move.line @@ -106,6 +106,8 @@ domain="[('account_id.internal_type','=','payable')]" name="payable" /> + + tree,form,pivot,graph {'search_default_posted_moves': 1, 'search_default_from_invoices': 1, 'search_default_not_full_reconciled': 1} - {'search_default_posted_moves': 1, 'search_default_from_invoices': 1, 'search_default_not_full_reconciled': 1} [('account_id.internal_type', 'in', ['receivable', 'payable']), ('balance', '!=', 0)] + >[('account_id.reconcile', '=', True), ('balance', '!=', 0)]