forked from Coded/SIPRP
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.
76 lines
3.8 KiB
76 lines
3.8 KiB
/*
|
|
* MedicinaConstants.java
|
|
*
|
|
* Created on 6 de Julho de 2006, 15:22
|
|
*
|
|
* To change this template, choose Tools | Template Manager
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
package siprp.medicina;
|
|
|
|
import com.evolute.utils.Singleton;
|
|
import siprp.SingletonConstants;
|
|
|
|
/**
|
|
*
|
|
* @author fpalma
|
|
*/
|
|
public interface MedicinaConstants
|
|
{
|
|
public static final int MOTIVO_ADMISSAO = 1;
|
|
public static final Integer MOTIVO_ADMISSAO_INTEGER = new Integer( MOTIVO_ADMISSAO );
|
|
public static final String MOTIVO_ADMISSAO_STR = "Admiss\u00e3o";
|
|
public static final int MOTIVO_PERIODICO = 2;
|
|
public static final Integer MOTIVO_PERIODICO_INTEGER = new Integer( MOTIVO_PERIODICO );
|
|
public static final String MOTIVO_PERIODICO_STR = "Peri\u00f3dico";
|
|
public static final int MOTIVO_OCASIONAL = 3;
|
|
public static final Integer MOTIVO_OCASIONAL_INTEGER = new Integer( MOTIVO_OCASIONAL );
|
|
public static final String MOTIVO_OCASIONAL_STR = "Ocasional";
|
|
public static final int MOTIVO_PERIODICO_INICIAL = 5;
|
|
public static final Integer MOTIVO_PERIODICO_INICIAL_INTEGER = new Integer( MOTIVO_PERIODICO_INICIAL );
|
|
public static final String MOTIVO_PERIODICO_INICIAL_STR = "Peri\u00f3dico inicial";
|
|
|
|
public static final int SUB_MOTIVO_APOS_DOENCA = 1;
|
|
public static final Integer SUB_MOTIVO_APOS_DOENCA_INTEGER = new Integer( SUB_MOTIVO_APOS_DOENCA );
|
|
public static final String SUB_MOTIVO_APOS_DOENCA_STR = "Ap\u00f3s doen\u00e7a";
|
|
public static final int SUB_MOTIVO_APOS_ACIDENTE = 2;
|
|
public static final Integer SUB_MOTIVO_APOS_ACIDENTE_INTEGER = new Integer( SUB_MOTIVO_APOS_ACIDENTE );
|
|
public static final String SUB_MOTIVO_APOS_ACIDENTE_STR = "Ap\u00f3s acidente";
|
|
public static final int SUB_MOTIVO_PEDIDO_TRABALHADOR = 3;
|
|
public static final Integer SUB_MOTIVO_PEDIDO_TRABALHADOR_INTEGER = new Integer( SUB_MOTIVO_PEDIDO_TRABALHADOR );
|
|
public static final String SUB_MOTIVO_PEDIDO_TRABALHADOR_STR = "A pedido do trabalhador";
|
|
public static final int SUB_MOTIVO_PEDIDO_SERVICO = 4;
|
|
public static final Integer SUB_MOTIVO_PEDIDO_SERVICO_INTEGER = new Integer( SUB_MOTIVO_PEDIDO_SERVICO );
|
|
public static final String SUB_MOTIVO_PEDIDO_SERVICO_STR = "A pedido do servi\u00e7o";
|
|
public static final int SUB_MOTIVO_MUDANCA_FUNCAO = 5;
|
|
public static final Integer SUB_MOTIVO_MUDANCA_FUNCAO_INTEGER = new Integer( SUB_MOTIVO_MUDANCA_FUNCAO );
|
|
public static final String SUB_MOTIVO_MUDANCA_FUNCAO_STR = "Por mudan\u00e7a de fun\u00e7\u00e3o";
|
|
public static final int SUB_MOTIVO_ALTERACAO_CONDICOES = 6;
|
|
public static final Integer SUB_MOTIVO_ALTERACAO_CONDICOES_INTEGER = new Integer( SUB_MOTIVO_ALTERACAO_CONDICOES );
|
|
public static final String SUB_MOTIVO_ALTERACAO_CONDICOES_STR = "Por altera\u00e7\u00e3o das condi\u00e7\u00f5es de trabalho";
|
|
public static final int SUB_MOTIVO_OUTRO = 10;
|
|
public static final Integer SUB_MOTIVO_OUTRO_INTEGER = new Integer( SUB_MOTIVO_OUTRO );
|
|
public static final String SUB_MOTIVO_OUTRO_STR = "Outro";
|
|
|
|
public static final int ESTADO_POR_REALIZAR = 0;
|
|
public static final int ESTADO_PARCIALMENTE_REALIZADO = 1;
|
|
public static final int ESTADO_REALIZADO = 2;
|
|
public static final int ESTADO_DESMARCADO_TRABALHADOR = 3;
|
|
public static final int ESTADO_DESMARCADO_EMPRESA = 4;
|
|
public static final int ESTADO_FALTOU = 5;
|
|
|
|
public static final String ESTADOS_CONSULTA_STR[] =
|
|
new String[]{ "Por Realizar", null, "Realizada",
|
|
"Desmarcada pelo Trabalhador", "Desmarcada pela " + Singleton.getInstance( SingletonConstants.COMPANY_ACRONYM ),
|
|
"Trabalhador Faltou" };
|
|
|
|
public static final String ESTADOS_EXAME_STR[] =
|
|
new String[]{ "Por Realizar", "Parcialmente Realizados", "Realizados",
|
|
"Desmarcados pelo Trabalhador", "Desmarcados pela " + Singleton.getInstance( SingletonConstants.COMPANY_ACRONYM ),
|
|
"Trabalhador Faltou" };
|
|
|
|
public static final String ESTADOS_STR[][] =
|
|
new String[][]{ ESTADOS_EXAME_STR, ESTADOS_CONSULTA_STR };
|
|
}
|