fixed financial year filter

This commit is contained in:
Denis Duliçi
2022-08-04 12:09:54 +03:00
parent 36d05dda44
commit a7a89ff28b
2 changed files with 29 additions and 1 deletions

View File

@ -189,6 +189,13 @@ trait DateTime
return $date_picker_shortcuts;
}
public function getDailyDateFormat($year = null)
{
$format = 'd M Y';
return $format;
}
public function getMonthlyDateFormat($year = null)
{
$format = 'M Y';