Report show set default financial year filter..

This commit is contained in:
Cüneyt Şentürk
2021-06-01 22:02:30 +03:00
parent a9c4a7db08
commit 8cc4e32e04
3 changed files with 14 additions and 11 deletions

View File

@ -190,22 +190,14 @@ trait DateTime
public function getMonthlyDateFormat($year = null)
{
$format = 'M';
if ($this->getFinancialStart($year)->month != 1) {
$format = 'M Y';
}
$format = 'M Y';
return $format;
}
public function getQuarterlyDateFormat($year = null)
{
$format = 'M';
if ($this->getFinancialStart($year)->month != 1) {
$format = 'M Y';
}
$format = 'M Y';
return $format;
}