EH
Asked
I want to ask about cron job, after our store closed i always run cron job from the setting -> system. Lets say on that day i have product revenue 500,000 after the cron job is completed they email us something with profit information but the information is not that day. How can i change it to that day ?
- MSAnsweredHello,
The information is for previous days not today. You will need to modify the `$date` in `yesterday_report` method of `app/models/admin/Cron_model.php`
Thank you - EHAnsweredThis line ? "$date = date('Y-m-d', strtotime('-1 day'));"
IF i want it become today i should change the -1 day? - MSAnsweredHello,
You can change to `$date = date('Y-m-d');` for today.
Thank you - EHAnsweredThankyou.
- Login to Reply