changeset 0ad1d0420d89 in modules/account:default
details: https://hg.tryton.org/modules/account?cmd=changeset&node=0ad1d0420d89
description:
        Order payable/receivable lines by maturity date

        issue11259
        review390091002
diffstat:

 move.xml |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 1ddf373597a2 -r 0ad1d0420d89 move.xml
--- a/move.xml  Sun Mar 06 13:45:10 2022 +0100
+++ b/move.xml  Sun Mar 20 01:29:44 2022 +0100
@@ -242,7 +242,7 @@
                 pyson="1"/>
             <field name="search_value"
                 eval="[('reconciliation', '=', None)]" pyson="1"/>
-            <field name="order" eval="[('date', 'DESC')]" pyson="1"/>
+            <field name="order" eval="[('maturity_date', 'ASC'), ('date', 
'DESC'), ('id', 'DESC')]" pyson="1"/>
         </record>
         <record model="ir.action.act_window.view"
             id="act_move_line_payable_receivable_view1">

Reply via email to