From 7ebd4feeb5dcb847cffdfbf8937200fad00b6ba6 Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Fri, 17 Nov 2023 08:50:28 +0700 Subject: add where clause in account move --- import_account_move.ktr | 2 +- import_account_move_line.ktr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/import_account_move.ktr b/import_account_move.ktr index a9b4ffe..333b706 100644 --- a/import_account_move.ktr +++ b/import_account_move.ktr @@ -1011,7 +1011,7 @@ erp indoteknik production (localhost) select am.* from account_move am where (am.move_type = 'out_invoice' or journal_id = 3) ---and am.write_date >= (now() - '5 days'::interval) +and am.write_date >= (now() - '5 days'::interval) 0 N diff --git a/import_account_move_line.ktr b/import_account_move_line.ktr index 04082d0..0f58b0b 100644 --- a/import_account_move_line.ktr +++ b/import_account_move_line.ktr @@ -892,7 +892,7 @@ select aml.* from account_move_line aml join account_move am on am.id = aml.move_id where (am.move_type = 'out_invoice' or am.journal_id = 3) ---and aml.write_date >= (now() - '5 days'::interval) +and aml.write_date >= (now() - '5 days'::interval) 0 N -- cgit v1.2.3