Bugs Fix Realisasi Pendapatan dan Tambahan unit pada download realisasi belanja
This commit is contained in:
+2
-3
@@ -122,9 +122,8 @@ function getAlphabetCell($idx)
|
||||
{
|
||||
$alphabet = range("A","Z");
|
||||
if ($idx > 25)
|
||||
{
|
||||
$idx -= 26;
|
||||
return $alphabet[round($idx/25)].= getAlphabetCell($idx);
|
||||
{
|
||||
return $alphabet[(int)($idx/25)-1].= getAlphabetCell($idx%25);
|
||||
}else{
|
||||
return $alphabet[$idx];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user