Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
pad-upe
Commits
dc145047
Commit
dc145047
authored
May 13, 2023
by
Yuri Resende
Browse files
Adicionando a descrição da atividade de acordo com o código
parent
fb2ec161
Changes
29
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/Dimensao/Tabelas/Ensino/EnsinoAtendimentoDiscenteController.php
View file @
dc145047
...
...
@@ -208,4 +208,9 @@ class EnsinoAtendimentoDiscenteController extends Controller
return
Response
::
json
([
'errors'
=>
$validator
->
errors
(),
'status'
=>
400
]);
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Atendimento ao Discente"
;
}
}
\ No newline at end of file
app/Models/Tabelas/Ensino/EnsinoAtendimentoDiscente.php
View file @
dc145047
...
...
@@ -80,5 +80,10 @@ class EnsinoAtendimentoDiscente extends Model
{
return
new
EnsinoAtendimentoDiscenteQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Atendimento ao Discente"
;
}
}
app/Models/Tabelas/Ensino/EnsinoAula.php
View file @
dc145047
...
...
@@ -111,4 +111,8 @@ class EnsinoAula extends Model
return
new
EnsinoAulaQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Aula"
;
}
}
app/Models/Tabelas/Ensino/EnsinoCoordenacaoRegencia.php
View file @
dc145047
...
...
@@ -117,4 +117,9 @@ class EnsinoCoordenacaoRegencia extends Model
public
static
function
initQuery
()
{
return
new
EnsinoCoordenacaoRegenciaQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Coordenacao/Regência Componentes Curriculares"
;
}
}
\ No newline at end of file
app/Models/Tabelas/Ensino/EnsinoMembroDocente.php
View file @
dc145047
...
...
@@ -77,5 +77,10 @@ class EnsinoMembroDocente extends Model
{
return
new
EnsinoMembroDocenteQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Membro Docente"
;
}
}
app/Models/Tabelas/Ensino/EnsinoOrientacao.php
View file @
dc145047
...
...
@@ -132,4 +132,9 @@ class EnsinoOrientacao extends Model
return
new
EnsinoOrientacaoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Orientações"
;
}
}
app/Models/Tabelas/Ensino/EnsinoOutros.php
View file @
dc145047
...
...
@@ -66,4 +66,9 @@ class EnsinoOutros extends Model
return
new
EnsinoOutrosQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Outros"
;
}
}
app/Models/Tabelas/Ensino/EnsinoParticipacao.php
View file @
dc145047
...
...
@@ -76,4 +76,9 @@ class EnsinoParticipacao extends Model
return
new
EnsinoParticipacaoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Participação"
;
}
}
app/Models/Tabelas/Ensino/EnsinoProjeto.php
View file @
dc145047
...
...
@@ -93,4 +93,9 @@ class EnsinoProjeto extends Model
return
new
EnsinoProjetoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Projeto"
;
}
}
app/Models/Tabelas/Ensino/EnsinoSupervisao.php
View file @
dc145047
...
...
@@ -132,4 +132,9 @@ class EnsinoSupervisao extends Model
return
new
EnsinoSupervisaoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Supervisões"
;
}
}
app/Models/Tabelas/Extensao/ExtensaoCoordenacao.php
View file @
dc145047
...
...
@@ -108,4 +108,8 @@ class ExtensaoCoordenacao extends Model
return
new
ExtensaoCoordenacaoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Coordenação"
;
}
}
app/Models/Tabelas/Extensao/ExtensaoOrientacao.php
View file @
dc145047
...
...
@@ -108,4 +108,8 @@ class ExtensaoOrientacao extends Model
return
new
ExtensaoOrientacaoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Orientação"
;
}
}
app/Models/Tabelas/Extensao/ExtensaoOutros.php
View file @
dc145047
...
...
@@ -66,4 +66,8 @@ class ExtensaoOutros extends Model
return
new
ExtensaoOutrosQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Outros"
;
}
}
app/Models/Tabelas/Gestao/GestaoCoordenacaoLaboratoriosDidaticos.php
View file @
dc145047
...
...
@@ -65,4 +65,9 @@ class GestaoCoordenacaoLaboratoriosDidaticos extends Model
{
return
new
GestaoCoordenacaoLaboratoriosDidaticosQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Coordenação de Laboratórios Didático, de Informática ou de Ensino"
;
}
}
app/Models/Tabelas/Gestao/GestaoCoordenacaoProgramaInstitucional.php
View file @
dc145047
...
...
@@ -65,4 +65,9 @@ class GestaoCoordenacaoProgramaInstitucional extends Model
{
return
new
GestaoCoordenacaoProgramaInstitucionalQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Coordenação de Programa Institucional"
;
}
}
app/Models/Tabelas/Gestao/GestaoMembroCamaras.php
View file @
dc145047
...
...
@@ -65,4 +65,9 @@ class GestaoMembroCamaras extends Model
{
return
new
GestaoMembroCamarasQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Participação Como Membro nas Câmaras Consultivas dos Conselhos Superiores"
;
}
}
app/Models/Tabelas/Gestao/GestaoMembroComissao.php
View file @
dc145047
...
...
@@ -53,4 +53,9 @@ class GestaoMembroComissao extends Model
{
return
new
GestaoMembroComissaoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
" Membro de Comissão/Comitê/Núcleo, Formalmente Designado(a) no Âmbito da UPE"
;
}
}
app/Models/Tabelas/Gestao/GestaoMembroConselho.php
View file @
dc145047
...
...
@@ -65,4 +65,9 @@ class GestaoMembroConselho extends Model
{
return
new
GestaoMembroConselhoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Membro de Conselho/Comissão/Comitê/Núcleo, Formalmente Designado(a) para a Representação da UPE"
;
}
}
app/Models/Tabelas/Gestao/GestaoMembroTitularConselho.php
View file @
dc145047
...
...
@@ -65,4 +65,9 @@ class GestaoMembroTitularConselho extends Model
{
return
new
GestaoMembroTitularConselhoQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Membro Titular dos Conselhos da UPE (CEPE, CONSUN OU CGA)"
;
}
}
app/Models/Tabelas/Gestao/GestaoOutros.php
View file @
dc145047
...
...
@@ -66,4 +66,8 @@ class GestaoOutros extends Model
return
new
GestaoOutrosQuery
(
get_called_class
());
}
//retorna a atividade correspondente ao código
public
function
getDescricaoAtividade
(){
return
"Outros"
;
}
}
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment