diff options
Diffstat (limited to 'mayor-orig/mayor-naplo/www')
3 files changed, 11 insertions, 10 deletions
diff --git a/mayor-orig/mayor-naplo/www/include/menu/private/hu_HU/module-naplo.php b/mayor-orig/mayor-naplo/www/include/menu/private/hu_HU/module-naplo.php index 569953b3..5d998779 100644 --- a/mayor-orig/mayor-naplo/www/include/menu/private/hu_HU/module-naplo.php +++ b/mayor-orig/mayor-naplo/www/include/menu/private/hu_HU/module-naplo.php @@ -150,7 +150,7 @@ $MENU['modules']['naplo']['sub']['haladasi'] = array( 'hetes' => array(array('txt' => 'Hetesek')), 'stat' => array(array('txt' => 'Haladási statisztika')), - 'elszamolas' => array(array('txt' => 'Munkaidő')), + 'elszamolas' => array(array('txt' => 'Munkaidő elszámolás')), ); if (MAYOR_SOCIAL === true) { $MENU['modules']['naplo']['sub']['haladasi']['helyettesites'] = array(array('txt' => 'Helyettesítés kezelés')); @@ -302,7 +302,7 @@ 'specialis' => array(array('txt' => 'Speciális nap')), 'elmaradas' => array(array('txt' => 'Haladási elmaradások')), 'stat' => array(array('txt' => 'Haladási statisztika')), - 'elszamolas' => array(array('txt' => 'Elszámolás')), + 'elszamolas' => array(array('txt' => 'Munkaidő elszámolás')), 'oralatogatas' => array(array('txt' => 'Óralátogatás')), 'hetes' => array(array('txt' => 'Hetesek')), ); @@ -431,7 +431,7 @@ 'specialis' => array(array('txt' => 'Speciális nap', 'rejtett' => true)), 'elmaradas' => array(array('txt' => 'Haladási elmaradások', 'rejtett' => true)), 'stat' => array(array('txt' => 'Haladási statisztika', 'rejtett' => true)), - 'elszamolas' => array(array('txt' => 'Elszámolás', 'rejtett' => true)), + 'elszamolas' => array(array('txt' => 'Munkaidő elszámolás', 'rejtett' => true)), 'oralatogatas' => array(array('txt' => 'Óralátogatás', 'rejtett' => true)), 'hetes' => array(array('txt' => 'Hetesek')), ); diff --git a/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/cronFutar.phtml b/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/cronFutar.phtml index 8dc73ed5..84d59777 100644 --- a/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/cronFutar.phtml +++ b/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/cronFutar.phtml @@ -155,9 +155,10 @@ $str[] = 'tárgyból'; $str[] = '<b>'.($KOVETELMENY[$D['jegyAdat']['jegyTipus']][$D['jegyAdat']['jegy']]['hivatalos']).'</b>'; - $str[] = '(röviden: '.$KOVETELMENY[$D['jegyAdat']['jegyTipus']][$D['jegyAdat']['jegy']]['rovid'].'),'; - $str[] = $D['jegyAdat']['jegyTipus']; - $str[] = 'típusú értékelés került beírásra az osztályozó naplóba.'; + $str[] = '(röviden: '.$KOVETELMENY[$D['jegyAdat']['jegyTipus']][$D['jegyAdat']['jegy']]['rovid'].')'; + if (!in_array($D['jegyAdat']['jegyTipus'],array('jegy','féljegy'))) $str[] = $D['jegyAdat']['jegyTipus'].' típusú'; + $str[] = 'értékelés került beírásra az osztályozó naplóba'; + } if (is_array($D['oraAdat'])) { diff --git a/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/hirnok.phtml b/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/hirnok.phtml index ab05f322..a70662e9 100644 --- a/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/hirnok.phtml +++ b/mayor-orig/mayor-naplo/www/skin/classic/module-naplo/html/hirnok/hirnok.phtml @@ -72,7 +72,7 @@ function putHirnokBadge_jegy($D) { echo '<a href="'.href('index.php?page=naplo&sub=osztalyozo&f=diak').'">'; // echo '<span class="icon-pencil"></span>'; - if (in_array($D['jegyAdat']['jegy'],array(1,2,3,4,5))) echo '<span class="material-icons">looks_'.intval(($D['jegyAdat']['jegy'])).'</span>'; + if (in_array($D['jegyAdat']['jegy'],array(1,2,3,4,5)) && in_array($D['jegyAdat']['jegyTipus'],array('jegy','féljegy'))) echo '<span class="material-icons">looks_'.intval(($D['jegyAdat']['jegy'])).'</span>'; else echo '<span class="material-icons">mode_edit</span>'; echo '</a>'; } @@ -232,9 +232,9 @@ $str[] = 'tárgyból'; $str[] = '<b>'.($KOVETELMENY[$D['jegyAdat']['jegyTipus']][$D['jegyAdat']['jegy']]['hivatalos']).'</b>'; - $str[] = '('.$KOVETELMENY[$D['jegyAdat']['jegyTipus']][$D['jegyAdat']['jegy']]['rovid'].'),'; - $str[] = $D['jegyAdat']['jegyTipus']; - $str[] = 'típusú értékelés került beírásra az osztályozó naplóba.'; + $str[] = '('.$KOVETELMENY[$D['jegyAdat']['jegyTipus']][$D['jegyAdat']['jegy']]['rovid'].')'; + if (!in_array($D['jegyAdat']['jegyTipus'],array('jegy','féljegy'))) $str[] = $D['jegyAdat']['jegyTipus'].' típusú'; + $str[] = 'értékelés került beírásra az osztályozó naplóba'; } if (is_array($D['oraAdat'])) { |