Commit a99b3ceb71af136d7d6b37eac3a9554dd0d4e62d
1 parent
e294fcbf
Exists in
master
Adicionado nova situação de matrícula "Retido por falta"
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
ieducar/lib/App/Model/MatriculaSituacao.php
... | ... | @@ -50,6 +50,7 @@ class App_Model_MatriculaSituacao extends CoreExt_Enum |
50 | 50 | const ABANDONO = 6; |
51 | 51 | const EM_EXAME = 7; |
52 | 52 | const APROVADO_APOS_EXAME = 8; |
53 | + const RETIDO_FALTA = 9; | |
53 | 54 | |
54 | 55 | protected $_data = array( |
55 | 56 | self::APROVADO => 'Aprovado', |
... | ... | @@ -59,7 +60,8 @@ class App_Model_MatriculaSituacao extends CoreExt_Enum |
59 | 60 | self::RECLASSIFICADO => 'Reclassificado', |
60 | 61 | self::ABANDONO => 'Abandono', |
61 | 62 | self::EM_EXAME => 'Em exame', |
62 | - self::APROVADO_APOS_EXAME => 'Aprovado após exame' | |
63 | + self::APROVADO_APOS_EXAME => 'Aprovado após exame', | |
64 | + self::RETIDO_FALTA => 'Retido por falta' | |
63 | 65 | ); |
64 | 66 | |
65 | 67 | public static function getInstance() | ... | ... |