From 70b06f02d73d3aad36002cdc9c84ed69c28a0026 Mon Sep 17 00:00:00 2001 From: Suherdy Yacob Date: Wed, 10 Jun 2026 08:41:18 +0700 Subject: [PATCH] chore: update automated cash entry execution time to 12:00 PM WIB (05:00 AM UTC) --- README.md | 2 +- __manifest__.py | 2 +- data/ir_cron.xml | 2 +- models/account_journal.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 30711ca..57a7a4f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Account Shared Bank Cash Auto Entry This module automatically creates and posts cash centralization entries between branch companies and the parent company based on the net cash movement of the previous day. Key Features: -* Run automatically every day at 10:00 AM WIB (03:00 AM UTC). +* Run automatically every day at 12:00 PM WIB (05:00 AM UTC). * Calculates net cash balance of the default cash account (111103) from the previous day. * Accounts for vendor payments (from the vendor_payment_misc_auto_entry module) and other cash movements. * Automatically converts currencies if the parent and branch company currencies are different. diff --git a/__manifest__.py b/__manifest__.py index 3342125..e0ebd83 100644 --- a/__manifest__.py +++ b/__manifest__.py @@ -3,7 +3,7 @@ 'name': 'Account Shared Bank Cash Auto Entry', 'version': '1.0', 'category': 'Accounting', - 'summary': 'Automatically generate cash centralization journal entries next day at 10:00 AM WIB', + 'summary': 'Automatically generate cash centralization journal entries next day at 12:00 PM WIB', 'author': 'Suherdy Yacob', 'depends': ['account_shared_bank_cash'], 'data': [ diff --git a/data/ir_cron.xml b/data/ir_cron.xml index efc84c2..442feb7 100644 --- a/data/ir_cron.xml +++ b/data/ir_cron.xml @@ -7,7 +7,7 @@ model._cron_create_cash_intercompany_entries() 1 days - + diff --git a/models/account_journal.py b/models/account_journal.py index 13b5a59..9f9d0e2 100644 --- a/models/account_journal.py +++ b/models/account_journal.py @@ -14,7 +14,7 @@ class AccountJournal(models.Model): @api.model def _cron_create_cash_intercompany_entries(self, target_date=None, journal_ids=None): """Cron action to automatically generate cash centralization entries. - Runs daily at 10:00 AM WIB (03:00 AM UTC) to process the previous day's net cash movements. + Runs daily at 12:00 PM WIB (05:00 AM UTC) to process the previous day's net cash movements. """ # Determine the target date (previous day in WIB by default) if not target_date: