Koha cronjobs are running on midnight. Overdue amount does not calculate by Koha in libraries shutting down Koha server at evening . You can run cronjob in convenient time.
Add following script in cronjob,
Open Applications > Accessories > Terminal
type
crontab -e
It will ask to select editor to open crontab. Press Enter button to proceed.
Add the following line in crontab editor
15 10 * * * /etc/cron.daily/koha-common
This script run Koha schedules tasks (e.g. fine calculation) every morning 10:15 AM. You can change to convenient time.
Press Ctrl + O to save the changes. Then Ctrl + X exit.
Reference: Crontab example
Add following script in cronjob,
Open Applications > Accessories > Terminal
type
crontab -e
It will ask to select editor to open crontab. Press Enter button to proceed.
Add the following line in crontab editor
15 10 * * * /etc/cron.daily/koha-common
This script run Koha schedules tasks (e.g. fine calculation) every morning 10:15 AM. You can change to convenient time.
Press Ctrl + O to save the changes. Then Ctrl + X exit.
Reference: Crontab example