From 0ceb03c7f561703331477c31d08ff819cdac376d Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Mon, 9 Oct 2023 14:45:14 +0700 Subject: add where clause --- 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 68db24c..5c16c43 100644 --- a/import_account_move.ktr +++ b/import_account_move.ktr @@ -1009,7 +1009,7 @@ erp indoteknik production (localhost) - select * from account_move --where write_date >= (now() - '5 days'::interval) + select * from account_move where write_date >= (now() - '5 days'::interval) 0 N diff --git a/import_account_move_line.ktr b/import_account_move_line.ktr index cae2010..383d05f 100644 --- a/import_account_move_line.ktr +++ b/import_account_move_line.ktr @@ -889,7 +889,7 @@ erp indoteknik production (localhost) - select * from account_move_line --where write_date >= (now() - '5 days'::interval) + select * from account_move_line where write_date >= (now() - '5 days'::interval) 0 N -- cgit v1.2.3