From 77d1024bab57f7ff8278e060c35ff461ea56d967 Mon Sep 17 00:00:00 2001 From: benjamin <benjamin@le-filament.com> Date: Mon, 23 Aug 2021 17:38:55 +0200 Subject: [PATCH] [fix] error extra params in url --- controllers/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/main.py b/controllers/main.py index 8239055..bcc354b 100644 --- a/controllers/main.py +++ b/controllers/main.py @@ -20,7 +20,7 @@ class ExportJournalCg(http.Controller): @http.route('/web/export_journal_cg/', type='http', auth="user") @serialize_exception def export_journal_cg( - self, type, date_start, date_end, company_id): + self, type, date_start, date_end, company_id, **kwargs): """ Sélectionne les account.move.line correspondants aux journaux et à la plage de date définis -- GitLab