You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SIPRP/trunk/SiprpWebFichasClinicas/WebContent/static/html/app/services/StaticData.js

44 lines
929 B

evoapp.factory('staticData', function($rootScope) {
//exceptions
var exceptions = {
ERROR: 'ERROR',
SECURITYEXCEPTION: 'SECURITYEXCEPTION',
SESSIONTIMEOUT: 'SESSIONTIMEOUT',
INFO: 'INFO',
QUESTION: 'QUESTION',
WARNING: 'WARNING'
};
var tiposFichas = [
{
id: 1,
descricao: 'Admissão'
},
{
id: 2,
descricao: 'Periódica Inicial'
},
{
id: 3,
descricao: 'Periódica'
},
{
id: 7,
descricao: 'Ocasional'
},
{
id: 8,
descricao: 'Enfermagem'
},
{
id: 9,
descricao: 'Medicina Curativa'
}
];
return {
exceptions: exceptions,
tiposFichas: tiposFichas
};
});