Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

1

...

Aqui será informado as categorias de trabalhadores, ou quais sindicatos presentes em sua empresa. Esse registro é muito importante para fins de folha de pagamento, uma vez que a regra de cálculo irá se basear nas especificações dos sindicatos que representam os trabalhadores. Há três tipos possíveis de categoria, sendo OnShore, OffShore e Maritime. Esse cadastro é mais um dos quais você dificilmente deva se preocupar, visto que durante a fase de implantação do sistema em sua empresa, iremos mapear esse processo e importa-lo para dentro do DRAKE.

2. Permissões de acesso

Para ter acesso a essa funcionalidade, a permissão “Categorias” deverá ser concedida aos perfis responsáveis por operar e controlar a funcionalidade.

...

3. Passo a passo

3.1 Acesse a tela de “Cadastro de categoria” em: CADASTROS > RH > CATEGORIAS

3.2 Feito o acesso, será possível visualizar todas as categorias já cadastras, mas iremos agora cadastrar uma nova. Clique no ícone de “Adicionar” no canto superior direito da tela.

...

3.3 A janela de “Nova Categoria” irá abrir. Preencha todos os campos.

...

  • Identificador - Nesse campo é possível inserir até 10 caracteres, onde deve ser colocado a sigla da categoria.

  • Nome - Coloque o nome completo da categoria.

  • Tipo de Categoria - Informa ao sistema se trata-se de uma categoria OnShore, OffShore ou Maritime.

  • Multiplicador de base salarial - Caso a categoria informada tenha algum salário diferenciado, informe ao sistema para fins de folha. É um valor que será multiplicado ao salário base para chegar ao valor final de salário para fins de cálculo de diária de diferença de função. O valor informado deve ser decimal, como 1.7 ou 2.34.

  • Ativo - Informe ao sistema se trata-se de uma categoria ativa ou não. Caso não seja mais uma categoria válida (não ativa) , ainda assim orientamos para que você informe ao sistema, para fins de registro e controle de sua empresa.

3.4 Após preencher os campos, clique em “Salvar” e a nova categoria acaba de ser registrada e está pronta para uso em /wiki/spaces/STAFF/pages/3408352

...

- Introduction

This is the part where all workers categories will be registered.

This record is important considering payroll, once that the calculation rule will base on specifications that represents those workers. There are three possible categories types, Offshore, Onshore and Maritime. These records are mapped and imported during the user company’s system implementation straightly to DRAKE.

Índice

2 - Permissions

To access this functionality, the permission “Categories” must be granted to the responsible profiles for operate and control the functionality.

To grant such access, read the article: Granting Access Permissions


3 - Steps

3.1 Go to “category Registration” on: Records > HR > Categories

3.2 After this, will be possible to view all the categories already registered. In it is necessary to add a new category, click on the “Add” button as below:

Image Added

3.3 The window “New Category” will be displayed. Fill all the necessary fields.

Image Added

  • Identifier - In this field is possible to add the maximum of 10 characters. Mostly used to include the Acronym.

  • Name- Include the category’s full name.

  • Category Type - Informs the system if is an Onshore, Offshore or Maritime category.

  • Base Salary Multiplier - If the informed category has any remuneration difference, inform the system considering the payroll. It is an amount that will be multiplied to the base salary to reach the finalo value calculating the daily payment for the function. The value must be a decimal, as 1.7 or 2.34.

Enabled - Inform the system if the category is active or not. If is not a valid category anymore (disabled), it is still necessary to inform the system, in order to maintain the registration and control of the company.

3.4 After filling the fields, click on “Save” and the new category is now registered and ready to be used on Records - Workers

Informações

If you are a developer and wants to know further about the multiplier, the operation below is for you:

retval = (SalarioFinal(nivelDaDiferenca) - SalarioFinal(levelFrom, salary)) / 30 * 2;

private decimal SalarioFinal(JobLevelModel level, decimal? salario = null)
{
salario = salario ?? level.Salary; return salario.Value * level.BaseSalaryMultiplier;
}