From d50aa01782305691485cdf5ae06493e0d0acbf5a Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Wed, 8 May 2024 14:49:02 +0700 Subject: change diff from 5 to 3 --- 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 fcfb96d..17e43bb 100644 --- a/import_account_move.ktr +++ b/import_account_move.ktr @@ -1022,7 +1022,7 @@ select am.* from account_move am where 1=1 --and (am.move_type = 'out_invoice' or journal_id = 3) -and am.write_date >= (now() - '5 days'::interval) +and am.write_date >= (now() - '3 days'::interval) 0 N diff --git a/import_account_move_line.ktr b/import_account_move_line.ktr index ba80dcf..205be45 100644 --- a/import_account_move_line.ktr +++ b/import_account_move_line.ktr @@ -893,7 +893,7 @@ join account_move am on am.id = aml.move_id where 1=1 --and (am.move_type = 'out_invoice' or am.journal_id = 3) -and aml.write_date >= (now() - '5 days'::interval) +and aml.write_date >= (now() - '3 days'::interval) 0 N -- cgit v1.2.3