changeset 32eaefb1433b in tryton:6.6
details: https://hg.tryton.org/tryton?cmd=changeset&node=32eaefb1433b
description:
        Set header as last parameter of export_data_domain

        issue11885
        review424251003
        (grafted from 58f65c68964788a44f1ccc0d8b9104468162c9ac)
diffstat:

 tryton/gui/window/win_export.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r b7d3e9322184 -r 32eaefb1433b tryton/gui/window/win_export.py
--- a/tryton/gui/window/win_export.py   Tue Nov 08 21:54:01 2022 +0100
+++ b/tryton/gui/window/win_export.py   Sun Nov 13 10:07:52 2022 +0100
@@ -362,8 +362,8 @@
                 try:
                     data = RPCExecute(
                         'model', self.model, 'export_data_domain',
-                        domain, fields, header, offset, limit,
-                        self.screen.order, context=self.context)
+                        domain, fields, offset, limit, self.screen.order,
+                        header, context=self.context)
                 except RPCException:
                     data = []
 

Reply via email to