problem is here:
mktime(0, 0, 0, 0, (int)$cron['day_of_week'])
5th param have to be date("j") not date("w")
$cron['day_of_week'] = ($cron['day_of_week'] == -1) ? self::$module->l('Every day of the week', 'CronJobsForms') : self::$module->l(date('l', mktime(0, 0, 0, 0, (int)$cron['day_of_week'])));
https://github.com/PrestaShop/cronjobs/blob/master/classes/CronJobsForms.php
line: 308
Cron task works well, problem is only in list of tasks.