Novo git da alteração
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>Desligamento</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.wst.validation.validationbuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
|
||||
<nature>com.totvs.tds.ecm.designer.nature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
|
||||
<classpathentry kind="src" path=""/>
|
||||
<classpathentry kind="con" path="com.totvs.tds.ecm.designer.libjs.ByYouECMBrowserLibrary"/>
|
||||
<classpathentry kind="output" path=""/>
|
||||
</classpath>
|
||||
@@ -0,0 +1,157 @@
|
||||
function onNotify(subject, receivers, template, params) {
|
||||
|
||||
// BLOQUEAR e-mails padrões do Fluig
|
||||
var templatesPadrao = [
|
||||
// Notificações de processo
|
||||
"TPLPROCESS_NEW_STATE_TO_MANAGER",
|
||||
"TPLPROCESS_NEW_STATE_TO_USER",
|
||||
"TPLPROCESS_NEW_STATE_TO_GROUP",
|
||||
|
||||
// Notificações de tarefas atribuídas
|
||||
"TPLTASK_ASSIGN_MANAGER",
|
||||
"TPLTASK_ASSIGN_USER",
|
||||
"TPLTASK_ASSIGN_GROUP",
|
||||
"TPLTASK_NEW_ASSIGN"
|
||||
];
|
||||
|
||||
// Se o template for padrão → BLOQUEAR
|
||||
if (templatesPadrao.indexOf(template) >= 0) {
|
||||
log.info("### [GINSENG][onNotify] BLOQUEANDO template padrão → " + template);
|
||||
receivers.clear();
|
||||
return;
|
||||
}
|
||||
|
||||
// SOMENTE PARA O PROCESSO DE DESLIGAMENTO
|
||||
var processo = params.get("WKDef");
|
||||
if (processo != "desligamentoColaborador") {
|
||||
return;
|
||||
}
|
||||
|
||||
var state = params.get("WKCurrentState");
|
||||
var numSolic = params.get("WKNumProces");
|
||||
|
||||
var linkSolic = params.get("SERVER_URL") +
|
||||
"/portal/p/1/pageworkflowview?app_ecm_workflowview_detailsProcessInstanceID=" +
|
||||
numSolic;
|
||||
|
||||
// CAMPOS QUE VOCÊ PRECISA
|
||||
var nomeColab = hAPI.getCardValue("colabDesliga");
|
||||
var cpf = hAPI.getCardValue("colabCpf");
|
||||
var admissao = hAPI.getCardValue("colabadmissao");
|
||||
var departamento = hAPI.getCardValue("departamento");
|
||||
var cargo = hAPI.getCardValue("cargoColaborador");
|
||||
var gestor = hAPI.getCardValue("requesterName");
|
||||
|
||||
var tipo = hAPI.getCardValue("tipodesligamento");
|
||||
var motivo = hAPI.getCardValue("motivoDesligamento");
|
||||
var aprov = hAPI.getCardValue("DesligamentoAprov");
|
||||
|
||||
var infoEstabilidades = ""
|
||||
+ "<p><b>Trintídio CCT:</b> " + hAPI.getCardValue("trintidiocct") + "</p>"
|
||||
+ "<p><b>Trintídio pós-férias:</b> " + hAPI.getCardValue("trintidioposferias") + "</p>"
|
||||
+ "<p><b>Afastamento:</b> " + hAPI.getCardValue("trintidioposafastamento") + "</p>"
|
||||
+ "<p><b>Pré-aposentadoria:</b> " + hAPI.getCardValue("preaposentadoria") + "</p>"
|
||||
+ "<p><b>Acidentária:</b> " + hAPI.getCardValue("acidentaria") + "</p>"
|
||||
+ "<p><b>Gestante/Lactante:</b> " + hAPI.getCardValue("gestante") + "</p>"
|
||||
+ "<p><b>Sindical:</b> " + hAPI.getCardValue("sindical") + "</p>"
|
||||
+ "<p><b>PCD:</b> " + hAPI.getCardValue("pcd") + "</p>"
|
||||
+ "<p><b>Outras Estabilidades:</b> " + hAPI.getCardValue("outros") + "</p>";
|
||||
|
||||
// VARIÁVEIS DO TEMPLATE
|
||||
var titulo = "";
|
||||
var descricao = "";
|
||||
var campos = "";
|
||||
|
||||
// ======================================================
|
||||
// STATE 4 → ABERTURA
|
||||
// ======================================================
|
||||
if (state == 4) {
|
||||
titulo = "Solicitação de desligamento aberta";
|
||||
descricao = "Uma nova solicitação foi iniciada no sistema.";
|
||||
|
||||
campos =
|
||||
"<p><b>Colaborador:</b> " + nomeColab + "</p>" +
|
||||
"<p><b>CPF:</b> " + cpf + "</p>" +
|
||||
"<p><b>Cargo:</b> " + cargo + "</p>" +
|
||||
"<p><b>Departamento:</b> " + departamento + "</p>" +
|
||||
"<p><b>Gestor responsável:</b> " + gestor + "</p>" +
|
||||
"<p><b>Tipo de desligamento:</b> " + tipo + "</p>" +
|
||||
"<p><b>Justificativa:</b> " + motivo + "</p>";
|
||||
}
|
||||
|
||||
// ======================================================
|
||||
// STATE 20 → APROVAÇÃO DO GESTOR
|
||||
// ======================================================
|
||||
if (state == 20) {
|
||||
titulo = "Solicitação em etapa de aprovação";
|
||||
descricao = "A solicitação avançou para a aprovação do gestor.";
|
||||
|
||||
campos =
|
||||
"<p><b>Colaborador:</b> " + nomeColab + "</p>" +
|
||||
"<p><b>CPF:</b> " + cpf + "</p>" +
|
||||
"<p><b>Cargo:</b> " + cargo + "</p>" +
|
||||
"<p><b>Resultado da aprovação:</b> " + aprov + "</p>";
|
||||
}
|
||||
|
||||
// ======================================================
|
||||
// STATE 22 → PREVISÃO E IMPEDITIVOS
|
||||
// ======================================================
|
||||
if (state == 22) {
|
||||
titulo = "Etapa: Previsão e Impeditivos";
|
||||
descricao = "O departamento de DP está preenchendo as previsões.";
|
||||
|
||||
campos =
|
||||
"<p><b>Colaborador:</b> " + nomeColab + "</p>" +
|
||||
infoEstabilidades;
|
||||
}
|
||||
|
||||
// ======================================================
|
||||
// STATE 24 → CONFORMIDADE
|
||||
// ======================================================
|
||||
if (state == 24) {
|
||||
titulo = "Etapa de análise de conformidades";
|
||||
descricao = "A área responsável está validando impedimentos.";
|
||||
|
||||
campos =
|
||||
"<p><b>Colaborador:</b> " + nomeColab + "</p>" +
|
||||
"<p><b>Possui impeditivos?</b> " + hAPI.getCardValue("impeditivosColab") + "</p>" +
|
||||
"<p><b>Informações adicionais:</b> " + hAPI.getCardValue("InforConf") + "</p>";
|
||||
}
|
||||
|
||||
// ======================================================
|
||||
// STATE 5 → COMUNICAÇÃO DO DESLIGAMENTO
|
||||
// ======================================================
|
||||
if (state == 5) {
|
||||
titulo = "Etapa de gestão e comunicação";
|
||||
descricao = "A área está realizando comunicação e alinhamentos.";
|
||||
|
||||
campos =
|
||||
"<p><b>Colaborador:</b> " + nomeColab + "</p>" +
|
||||
"<p><b>Data exata do desligamento:</b> " + hAPI.getCardValue("dataExata") + "</p>" +
|
||||
"<p><b>Detalhamento:</b> " + hAPI.getCardValue("detalheSolicitacao") + "</p>";
|
||||
}
|
||||
|
||||
// ======================================================
|
||||
// STATE 15 → INATIVAÇÃO DE PERFIS
|
||||
// ======================================================
|
||||
if (state == 15) {
|
||||
titulo = "Etapa: Inativação de Acessos";
|
||||
descricao = "A TI está desativando os perfis do colaborador.";
|
||||
|
||||
campos =
|
||||
"<p><b>Colaborador:</b> " + nomeColab + "</p>" +
|
||||
"<p><b>Considerações:</b> " + hAPI.getCardValue("consideracoes") + "</p>";
|
||||
}
|
||||
|
||||
// PARAMETROS PARA O TEMPLATE
|
||||
params.put("TEMPLATE_CUSTOM", "ginseng_notificacao");
|
||||
params.put("TITULO", titulo);
|
||||
params.put("DESCRICAO", descricao);
|
||||
params.put("CAMPOS", campos);
|
||||
params.put("LINK", linkSolic);
|
||||
params.put("NUMSOL", numSolic);
|
||||
|
||||
// ASSUNTO PERSONALIZADO
|
||||
subject.clear();
|
||||
subject.add("📌 " + titulo + " - Solicitação Nº " + numSolic);
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,911 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
|
||||
<!-- FLUIG STYLE GUIDE -->
|
||||
<link rel="stylesheet" href="/style-guide/css/fluig-style-guide.min.css">
|
||||
|
||||
<!-- RATING STARS -->
|
||||
<link rel="stylesheet" href="/style-guide/css/fluig-style-guide-ratingstars.min.css">
|
||||
|
||||
<!-- JQUERY (Fluig já usa, mas pode manter) -->
|
||||
<script src="/resources/js/jquery/jquery.js"></script>
|
||||
<script src="/resources/js/jquery/jquery-ui.min.js"></script>
|
||||
|
||||
<!-- MUSTACHE (WCM / Câmara) -->
|
||||
<script src="/resources/js/mustache/mustache-min.js"></script>
|
||||
|
||||
<!-- FLUIG JS -->
|
||||
<script src="/style-guide/js/fluig-style-guide.min.js"></script>
|
||||
<script src="/style-guide/js/fluig-style-guide-ratingstars.min.js"></script>
|
||||
|
||||
<!-- Máscaras -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.16/jquery.mask.min.js"></script>
|
||||
<script src="/webdesk/vcXMLRPC.js?plugin=jQueryMask"></script>
|
||||
|
||||
<!-- SEU CSS EXTERNO -->
|
||||
<link rel="stylesheet" href="desligamento.css">
|
||||
|
||||
<!-- SEU SCRIPT FINAL -->
|
||||
<script src="script.js"></script>
|
||||
|
||||
<style>
|
||||
h6 { color:#afb0b3 !important; font-weight:normal !important; }
|
||||
h2 { color:#04506b !important; display:flex !important; }
|
||||
h2:after { content:""; flex:1; border-bottom:2px solid #04506b; margin:auto; }
|
||||
.flaticon-account-box { color:#04506b !important; }
|
||||
#rcorners {
|
||||
height:110px; line-height:110px; color:white;
|
||||
border-radius:0 0 50px 50px;
|
||||
background:rgb(19,59,74);
|
||||
background:linear-gradient(90deg, rgb(19,59,74) 0%, rgb(19,59,74) 50%, rgb(19,59,74) 100%);
|
||||
text-align:center;
|
||||
}
|
||||
textarea { resize: vertical; }
|
||||
.ratingStars { display:flex; align-items:center; height:50px; }
|
||||
.ratingStars .minha-avaliacao { margin:0 20px; color:#f0ad4e; }
|
||||
.consegueResolverMotivo .textoAuxiliar {
|
||||
width:100%; color:#8c8d8f; font-size:12px;
|
||||
margin-left:1.5em; font-weight:400;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="fluig-style-guide" style="background-color: white">
|
||||
<form>
|
||||
<div style="display: none">
|
||||
<input type="text" id="WKNumProces" name="WKNumProces" />
|
||||
<input type="text" id="activity" name="activity" />
|
||||
<input type="text" id="formMode" name="formMode" />
|
||||
|
||||
<!-- requester -->
|
||||
<input type="text" id="requesterMail" name="requesterMail" />
|
||||
<input type="text" id="requesterId" name="requesterId" />
|
||||
|
||||
<!-- current user -->
|
||||
<input type="text" id="currentUserName" name="currentUserName" />
|
||||
<input type="text" id="currentUsermail" name="currentUsermail" />
|
||||
<input type="text" id="currentUserId" name="currentUserId" />
|
||||
</div>
|
||||
|
||||
<h1 id="rcorners">Desligamento de colaborador</h1>
|
||||
|
||||
<div class="container activity-all">
|
||||
<div class="activity activity-4">
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-account-box" aria-hidden="true"></i>
|
||||
Informações gerais
|
||||
</h2>
|
||||
<h6>
|
||||
Estes são os dados referentes aos responsáveis pela abertura e
|
||||
pela solicitação do atual processo.
|
||||
</h6>
|
||||
<br />
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="requesterName"> Gestor da Área </label>
|
||||
<input type="text" name="requesterName" id="requesterName" class="form-control"
|
||||
readonly data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataAbertura"> Data </label>
|
||||
<input type="text" name="dataAbertura" id="dataAbertura" class="form-control"
|
||||
readonly />
|
||||
</div>
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="emailGestorArea"> E-mail do gestor </label>
|
||||
<input type="text" name="emailGestorArea" id="emailGestorArea" class="form-control"
|
||||
readonly data-protection="E-mail do gestor" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-mail
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="colabDesliga">
|
||||
Nome do colaborador a ser desligado
|
||||
</label>
|
||||
<span class="required text-danger"><strong> * </strong></span>
|
||||
<input type="zoom" class="form-control requiredInput" name="colabDesliga"
|
||||
id="colabDesliga" data-zoom="{
|
||||
'displayKey':'full_name',
|
||||
'datasetId':'dsFeedzColaboradoresAtivos',
|
||||
'placeholder': 'Pesquisar nome do colaborador.',
|
||||
'fields':[
|
||||
{
|
||||
'field':'full_name',
|
||||
'label':'Nome',
|
||||
'standard':'true',
|
||||
'search':'true'
|
||||
}
|
||||
]
|
||||
}" />
|
||||
<p class="text-danger text-error">
|
||||
Preenchimento obrigatório.
|
||||
</p>
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="colabCpf"> CPF: </label>
|
||||
<input type="text" name="colabCpf" id="colabCpf" class="form-control" readonly
|
||||
data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="colabadmissao"> Data de Admissão </label>
|
||||
<input type="text" name="colabadmissao" id="colabadmissao" class="form-control" readonly
|
||||
data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-3 col-xs-6">
|
||||
<label for="departamento"> Departamento </label>
|
||||
<input type="text" name="departamento" id="departamento" class="form-control" readonly
|
||||
data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-3 col-xs-4">
|
||||
<label for="emailColaborador"> E-mail do colaborador: </label>
|
||||
<input type="text" name="emailColaborador" id="emailColaborador" class="form-control" readonly
|
||||
data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-3 col-xs-6">
|
||||
<label for="cargoColaborador"> Função do Colaborador </label>
|
||||
<input type="text" name="cargoColaborador" id="cargoColaborador" class="form-control" readonly
|
||||
data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
|
||||
<!-- Campo: Tipo de Desligamento -->
|
||||
<div class="form-group col-md-3 col-xs-6">
|
||||
<label for="tipodesligamento">
|
||||
Selecione o tipo de desligamento?
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
</label>
|
||||
<select id="tipodesligamento" name="tipodesligamento" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="experiencia">Período de Experiência</option>
|
||||
<option value="desempenho">Baixo Desempenho</option>
|
||||
<option value="substituicao">Substituição</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- Campo: Feedback -->
|
||||
<div class="form-group col-md-3 col-xs-3 feedbackRow" style="display:none;">
|
||||
<label for="feedbackColaborador">
|
||||
Foi feito o feedback de 45 e 90 dias?
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
</label>
|
||||
<select id="feedbackColaborador" name="feedbackColaborador" class="form-control">
|
||||
<option value="">Selecione</option>
|
||||
<option value="sim">Sim</option>
|
||||
<option value="nao">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="motivoDesligamento">Jusitificativa do Desligamento</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea class="form-control" name="motivoDesligamento" id="motivoDesligamento"
|
||||
placeholder="Descreva a justificativa para o Desligamento"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="activity activity-20">
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-settings icon-md" aria-hidden="true"></i>
|
||||
Aprovação de Desligamento
|
||||
</h2>
|
||||
<br />
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="userAprov"> Responsável </label>
|
||||
<input type="text" name="userAprov" id="userAprov" class="form-control" readonly
|
||||
data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataUserAprov"> Data </label>
|
||||
<input type="text" name="dataUserAprov" id="dataUserAprov" class="form-control"
|
||||
readonly />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Desligamento aprovado?</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<select id="DesligamentoAprov" name="DesligamentoAprov" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não, processo de desligamento cancelado.</option>
|
||||
<option value="MaisInformacoes">Necessito de mais informações</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="Aprovdesligamento">Jusitificativa</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea class="form-control" name="Aprovdesligamento"
|
||||
id="Aprovdesligamento"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="activity activity-22">
|
||||
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-message icon-md" aria-hidden="true"></i>
|
||||
Previsão de Desligamento
|
||||
</h2>
|
||||
<h6>Insira abaixo detalhes adicionais.</h6>
|
||||
<br />
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="analistaComunicado"> Responsável</label>
|
||||
<input type="text" name="analistaDesligamento" id="analistaDesligamento"
|
||||
class="form-control" readonly data-protection="Analista"
|
||||
data-protection-anonymizable data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataPrevista"> Data </label>
|
||||
<input type="text" name="dataPrevista" id="dataPrevista" class="form-control"
|
||||
readonly />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-12">
|
||||
<label for="dataInicio" style="display:block;">
|
||||
Prazo de desligamento
|
||||
</label>
|
||||
<div class="d-flex" style="display: flex; align-items: center; gap: 6px;">
|
||||
<input type="date" name="dataInicio" id="dataInicio" class="form-control" style="width: 48%;" />
|
||||
<span>até</span>
|
||||
<input type="date" name="dataFim" id="dataFim" class="form-control" style="width: 48%;" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label style="font-weight:600;">Estabilidades Verificadas:</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
|
||||
<div class="row mt-2">
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="trintidiocct">Trintídio CCT</label>
|
||||
<select id="trintidiocct" name="trintidiocct" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="trintidioposferias">Trintídio pós-férias</label>
|
||||
<select id="trintidioposferias" name="trintidioposferias"
|
||||
class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="trintidioposafastamento">Trintídio pós-afastamento</label>
|
||||
<select id="trintidioposafastamento" name="trintidioposafastamento"
|
||||
class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="preaposentadoria">Pré-aposentadoria</label>
|
||||
<select id="preaposentadoria" name="preaposentadoria" class="form-control"
|
||||
required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="acidentaria">Acidentária (CAT)</label>
|
||||
<select id="acidentaria" name="acidentaria" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="gestante">Gestante/Licença maternidade/Lactante</label>
|
||||
<select id="gestante" name="gestante" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="sindical">Sindical</label>
|
||||
<select id="sindical" name="sindical" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="pcd">PCD</label>
|
||||
<select id="pcd" name="pcd" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="outros">Outras Estabilidades</label>
|
||||
<select id="outros" name="outros" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="infoadicionais">Informações adicionais</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea class="form-control" name="infoadicionais"
|
||||
id="infoadicionais"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="activity activity-24">
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-toc icon-md" aria-hidden="true"></i>
|
||||
Análise de Conformidades
|
||||
</h2>
|
||||
<br />
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="userAprovConf"> Responsável </label>
|
||||
<input type="text" name="userAprovConf" id="userAprovConf" class="form-control"
|
||||
readonly data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataUserAprovConf"> Data </label>
|
||||
<input type="text" name="dataUserAprovConf" id="dataUserAprovConf"
|
||||
class="form-control" readonly />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>O colaborador tem impeditivos?</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<select id="impeditivosColab" name="impeditivosColab" class="form-control" required>
|
||||
<option value="">Selecione</option>
|
||||
<option value="Sim">Sim</option>
|
||||
<option value="Não">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="InforConf">Informações adicionais</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea class="form-control" name="InforConf" id="InforConf"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="activity activity-5">
|
||||
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-user-search icon-md" aria-hidden="true"></i>
|
||||
Informações Gerencias do Colaborador
|
||||
</h2>
|
||||
<h6>Insira abaixo as informações.</h6>
|
||||
<br />
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="analistaComunicado"> Responsável pelo colaborador </label>
|
||||
<input type="text" name="analistaComunicado" id="analistaComunicado"
|
||||
class="form-control" readonly data-protection="Analista"
|
||||
data-protection-anonymizable data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataComunicado"> Data </label>
|
||||
<input type="text" name="dataComunicado" id="dataComunicado"
|
||||
class="form-control" readonly />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataExata"> Data do desligamento </label>
|
||||
<input type="date" name="dataExata" id="dataExata"
|
||||
class="form-control" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-warning" role="alert" style="margin-top: 15px;">
|
||||
<strong>Atenção:</strong> Antes de continuar, revise o ponto eletrônico do colaborador no sistema Pontotel.
|
||||
Certifique-se que faltas, atrasos, horas extras e demais registros estão corretos.
|
||||
Caso necessário, realize os ajustes antes de prosseguir.
|
||||
</div>
|
||||
<div class="row">
|
||||
|
||||
<!-- ================= PROVENTOS ================= -->
|
||||
<div class="col-md-6">
|
||||
<h4><b>Proventos</b></h4>
|
||||
<table id="tabelaProventos"
|
||||
tablename="tabelaProventos"
|
||||
class="table table-bordered"
|
||||
noaddbutton="true"
|
||||
nodeletebutton="true">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 45%">Categoria</th>
|
||||
<th style="width: 40%">Valor / Quantidade</th>
|
||||
<th style="width: 15%">Ações</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<select name="categoriaProv" class="form-control categoriaProv">
|
||||
<option value="">Selecione...</option>
|
||||
<option value="comissao">Comissão</option>
|
||||
<option value="premiacao">Premiação</option>
|
||||
<option value="horasextras">Horas Extras</option>
|
||||
<option value="outro">Outro</option>
|
||||
</select>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<div class="valorContainerProv">
|
||||
<input type="text" name="valorProv"
|
||||
class="form-control"
|
||||
placeholder="Selecione a categoria">
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td class="text-center">
|
||||
<button type="button" class="btn btn-danger btn-sm"
|
||||
onclick="fnWdkRemoveChild(this)">Remover</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<button type="button" class="btn btn-primary mt-2"
|
||||
onclick="addLinhaProvento()">
|
||||
+ Adicionar Provento
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- ================= DESCONTOS ================= -->
|
||||
<div class="col-md-6">
|
||||
<h4><b>Descontos</b></h4>
|
||||
<table id="tabelaDescontos"
|
||||
tablename="tabelaDescontos"
|
||||
class="table table-bordered"
|
||||
noaddbutton="true"
|
||||
nodeletebutton="true">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 45%">Categoria</th>
|
||||
<th style="width: 40%">Valor / Quantidade</th>
|
||||
<th style="width: 15%">Ações</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<select name="categoriaDesc" class="form-control categoriaDesc">
|
||||
<option value="">Selecione...</option>
|
||||
<option value="faltas">Faltas (dias)</option>
|
||||
<option value="atrasos">Atrasos (hh:mm)</option>
|
||||
<option value="avarias">Avarias</option>
|
||||
<option value="outro">Outro</option>
|
||||
</select>
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<div class="valorContainerDesc">
|
||||
<input type="text" name="valorDesc"
|
||||
class="form-control"
|
||||
placeholder="Selecione a categoria">
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<td class="text-center">
|
||||
<button type="button" class="btn btn-danger btn-sm"
|
||||
onclick="fnWdkRemoveChild(this)">Remover</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<button type="button" class="btn btn-primary mt-2"
|
||||
onclick="addLinhaDesconto()">
|
||||
+ Adicionar Desconto
|
||||
</button>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Equipamentos Recolhidos</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br />
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Notebook" name="Notebook" value="Notebook" />
|
||||
<label for="Notebook">Notebook</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Telefone" name="Telefone" value="Telefone" />
|
||||
<label for="Telefone">Telefone</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Chipdecelular" name="Chipdecelular" value="chip" />
|
||||
<label for="Chipdecelular">Chip de celular</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Carregadordonotebook"
|
||||
name="Carregadordonotebook" value="carregadorNotebook"/>
|
||||
<label for="Carregadordonotebook">Carregador do notebook</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Carregadordotelefone"
|
||||
name="Carregadordotelefone" value="carregadorTelefone"/>
|
||||
<label for="Carregadordotelefone">Carregador do telefone</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row ratingAction">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Como você avalia o estado dos equipamentos?</label>
|
||||
<div class="ratingStars">
|
||||
<span>Péssimo</span>
|
||||
<div class="minha-avaliacao"></div>
|
||||
<span>Excelente</span>
|
||||
</div>
|
||||
<input type="hidden" id="ratingValue" name="ratingValue" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="detalheSolicitacao">Detalhamento da situação</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea class="form-control" name="detalheSolicitacao"
|
||||
id="detalheSolicitacao"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- <div class="activity activity-13">
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-assignment-returned icon-md" aria-hidden="true"></i>
|
||||
Documentos Demissionais
|
||||
</h2>
|
||||
<br />
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="analistaTecnico"> Responsável pelo envio </label>
|
||||
<input type="text" name="analistaTecnico" id="analistaTecnico"
|
||||
class="form-control" readonly data-protection="Analista"
|
||||
data-protection-anonymizable data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataAnaliseTecnica"> Data </label>
|
||||
<input type="text" name="dataAnaliseTecnica" id="dataAnaliseTecnica"
|
||||
class="form-control" readonly />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Todos os documentos foram entregues e a assinatura do documento foi concluída?</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<select id="assinaturaDoc" name="assinaturaDoc" class="form-control">
|
||||
<option value="">Selecione</option>
|
||||
<option value="sim">Sim</option>
|
||||
<option value="nao">Não</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row consegueResolverMotivo" style="display:none;">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Qual o motivo?</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br />
|
||||
<div class="">
|
||||
<label>
|
||||
<input name="possuiInconsistencia" id="possuiInconsistenciaNao"
|
||||
value="nao" type="radio" />
|
||||
<span class="change-weight">O colaborador desligado <b>deixou pendente</b> a assinatura de alguns documentos.</span></b></span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
também começa escondido -->
|
||||
<!-- <div class="row consideracoesRow" style="display:none;">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="consideracoesTecnicas">Considerações</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea class="form-control" name="consideracoesTecnicas"
|
||||
id="consideracoesTecnicas"
|
||||
placeholder="Descreva a justificativa"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="activity activity-15">
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-settings icon-md" aria-hidden="true"></i>
|
||||
<i class="flaticon flaticon-workstation icon-md" aria-hidden="true"></i>
|
||||
Desativar acessos
|
||||
</h2>
|
||||
<br />
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-4 col-xs-4">
|
||||
<label for="userValidacao"> Responsável </label>
|
||||
<input type="text" name="userValidacao" id="userValidacao" class="form-control"
|
||||
readonly data-protection="Usuário de abertura" data-protection-anonymizable
|
||||
data-protection-sensitive data-protection-name
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo" />
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataUserValidacao"> Data </label>
|
||||
<input type="text" name="dataUserValidacao" id="dataUserValidacao"
|
||||
class="form-control" readonly />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Acessos desabilitados?</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br />
|
||||
<div class="radio-inline">
|
||||
<label>
|
||||
<input name="situacaoResolvida" id="situacaoResolvidaSim" value="sim"
|
||||
type="radio" />
|
||||
<span class="change-weight">Sim</span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="radio-inline">
|
||||
<label>
|
||||
<input name="situacaoResolvida" id="situacaoResolvidaNao" value="nao"
|
||||
type="radio" />
|
||||
<span class="change-weight">Não</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label>Acessos Desabilitados</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br />
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="ActiveDirectory" name="ActiveDirectory" />
|
||||
<label for="ActiveDirectory">Active Directory</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="ControladorasFaciais"
|
||||
name="ControladorasFaciais" />
|
||||
<label for="ControladorasFaciais">Controladoras Faciais</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Protheus" name="Protheus" />
|
||||
<label for="Protheus">Protheus</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Extranet" name="Extranet" />
|
||||
<label for="Extranet">Extranet</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="AcessoSSH" name="AcessoSSH" />
|
||||
<label for="AcessoSSH">Acesso SSH</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Email" name="Email" />
|
||||
<label for="Email">E-mail</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Fluig" name="Fluig" />
|
||||
<label for="Fluig">Fluig</label>
|
||||
</div>
|
||||
<div class="custom-checkbox custom-checkbox-inline custom-checkbox-success">
|
||||
<input type="checkbox" id="Feedz" name="Feedz" />
|
||||
<label for="Feedz">Feedz</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row explainAction">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12">
|
||||
<label for="consideracoes">Considerações</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea class="form-control" name="consideracoes" id="consideracoes"
|
||||
placeholder="Descreva a justificativa para a sua avaliação"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,17 @@
|
||||
/* Faixa lateral colorida */
|
||||
tr.provento {
|
||||
border-left: 4px solid #1ab394 !important; /* Verde */
|
||||
}
|
||||
|
||||
tr.desconto {
|
||||
border-left: 4px solid #d9534f !important; /* Vermelho */
|
||||
}
|
||||
|
||||
/* Fundo suave (opcional) */
|
||||
tr.provento td {
|
||||
background: #e9f7ef !important;
|
||||
}
|
||||
|
||||
tr.desconto td {
|
||||
background: #fcebea !important;
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
function displayFields(form, customHTML) {
|
||||
var activity = getValue('WKNumState');
|
||||
var userId = getValue('WKUser');
|
||||
|
||||
form.setShowDisabledFields(true);
|
||||
form.setHidePrintLink(true);
|
||||
|
||||
form.setValue("WKNumProces", getValue('WKNumProces'));
|
||||
form.setValue("activity", activity);
|
||||
form.setValue("formMode", form.getFormMode());
|
||||
|
||||
var c1 = DatasetFactory.createConstraint("colleagueId", userId, userId, ConstraintType.MUST);
|
||||
var filter = new Array(c1);
|
||||
var fields = new Array("colleagueName", "mail");
|
||||
var retorno = DatasetFactory.getDataset("colleague", fields, filter, null);
|
||||
|
||||
//requester
|
||||
if (activity == 0 || activity == 4) {
|
||||
form.setValue("requesterName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("currentUsermail", retorno.getValue(0, "mail"));
|
||||
form.setValue("currentUserId", userId);
|
||||
} else {
|
||||
form.setValue("currentUserName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("currentUsermail", retorno.getValue(0, "mail"));
|
||||
form.setValue("currentUserId", userId);
|
||||
}
|
||||
|
||||
//requester
|
||||
if (activity == 5 || activity == 24) {
|
||||
form.setValue("requesterName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("requesterMail", retorno.getValue(0, "mail"));
|
||||
form.setValue("requesterId", userId);
|
||||
} else {
|
||||
form.setValue("requesterName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("requesterMail", retorno.getValue(0, "mail"));
|
||||
form.setValue("requesterId", userId);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,378 @@
|
||||
/****************************************************************************************
|
||||
* FLUIG - DESLIGAMENTO DO COLABORADOR
|
||||
* SCRIPT PRINCIPAL ORGANIZADO
|
||||
****************************************************************************************/
|
||||
|
||||
$(window).on("load", function () {
|
||||
setTimeout(() => {
|
||||
iniciarFormulario();
|
||||
}, 400);
|
||||
});
|
||||
|
||||
/****************************************************************************************
|
||||
* INICIALIZAÇÃO DO FORMULÁRIO
|
||||
****************************************************************************************/
|
||||
function iniciarFormulario() {
|
||||
|
||||
const activity = parseInt($("#activity").val() || 0);
|
||||
const formMode = $("#formMode").val() || "ADD";
|
||||
const requestDate = getCurrentDate();
|
||||
|
||||
$(".activity").hide(); // Oculta todas por padrão
|
||||
|
||||
if (formMode === "VIEW") {
|
||||
$(".activity").show();
|
||||
showAndBlock(["all"]);
|
||||
return;
|
||||
}
|
||||
|
||||
if ([0, 4].includes(activity)) {
|
||||
$(".activity-4").show();
|
||||
$("#requesterName").val($("#requesterName").val() || $("#currentUserName").val());
|
||||
$("#emailGestorArea").val($("#requesterMail").val() || $("#currentUsermail").val());
|
||||
$("#dataAbertura").val(`${requestDate[0]} - ${requestDate[1]}`);
|
||||
}
|
||||
|
||||
if (activity === 20) {
|
||||
$(".activity-4, .activity-20").show();
|
||||
showAndBlock([4]);
|
||||
$("#userAprov").val($("#currentUserName").val());
|
||||
$("#dataUserAprov").val(`${requestDate[0]} - ${requestDate[1]}`);
|
||||
}
|
||||
|
||||
if (activity === 22) {
|
||||
$(".activity-4, .activity-20, .activity-22").show();
|
||||
showAndBlock([4, 20]);
|
||||
$("#analistaDesligamento").val($("#currentUserName").val());
|
||||
$("#dataPrevista").val(`${requestDate[0]} - ${requestDate[1]}`);
|
||||
}
|
||||
|
||||
if (activity === 24) {
|
||||
$(".activity-4, .activity-20, .activity-22, .activity-24").show();
|
||||
showAndBlock([4, 20, 22]);
|
||||
$("#userAprovConf").val($("#currentUserName").val());
|
||||
$("#dataUserAprovConf").val(`${requestDate[0]} - ${requestDate[1]}`);
|
||||
}
|
||||
|
||||
if (activity === 5) {
|
||||
$(".activity-4, .activity-20, .activity-22, .activity-24, .activity-5").show();
|
||||
showAndBlock([4, 20, 22, 24]);
|
||||
$("#analistaComunicado").val($("#currentUserName").val());
|
||||
$("#dataComunicado").val(`${requestDate[0]} - ${requestDate[1]}`);
|
||||
inicializarEstrelas();
|
||||
}
|
||||
|
||||
|
||||
if (activity === 15) {
|
||||
$(".activity-4, .activity-15").show();
|
||||
showAndBlock([4]);
|
||||
$("#userValidacao").val($("#currentUserName").val());
|
||||
$("#dataUserValidacao").val(`${requestDate[0]} - ${requestDate[1]}`);
|
||||
}
|
||||
|
||||
$(`.activity-${activity} :input`)
|
||||
.prop("readonly", false)
|
||||
.prop("disabled", false)
|
||||
.css("background-color", "");
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* BLOQUEIO DE ATIVIDADES ANTERIORES
|
||||
****************************************************************************************/
|
||||
function showAndBlock(list) {
|
||||
|
||||
const current = parseInt($("#activity").val());
|
||||
|
||||
if (list[0] === "all") {
|
||||
$(".activity :input")
|
||||
.prop("readonly", true)
|
||||
.css("pointer-events", "none")
|
||||
.css("background-color", "#eee");
|
||||
return;
|
||||
}
|
||||
|
||||
list.forEach(a => {
|
||||
|
||||
$(`.activity-${a}`).show();
|
||||
|
||||
$(`.activity-${a} :input`).each(function () {
|
||||
|
||||
if ($(this).closest(".activity").hasClass(`activity-${current}`)) return;
|
||||
|
||||
// trava campos normais
|
||||
$(this)
|
||||
.prop("readonly", true)
|
||||
.css("background-color", "#eee")
|
||||
.css("pointer-events", "none");
|
||||
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* FUNÇÕES AUXILIARES
|
||||
****************************************************************************************/
|
||||
function getCurrentDate() {
|
||||
const now = new Date();
|
||||
const pad = n => (n < 10 ? "0" + n : n);
|
||||
|
||||
return [
|
||||
`${pad(now.getDate())}/${pad(now.getMonth() + 1)}/${now.getFullYear()}`,
|
||||
`${pad(now.getHours())}:${pad(now.getMinutes())}`
|
||||
];
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* ESTRELAS DE AVALIAÇÃO
|
||||
****************************************************************************************/
|
||||
function inicializarEstrelas() {
|
||||
|
||||
const valorSalvo = parseInt($("#ratingValue").val()) || 0;
|
||||
|
||||
const stars = FLUIGC.stars(".minha-avaliacao", {
|
||||
stars: 5,
|
||||
value: valorSalvo,
|
||||
sizeClass: "icon-md"
|
||||
});
|
||||
|
||||
stars.on("click", function () {
|
||||
const valor = $(".fluigicon-star-active").length;
|
||||
$("#ratingValue").val(valor);
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
$(".minha-avaliacao .fluigicon-star").each(function (i) {
|
||||
$(this).css("color", i < valorSalvo ? "#f0ad4e" : "#ccc");
|
||||
});
|
||||
}, 200);
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* VALIDAÇÃO DO ENVIO
|
||||
****************************************************************************************/
|
||||
var beforeSendValidate = function (state) {
|
||||
|
||||
if ([0, 1, 4].includes(state)) {
|
||||
if (!$("#motivoDesligamento").val()) throw "'Detalhes da situação' é obrigatório.";
|
||||
}
|
||||
|
||||
if (state == 5) {
|
||||
if (!$("#detalheSolicitacao").val()) throw "'Detalhamento da situação' é obrigatório.";
|
||||
}
|
||||
};
|
||||
|
||||
/****************************************************************************************
|
||||
* EVENTOS DINÂMICOS (EXIBIÇÃO DE CAMPOS)
|
||||
****************************************************************************************/
|
||||
$(document).ready(function () {
|
||||
|
||||
$("#assinaturaDoc").change(function () {
|
||||
$(".consegueResolverMotivo, .consideracoesRow").hide();
|
||||
if ($(this).val() === "nao") $(".consegueResolverMotivo, .consideracoesRow").slideDown();
|
||||
}).trigger("change");
|
||||
|
||||
$("input[name=feedback]").change(function () {
|
||||
$(".JustFeedback").toggle($(this).val() === "sim");
|
||||
}).trigger("change");
|
||||
|
||||
$("input[name=situacaoResolvida]").change(function () {
|
||||
$(".explainAction, .ratingAction").hide();
|
||||
if ($(this).val() === "nao") $(".explainAction").show();
|
||||
if ($(this).val() === "sim") $(".ratingAction").show();
|
||||
}).trigger("change");
|
||||
|
||||
$("#tipodesligamento").change(function () {
|
||||
$(".feedbackRow").toggle($(this).val() === "experiencia");
|
||||
}).trigger("change");
|
||||
});
|
||||
|
||||
/****************************************************************************************
|
||||
* LANÇAMENTOS (PROVENTOS / DESCONTOS)
|
||||
****************************************************************************************/
|
||||
/****************************************************************************************
|
||||
* PROVENTOS — Adicionar linha
|
||||
****************************************************************************************/
|
||||
function addLinhaProvento() {
|
||||
let idx = wdkAddChild("tabelaProventos");
|
||||
ajustarLinhaProvento(idx);
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* DESCONTOS — Adicionar linha
|
||||
****************************************************************************************/
|
||||
function addLinhaDesconto() {
|
||||
let idx = wdkAddChild("tabelaDescontos");
|
||||
ajustarLinhaDesconto(idx);
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* PROVENTOS — Ajustar linha conforme categoria
|
||||
****************************************************************************************/
|
||||
function ajustarLinhaProvento(idx) {
|
||||
|
||||
let categoria = $(`select[name="categoriaProvento___${idx}"]`);
|
||||
let container = $(`input[name="valorProvento___${idx}"]`).parent();
|
||||
|
||||
categoria.off("change").on("change", function () {
|
||||
|
||||
let valorSalvo = $(`input[name="valorProvento___${idx}"]`).val();
|
||||
container.empty();
|
||||
|
||||
let cat = categoria.val();
|
||||
|
||||
// === COMISSÃO / PREMIAÇÃO / AVARIAS → DINHEIRO ====
|
||||
if (["comissao", "premiacao"].includes(cat)) {
|
||||
container.append(`
|
||||
<input type="text" name="valorProvento___${idx}"
|
||||
class="form-control money" placeholder="R$ 0,00">
|
||||
`);
|
||||
}
|
||||
|
||||
// === HORAS EXTRAS → HH:MM ====
|
||||
else if (cat === "horasextras") {
|
||||
container.append(`
|
||||
<input type="text" name="valorProvento___${idx}"
|
||||
class="form-control timehhmm" placeholder="00:00">
|
||||
`);
|
||||
}
|
||||
|
||||
// === OUTRO → TEXTO LIVRE ====
|
||||
else {
|
||||
container.append(`
|
||||
<input type="text" name="valorProvento___${idx}"
|
||||
class="form-control" placeholder="Descreva...">
|
||||
`);
|
||||
}
|
||||
|
||||
// Restaurar valor
|
||||
$(`input[name="valorProvento___${idx}"]`).val(valorSalvo);
|
||||
|
||||
aplicarMascaraDinheiro();
|
||||
aplicarMascaraHora();
|
||||
});
|
||||
|
||||
categoria.trigger("change");
|
||||
}
|
||||
/****************************************************************************************
|
||||
* DESCONTOS — Ajustar linha conforme categoria
|
||||
****************************************************************************************/
|
||||
function ajustarLinhaDesconto(idx) {
|
||||
|
||||
let categoria = $(`select[name="categoriaDesconto___${idx}"]`);
|
||||
let container = $(`input[name="valorDesconto___${idx}"]`).parent();
|
||||
|
||||
categoria.off("change").on("change", function () {
|
||||
|
||||
let valorSalvo = $(`input[name="valorDesconto___${idx}"]`).val();
|
||||
container.empty();
|
||||
|
||||
let cat = categoria.val();
|
||||
|
||||
// === FALTAS → INTEIRO ====
|
||||
if (cat === "faltas") {
|
||||
container.append(`
|
||||
<input type="number" step="1" name="valorDesconto___${idx}"
|
||||
class="form-control" placeholder="Dias de falta">
|
||||
`);
|
||||
}
|
||||
|
||||
// === ATRASOS → HH:MM ====
|
||||
else if (cat === "atrasos") {
|
||||
container.append(`
|
||||
<input type="text" name="valorDesconto___${idx}"
|
||||
class="form-control timehhmm" placeholder="00:00">
|
||||
`);
|
||||
}
|
||||
|
||||
// === AVARIAS → DINHEIRO ====
|
||||
else if (cat === "avarias") {
|
||||
container.append(`
|
||||
<input type="text" name="valorDesconto___${idx}"
|
||||
class="form-control money" placeholder="R$ 0,00">
|
||||
`);
|
||||
}
|
||||
|
||||
// === OUTRO — texto livre ====
|
||||
else {
|
||||
container.append(`
|
||||
<input type="text" name="valorDesconto___${idx}"
|
||||
class="form-control" placeholder="Descreva...">
|
||||
`);
|
||||
}
|
||||
|
||||
// Restaurar valor salvo
|
||||
$(`input[name="valorDesconto___${idx}"]`).val(valorSalvo);
|
||||
|
||||
aplicarMascaraDinheiro();
|
||||
aplicarMascaraHora();
|
||||
});
|
||||
|
||||
categoria.trigger("change");
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* Restauração automática ao recarregar o formulário
|
||||
****************************************************************************************/
|
||||
function restaurarTodasLinhas() {
|
||||
|
||||
// PROVENTOS
|
||||
$("select.categoriaProvento").each(function () {
|
||||
let idx = this.name.split("___")[1];
|
||||
ajustarLinhaProvento(idx);
|
||||
});
|
||||
|
||||
// DESCONTOS
|
||||
$("select.categoriaDesconto").each(function () {
|
||||
let idx = this.name.split("___")[1];
|
||||
ajustarLinhaDesconto(idx);
|
||||
});
|
||||
}
|
||||
|
||||
// Sempre que o Fluig recriar o pai-filho
|
||||
document.addEventListener("DOMNodeInserted", function (e) {
|
||||
|
||||
if ($(e.target).closest("#tabelaProventos").length > 0 ||
|
||||
$(e.target).closest("#tabelaDescontos").length > 0) {
|
||||
|
||||
setTimeout(restaurarTodasLinhas, 200);
|
||||
}
|
||||
});
|
||||
|
||||
/****************************************************************************************
|
||||
* Máscara de dinheiro
|
||||
****************************************************************************************/
|
||||
function aplicarMascaraDinheiro() {
|
||||
$(".money").mask("#.##0,00", { reverse: true });
|
||||
}
|
||||
|
||||
function aplicarMascaraHora() {
|
||||
$('.timehhmm').mask('00:00');
|
||||
}
|
||||
|
||||
|
||||
|
||||
// Sempre que o Fluig alterar o pai-filho, restauramos
|
||||
document.addEventListener("DOMNodeInserted", function (e) {
|
||||
if ($(e.target).closest("table#tabelaLancamentos").length > 0) {
|
||||
setTimeout(restaurarLancamentos, 200);
|
||||
}
|
||||
});
|
||||
|
||||
/****************************************************************************************
|
||||
* ZOOM: COLABORADOR
|
||||
****************************************************************************************/
|
||||
function setSelectedZoomItem(item) {
|
||||
if (item.inputId === "colabDesliga") {
|
||||
$("#colabCpf").val(item.cpf || "");
|
||||
$("#colabadmissao").val(item.admission_at || "");
|
||||
$("#emailColaborador").val(item.email || "");
|
||||
$("#departamento").val(item.department || "");
|
||||
$("#cargoColaborador").val(item.description || "");
|
||||
}
|
||||
}
|
||||
|
||||
function removedZoomItem(item) {
|
||||
if (item.inputId === "colabDesliga") {
|
||||
$("#colabCpf, #colabadmissao, #emailColaborador, #departamento, #cargoColaborador").val("");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,510 @@
|
||||
<list>
|
||||
<ProcessDefinition>
|
||||
<processDefinitionPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
</processDefinitionPK>
|
||||
<processDescription>Desligamento de Colaborador</processDescription>
|
||||
<instruction></instruction>
|
||||
<active>true</active>
|
||||
<publicProcess>false</publicProcess>
|
||||
<volumeId>Default</volumeId>
|
||||
<categoryId></categoryId>
|
||||
<managerEngineAllocationId></managerEngineAllocationId>
|
||||
<snapshotFrequency>0</snapshotFrequency>
|
||||
<baseDay>0</baseDay>
|
||||
<baseMonth>0</baseMonth>
|
||||
<periodId>Default</periodId>
|
||||
<uniqueCardVersion>false</uniqueCardVersion>
|
||||
<keyWord></keyWord>
|
||||
<complementsLevel>1</complementsLevel>
|
||||
<notifyRequisitionerComplements>true</notifyRequisitionerComplements>
|
||||
<notifyManagerComplements>false</notifyManagerComplements>
|
||||
<deadlineTime>0</deadlineTime>
|
||||
<warningDeadlineTime>0</warningDeadlineTime>
|
||||
<notifyAuthorityComplements>true</notifyAuthorityComplements>
|
||||
</ProcessDefinition>
|
||||
<ProcessDefinitionVersion>
|
||||
<processDefinitionVersionPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento de Colaborador</processId>
|
||||
<version>12</version>
|
||||
</processDefinitionVersionPK>
|
||||
<versionDescription>teste</versionDescription>
|
||||
<formId>0</formId>
|
||||
<editionMode>true</editionMode>
|
||||
<updateAttachmentsVersion>false</updateAttachmentsVersion>
|
||||
<controlsAttachmentsSecurity>true</controlsAttachmentsSecurity>
|
||||
<active>true</active>
|
||||
<blockedVersion>false</blockedVersion>
|
||||
<counterSign>false</counterSign>
|
||||
<openInstances>0</openInstances>
|
||||
<bpmnVersion>2</bpmnVersion>
|
||||
<processStates/>
|
||||
<favorito>false</favorito>
|
||||
<inheritFormSecurity>false</inheritFormSecurity>
|
||||
<mobileReady>true</mobileReady>
|
||||
</ProcessDefinitionVersion>
|
||||
<list>
|
||||
<ProcessState>
|
||||
<processStatePK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<sequence>2</sequence>
|
||||
</processStatePK>
|
||||
<stateName>Abrir Processo de Desligamento</stateName>
|
||||
<stateDescription>Abrir Processo de Desligamento</stateDescription>
|
||||
<instruction>Informações básicas do candidato</instruction>
|
||||
<deadlineTime>0</deadlineTime>
|
||||
<joint>false</joint>
|
||||
<agreementPercentage>0</agreementPercentage>
|
||||
<engineAllocationId></engineAllocationId>
|
||||
<engineAllocationConfiguration></engineAllocationConfiguration>
|
||||
<selectColleague>1</selectColleague>
|
||||
<initialState>true</initialState>
|
||||
<notifyAuthorityDelay>false</notifyAuthorityDelay>
|
||||
<notifyRequisitionerDelay>false</notifyRequisitionerDelay>
|
||||
<allowanceAuthorityTime>0</allowanceAuthorityTime>
|
||||
<frequenceAuthorityTime>0</frequenceAuthorityTime>
|
||||
<allowanceRequisitionerTime>0</allowanceRequisitionerTime>
|
||||
<frequenceRequisitionerTime>0</frequenceRequisitionerTime>
|
||||
<transferAttachments>false</transferAttachments>
|
||||
<subProcessId></subProcessId>
|
||||
<formFolder>0</formFolder>
|
||||
<notifyAuthorityFollowUp>false</notifyAuthorityFollowUp>
|
||||
<notifyRequisitionerFollowUp>false</notifyRequisitionerFollowUp>
|
||||
<automatic>false</automatic>
|
||||
<positionX>240</positionX>
|
||||
<positionY>314</positionY>
|
||||
<forecastedEffortType>0</forecastedEffortType>
|
||||
<forecastedEffort>0</forecastedEffort>
|
||||
<notifyManagerFollowUp>false</notifyManagerFollowUp>
|
||||
<notifyManagerDelay>false</notifyManagerDelay>
|
||||
<allowanceManagerTime>0</allowanceManagerTime>
|
||||
<frequenceManagerTime>0</frequenceManagerTime>
|
||||
<inhibitTransfer>false</inhibitTransfer>
|
||||
<periodId></periodId>
|
||||
<stateType>0</stateType>
|
||||
<bpmnType>10</bpmnType>
|
||||
<signalId>0</signalId>
|
||||
<counterSign>false</counterSign>
|
||||
<openInstances>0</openInstances>
|
||||
<noticeExpirationAuthorityTime>0</noticeExpirationAuthorityTime>
|
||||
<noticeExpirationRequisitionerTime>0</noticeExpirationRequisitionerTime>
|
||||
<noticeExpirationManagerTime>0</noticeExpirationManagerTime>
|
||||
<destinationStates/>
|
||||
<digitalSignature>false</digitalSignature>
|
||||
</ProcessState>
|
||||
<ProcessState>
|
||||
<processStatePK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<sequence>3</sequence>
|
||||
</processStatePK>
|
||||
<stateName>Preparar Documentos</stateName>
|
||||
<stateDescription>Preparar Documentos</stateDescription>
|
||||
<instruction></instruction>
|
||||
<deadlineTime>0</deadlineTime>
|
||||
<deadlineFieldName></deadlineFieldName>
|
||||
<joint>false</joint>
|
||||
<agreementPercentage>100</agreementPercentage>
|
||||
<engineAllocationId></engineAllocationId>
|
||||
<selectColleague>1</selectColleague>
|
||||
<initialState>false</initialState>
|
||||
<notifyAuthorityDelay>false</notifyAuthorityDelay>
|
||||
<notifyRequisitionerDelay>false</notifyRequisitionerDelay>
|
||||
<allowanceAuthorityTime>0</allowanceAuthorityTime>
|
||||
<frequenceAuthorityTime>0</frequenceAuthorityTime>
|
||||
<allowanceRequisitionerTime>0</allowanceRequisitionerTime>
|
||||
<frequenceRequisitionerTime>0</frequenceRequisitionerTime>
|
||||
<transferAttachments>false</transferAttachments>
|
||||
<subProcessId></subProcessId>
|
||||
<formFolder>0</formFolder>
|
||||
<notifyAuthorityFollowUp>true</notifyAuthorityFollowUp>
|
||||
<notifyRequisitionerFollowUp>false</notifyRequisitionerFollowUp>
|
||||
<automatic>false</automatic>
|
||||
<positionX>620</positionX>
|
||||
<positionY>294</positionY>
|
||||
<forecastedEffortType>0</forecastedEffortType>
|
||||
<forecastedEffort>0</forecastedEffort>
|
||||
<notifyManagerFollowUp>false</notifyManagerFollowUp>
|
||||
<notifyManagerDelay>false</notifyManagerDelay>
|
||||
<allowanceManagerTime>0</allowanceManagerTime>
|
||||
<frequenceManagerTime>0</frequenceManagerTime>
|
||||
<inhibitTransfer>false</inhibitTransfer>
|
||||
<periodId></periodId>
|
||||
<stateType>0</stateType>
|
||||
<bpmnType>80</bpmnType>
|
||||
<signalId>0</signalId>
|
||||
<counterSign>false</counterSign>
|
||||
<openInstances>0</openInstances>
|
||||
<noticeExpirationAuthorityTime>0</noticeExpirationAuthorityTime>
|
||||
<noticeExpirationRequisitionerTime>0</noticeExpirationRequisitionerTime>
|
||||
<noticeExpirationManagerTime>0</noticeExpirationManagerTime>
|
||||
<destinationStates/>
|
||||
<digitalSignature>false</digitalSignature>
|
||||
<executionType>0</executionType>
|
||||
</ProcessState>
|
||||
<ProcessState>
|
||||
<processStatePK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<sequence>4</sequence>
|
||||
</processStatePK>
|
||||
<stateName>Comunicar Desligamento</stateName>
|
||||
<stateDescription>Comunicar Desligamento</stateDescription>
|
||||
<instruction></instruction>
|
||||
<deadlineTime>0</deadlineTime>
|
||||
<deadlineFieldName></deadlineFieldName>
|
||||
<joint>false</joint>
|
||||
<agreementPercentage>100</agreementPercentage>
|
||||
<engineAllocationId></engineAllocationId>
|
||||
<selectColleague>1</selectColleague>
|
||||
<initialState>false</initialState>
|
||||
<notifyAuthorityDelay>false</notifyAuthorityDelay>
|
||||
<notifyRequisitionerDelay>false</notifyRequisitionerDelay>
|
||||
<allowanceAuthorityTime>0</allowanceAuthorityTime>
|
||||
<frequenceAuthorityTime>0</frequenceAuthorityTime>
|
||||
<allowanceRequisitionerTime>0</allowanceRequisitionerTime>
|
||||
<frequenceRequisitionerTime>0</frequenceRequisitionerTime>
|
||||
<transferAttachments>false</transferAttachments>
|
||||
<subProcessId></subProcessId>
|
||||
<formFolder>0</formFolder>
|
||||
<notifyAuthorityFollowUp>true</notifyAuthorityFollowUp>
|
||||
<notifyRequisitionerFollowUp>false</notifyRequisitionerFollowUp>
|
||||
<automatic>false</automatic>
|
||||
<positionX>410</positionX>
|
||||
<positionY>286</positionY>
|
||||
<forecastedEffortType>0</forecastedEffortType>
|
||||
<forecastedEffort>0</forecastedEffort>
|
||||
<notifyManagerFollowUp>false</notifyManagerFollowUp>
|
||||
<notifyManagerDelay>false</notifyManagerDelay>
|
||||
<allowanceManagerTime>0</allowanceManagerTime>
|
||||
<frequenceManagerTime>0</frequenceManagerTime>
|
||||
<inhibitTransfer>false</inhibitTransfer>
|
||||
<periodId></periodId>
|
||||
<stateType>0</stateType>
|
||||
<bpmnType>80</bpmnType>
|
||||
<signalId>0</signalId>
|
||||
<counterSign>false</counterSign>
|
||||
<openInstances>0</openInstances>
|
||||
<noticeExpirationAuthorityTime>0</noticeExpirationAuthorityTime>
|
||||
<noticeExpirationRequisitionerTime>0</noticeExpirationRequisitionerTime>
|
||||
<noticeExpirationManagerTime>0</noticeExpirationManagerTime>
|
||||
<destinationStates/>
|
||||
<digitalSignature>false</digitalSignature>
|
||||
<executionType>0</executionType>
|
||||
</ProcessState>
|
||||
<ProcessState>
|
||||
<processStatePK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<sequence>6</sequence>
|
||||
</processStatePK>
|
||||
<stateName>Desabilitar Acessos e Recolher equipamentos</stateName>
|
||||
<stateDescription>Desabilitar Acessos e Recolher equipamentos</stateDescription>
|
||||
<instruction></instruction>
|
||||
<deadlineTime>0</deadlineTime>
|
||||
<deadlineFieldName></deadlineFieldName>
|
||||
<joint>false</joint>
|
||||
<agreementPercentage>100</agreementPercentage>
|
||||
<engineAllocationId>Pool Grupo</engineAllocationId>
|
||||
<engineAllocationConfiguration><AssignmentController><Group>TIC</Group></AssignmentController></engineAllocationConfiguration>
|
||||
<selectColleague>1</selectColleague>
|
||||
<initialState>false</initialState>
|
||||
<notifyAuthorityDelay>false</notifyAuthorityDelay>
|
||||
<notifyRequisitionerDelay>false</notifyRequisitionerDelay>
|
||||
<allowanceAuthorityTime>0</allowanceAuthorityTime>
|
||||
<frequenceAuthorityTime>0</frequenceAuthorityTime>
|
||||
<allowanceRequisitionerTime>0</allowanceRequisitionerTime>
|
||||
<frequenceRequisitionerTime>0</frequenceRequisitionerTime>
|
||||
<transferAttachments>false</transferAttachments>
|
||||
<subProcessId></subProcessId>
|
||||
<formFolder>0</formFolder>
|
||||
<notifyAuthorityFollowUp>true</notifyAuthorityFollowUp>
|
||||
<notifyRequisitionerFollowUp>true</notifyRequisitionerFollowUp>
|
||||
<automatic>false</automatic>
|
||||
<positionX>870</positionX>
|
||||
<positionY>270</positionY>
|
||||
<forecastedEffortType>0</forecastedEffortType>
|
||||
<forecastedEffort>0</forecastedEffort>
|
||||
<notifyManagerFollowUp>false</notifyManagerFollowUp>
|
||||
<notifyManagerDelay>false</notifyManagerDelay>
|
||||
<allowanceManagerTime>0</allowanceManagerTime>
|
||||
<frequenceManagerTime>0</frequenceManagerTime>
|
||||
<inhibitTransfer>false</inhibitTransfer>
|
||||
<periodId></periodId>
|
||||
<stateType>0</stateType>
|
||||
<bpmnType>80</bpmnType>
|
||||
<signalId>0</signalId>
|
||||
<counterSign>false</counterSign>
|
||||
<openInstances>0</openInstances>
|
||||
<noticeExpirationAuthorityTime>0</noticeExpirationAuthorityTime>
|
||||
<noticeExpirationRequisitionerTime>0</noticeExpirationRequisitionerTime>
|
||||
<noticeExpirationManagerTime>0</noticeExpirationManagerTime>
|
||||
<destinationStates/>
|
||||
<digitalSignature>false</digitalSignature>
|
||||
<executionType>0</executionType>
|
||||
</ProcessState>
|
||||
<ProcessState>
|
||||
<processStatePK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<sequence>10</sequence>
|
||||
</processStatePK>
|
||||
<stateName>Finalizar Processo de Desligamento</stateName>
|
||||
<stateDescription>Finalizar Processo de Desligamento</stateDescription>
|
||||
<instruction>Atividade final do processo</instruction>
|
||||
<deadlineTime>0</deadlineTime>
|
||||
<joint>false</joint>
|
||||
<agreementPercentage>0</agreementPercentage>
|
||||
<engineAllocationId></engineAllocationId>
|
||||
<engineAllocationConfiguration></engineAllocationConfiguration>
|
||||
<selectColleague>0</selectColleague>
|
||||
<initialState>false</initialState>
|
||||
<notifyAuthorityDelay>true</notifyAuthorityDelay>
|
||||
<notifyRequisitionerDelay>false</notifyRequisitionerDelay>
|
||||
<allowanceAuthorityTime>0</allowanceAuthorityTime>
|
||||
<frequenceAuthorityTime>1</frequenceAuthorityTime>
|
||||
<allowanceRequisitionerTime>0</allowanceRequisitionerTime>
|
||||
<frequenceRequisitionerTime>0</frequenceRequisitionerTime>
|
||||
<transferAttachments>false</transferAttachments>
|
||||
<subProcessId></subProcessId>
|
||||
<formFolder>0</formFolder>
|
||||
<notifyAuthorityFollowUp>false</notifyAuthorityFollowUp>
|
||||
<notifyRequisitionerFollowUp>false</notifyRequisitionerFollowUp>
|
||||
<automatic>false</automatic>
|
||||
<positionX>1100</positionX>
|
||||
<positionY>314</positionY>
|
||||
<forecastedEffortType>0</forecastedEffortType>
|
||||
<forecastedEffort>0</forecastedEffort>
|
||||
<notifyManagerFollowUp>false</notifyManagerFollowUp>
|
||||
<notifyManagerDelay>false</notifyManagerDelay>
|
||||
<allowanceManagerTime>0</allowanceManagerTime>
|
||||
<frequenceManagerTime>0</frequenceManagerTime>
|
||||
<inhibitTransfer>false</inhibitTransfer>
|
||||
<periodId></periodId>
|
||||
<stateType>6</stateType>
|
||||
<bpmnType>60</bpmnType>
|
||||
<signalId>0</signalId>
|
||||
<counterSign>false</counterSign>
|
||||
<openInstances>0</openInstances>
|
||||
<destinationStates/>
|
||||
<digitalSignature>false</digitalSignature>
|
||||
</ProcessState>
|
||||
<ProcessState>
|
||||
<processStatePK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<sequence>11</sequence>
|
||||
</processStatePK>
|
||||
<stateName>Cancelar Processo</stateName>
|
||||
<stateDescription>Cancelar Processo</stateDescription>
|
||||
<instruction>Atividade final do processo</instruction>
|
||||
<deadlineTime>0</deadlineTime>
|
||||
<joint>false</joint>
|
||||
<agreementPercentage>0</agreementPercentage>
|
||||
<engineAllocationId></engineAllocationId>
|
||||
<engineAllocationConfiguration></engineAllocationConfiguration>
|
||||
<selectColleague>0</selectColleague>
|
||||
<initialState>false</initialState>
|
||||
<notifyAuthorityDelay>true</notifyAuthorityDelay>
|
||||
<notifyRequisitionerDelay>false</notifyRequisitionerDelay>
|
||||
<allowanceAuthorityTime>0</allowanceAuthorityTime>
|
||||
<frequenceAuthorityTime>1</frequenceAuthorityTime>
|
||||
<allowanceRequisitionerTime>0</allowanceRequisitionerTime>
|
||||
<frequenceRequisitionerTime>0</frequenceRequisitionerTime>
|
||||
<transferAttachments>false</transferAttachments>
|
||||
<subProcessId></subProcessId>
|
||||
<formFolder>0</formFolder>
|
||||
<notifyAuthorityFollowUp>false</notifyAuthorityFollowUp>
|
||||
<notifyRequisitionerFollowUp>false</notifyRequisitionerFollowUp>
|
||||
<automatic>false</automatic>
|
||||
<positionX>445</positionX>
|
||||
<positionY>470</positionY>
|
||||
<forecastedEffortType>0</forecastedEffortType>
|
||||
<forecastedEffort>0</forecastedEffort>
|
||||
<notifyManagerFollowUp>false</notifyManagerFollowUp>
|
||||
<notifyManagerDelay>false</notifyManagerDelay>
|
||||
<allowanceManagerTime>0</allowanceManagerTime>
|
||||
<frequenceManagerTime>0</frequenceManagerTime>
|
||||
<inhibitTransfer>false</inhibitTransfer>
|
||||
<periodId></periodId>
|
||||
<stateType>6</stateType>
|
||||
<bpmnType>65</bpmnType>
|
||||
<signalId>0</signalId>
|
||||
<counterSign>false</counterSign>
|
||||
<openInstances>0</openInstances>
|
||||
<destinationStates/>
|
||||
<digitalSignature>false</digitalSignature>
|
||||
</ProcessState>
|
||||
</list>
|
||||
<list/>
|
||||
<list>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>21</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel></actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>4</initialStateSequence>
|
||||
<finalStateSequence>11</finalStateSequence>
|
||||
<returnLabel></returnLabel>
|
||||
<name></name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
<movementTitle>Solicitação @[request:id] movimentada.</movementTitle>
|
||||
<movementDescription>Cancelar processo</movementDescription>
|
||||
<movementAccessLinkDescription>Acessar solicitação @[request:id]</movementAccessLinkDescription>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>26</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel></actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>2</initialStateSequence>
|
||||
<finalStateSequence>4</finalStateSequence>
|
||||
<returnLabel>Abrir Processo de Desligamento</returnLabel>
|
||||
<name></name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
<movementTitle>Solicitação @[request:id] movimentada.</movementTitle>
|
||||
<movementDescription>Você pode acessar os detalhes, anexos e complementos da sua solicitação.</movementDescription>
|
||||
<movementAccessLinkDescription>Acessar solicitação @[request:id]</movementAccessLinkDescription>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>27</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel></actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>4</initialStateSequence>
|
||||
<finalStateSequence>3</finalStateSequence>
|
||||
<returnLabel>Comunicar Desligamento</returnLabel>
|
||||
<name></name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
<movementTitle>Solicitação @[request:id] movimentada.</movementTitle>
|
||||
<movementDescription>Você pode acessar os detalhes, anexos e complementos da sua solicitação.</movementDescription>
|
||||
<movementAccessLinkDescription>Acessar solicitação @[request:id]</movementAccessLinkDescription>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>35</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel></actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>6</initialStateSequence>
|
||||
<finalStateSequence>10</finalStateSequence>
|
||||
<returnLabel>Desabilitar Acessos e Recolher equipamentos</returnLabel>
|
||||
<name></name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
<movementTitle>Solicitação @[request:id] movimentada.</movementTitle>
|
||||
<movementDescription>Você pode acessar os detalhes, anexos e complementos da sua solicitação.</movementDescription>
|
||||
<movementAccessLinkDescription>Acessar solicitação @[request:id]</movementAccessLinkDescription>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>37</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel></actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>3</initialStateSequence>
|
||||
<finalStateSequence>6</finalStateSequence>
|
||||
<returnLabel>Preparar Documentos</returnLabel>
|
||||
<name></name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
<movementTitle>Solicitação @[request:id] movimentada.</movementTitle>
|
||||
<movementDescription>Você pode acessar os detalhes, anexos e complementos da sua solicitação.</movementDescription>
|
||||
<movementAccessLinkDescription>Acessar solicitação @[request:id]</movementAccessLinkDescription>
|
||||
</ProcessLink>
|
||||
</list>
|
||||
<list>
|
||||
<ProcessAttachmentSecurity>
|
||||
<processAttachmentSecurityPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
<sequence>1</sequence>
|
||||
</processAttachmentSecurityPK>
|
||||
<engineAllocationId>Todos os Usuários</engineAllocationId>
|
||||
<accessLevel>PERM</accessLevel>
|
||||
<editionMode>false</editionMode>
|
||||
</ProcessAttachmentSecurity>
|
||||
</list>
|
||||
<list>
|
||||
<WorkflowProcessEvent>
|
||||
<workflowProcessEventPK>
|
||||
<companyId>1</companyId>
|
||||
<eventId>beforeSendData</eventId>
|
||||
<processId>Desligamento</processId>
|
||||
<version>1</version>
|
||||
</workflowProcessEventPK>
|
||||
<eventDescription>function beforeSendData(customField, customFact) {
|
||||
|
||||
customField[0] = hAPI.getCardValue("INPUT-1760102766739");
|
||||
|
||||
customField[1] = hAPI.getCardValue("INPUT-1760113554087");
|
||||
|
||||
customField[2] = hAPI.getCardValue("ZOOM-1760113715901");
|
||||
|
||||
customField[3] = hAPI.getCardValue("TEXTAREA-1760114039643");
|
||||
|
||||
customField[4] = hAPI.getCardValue("INPUT-1760102542861");
|
||||
|
||||
customField[5] = hAPI.getCardValue("INPUT-1760102557449");
|
||||
|
||||
customField[6] = hAPI.getCardValue("INPUT-1760102071204");
|
||||
|
||||
customField[7] = hAPI.getCardValue("CHECKBOX-1760101124049");
|
||||
|
||||
customField[8] = hAPI.getCardValue("CHECKBOX-1760101314666");
|
||||
|
||||
customField[9] = hAPI.getCardValue("RADIO-1760115461027");
|
||||
}
|
||||
</eventDescription>
|
||||
</WorkflowProcessEvent>
|
||||
</list>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
<list/>
|
||||
</list>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,373 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<java version="1.8.0_461" class="java.beans.XMLDecoder">
|
||||
<object class="java.util.HashMap">
|
||||
<void method="put">
|
||||
<string>mecanismoGrupo</string>
|
||||
<object class="java.util.ArrayList">
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Gestão de Pessoas</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>500_GP</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Departamento Pessoal</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>501_DP</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Tecnologia da Informação e Comunicação</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>TIC</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Gente & Cultura</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>GEC</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Controladoria</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>CON</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Financeiro</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>FIN</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Compras</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>COM</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Suprimentos</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>SUP</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Contabilidade</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>COT</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Diretoria</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>DIR</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Marketing</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>MKT</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Prevenção de Perdas</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>PRE</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Departamento Pessoal</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>DP</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Recursos Humanos</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>RH</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Performance (BI)</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>PEF</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Auditoria</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>AUD</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Compliance</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>CPM</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Comercial</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>CMR</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Novos Negócios</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>NovosNegocios</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Diretoria</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>Diretoria</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>TODOS-TODOS-DIADMISSAO</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>TODOS-TODOS-DIADMISSAO</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Compras Indiretos</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>ComprasIndiretos</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Moderator group suprimentos</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>MODERATOR_suprimentosteste</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Member group suprimentos</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>MEMBER_suprimentosteste</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>expediente</string>
|
||||
<array class="java.lang.String" length="1">
|
||||
<void index="0">
|
||||
<string>Default</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>mecanismo</string>
|
||||
<array class="[Ljava.lang.Object;" length="11">
|
||||
<void index="0">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Associação</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Associado</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="1">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Campo de Formulário</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Campo Formulário</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="2">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>dpf_di_emp_filial_filtro</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>dpf_di_emp_filial_filtro</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="3">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>dpf_di_inicio_diadmissao</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>dpf_di_inicio_diadmissao</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="4">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Executor de Atividade</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Executor Atividade</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="5">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Grupo</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Grupo</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="6">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Grupos do Colaborador</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Grupos Colaborador</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="7">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Papel</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Papel</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="8">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição para um Grupo</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Pool Grupo</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="9">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição para um Papel</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Pool Papel</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="10">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Usuário</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Usuário</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
</object>
|
||||
</java>
|
||||
@@ -0,0 +1,128 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<java version="1.8.0_461" class="java.beans.XMLDecoder">
|
||||
<object class="java.util.HashMap">
|
||||
<void method="put">
|
||||
<string>volume</string>
|
||||
<array class="java.lang.String" length="1">
|
||||
<void index="0">
|
||||
<string>Default</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>mecanismo</string>
|
||||
<array class="[Ljava.lang.Object;" length="11">
|
||||
<void index="0">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Associação</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Associado</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="1">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Campo de Formulário</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Campo Formulário</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="2">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>dpf_di_emp_filial_filtro</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>dpf_di_emp_filial_filtro</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="3">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>dpf_di_inicio_diadmissao</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>dpf_di_inicio_diadmissao</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="4">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Executor de Atividade</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Executor Atividade</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="5">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Grupo</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Grupo</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="6">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Grupos do Colaborador</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Grupos Colaborador</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="7">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Papel</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Papel</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="8">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição para um Grupo</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Pool Grupo</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="9">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição para um Papel</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Pool Papel</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="10">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Usuário</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Usuário</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
</object>
|
||||
</java>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,992 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<java version="1.8.0_461" class="java.beans.XMLDecoder">
|
||||
<object class="java.util.HashMap">
|
||||
<void method="put">
|
||||
<string>volume</string>
|
||||
<array class="java.lang.String" length="1">
|
||||
<void index="0">
|
||||
<string>Default</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>camposFormulario, documentoId = 12959</string>
|
||||
<array class="java.lang.String" length="29">
|
||||
<void index="0">
|
||||
<string>activity</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>analistaTecnico</string>
|
||||
</void>
|
||||
<void index="2">
|
||||
<string>complemento</string>
|
||||
</void>
|
||||
<void index="3">
|
||||
<string>consegueResolver</string>
|
||||
</void>
|
||||
<void index="4">
|
||||
<string>consideracoes</string>
|
||||
</void>
|
||||
<void index="5">
|
||||
<string>consideracoesTecnicas</string>
|
||||
</void>
|
||||
<void index="6">
|
||||
<string>currentUserId</string>
|
||||
</void>
|
||||
<void index="7">
|
||||
<string>currentUsermail</string>
|
||||
</void>
|
||||
<void index="8">
|
||||
<string>currentUserName</string>
|
||||
</void>
|
||||
<void index="9">
|
||||
<string>dataAbertura</string>
|
||||
</void>
|
||||
<void index="10">
|
||||
<string>dataAnaliseTecnica</string>
|
||||
</void>
|
||||
<void index="11">
|
||||
<string>dataUserValidacao</string>
|
||||
</void>
|
||||
<void index="12">
|
||||
<string>detalheSolicitacao</string>
|
||||
</void>
|
||||
<void index="13">
|
||||
<string>emailGestorArea</string>
|
||||
</void>
|
||||
<void index="14">
|
||||
<string>emailSolicitante</string>
|
||||
</void>
|
||||
<void index="15">
|
||||
<string>estabelecimento</string>
|
||||
</void>
|
||||
<void index="16">
|
||||
<string>formMode</string>
|
||||
</void>
|
||||
<void index="17">
|
||||
<string>nomeGestorArea</string>
|
||||
</void>
|
||||
<void index="18">
|
||||
<string>possuiInconsistencia</string>
|
||||
</void>
|
||||
<void index="19">
|
||||
<string>ratingValue</string>
|
||||
</void>
|
||||
<void index="20">
|
||||
<string>requesterId</string>
|
||||
</void>
|
||||
<void index="21">
|
||||
<string>requesterMail</string>
|
||||
</void>
|
||||
<void index="22">
|
||||
<string>requesterName</string>
|
||||
</void>
|
||||
<void index="23">
|
||||
<string>situacaoResolvida</string>
|
||||
</void>
|
||||
<void index="24">
|
||||
<string>tipoOcorrencia</string>
|
||||
</void>
|
||||
<void index="25">
|
||||
<string>tituloOcorrencia</string>
|
||||
</void>
|
||||
<void index="26">
|
||||
<string>userSolicitante</string>
|
||||
</void>
|
||||
<void index="27">
|
||||
<string>userValidacao</string>
|
||||
</void>
|
||||
<void index="28">
|
||||
<string>WKNumProces</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>mecanismoGrupo</string>
|
||||
<object class="java.util.ArrayList">
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Tecnologia e Comunicação</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>TIC</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Compras Indiretos</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>ComprasIndiretos</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Obras e manutenção</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>Manutencao</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Aprovadores Compras Nvl 3</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>AprovadoresComprasNvl3</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Motoristas</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>Motoristas</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Requisitantes de Vaga</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>Requisitantesdevaga</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>Recrutamento</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>Recrutamento</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.GroupDto">
|
||||
<void property="groupDescription">
|
||||
<string>TODOS-TODOS-DIADMISSAO</string>
|
||||
</void>
|
||||
<void property="groupId">
|
||||
<string>TODOS-TODOS-DIADMISSAO</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>expediente</string>
|
||||
<array class="java.lang.String" length="4">
|
||||
<void index="0">
|
||||
<string>Default</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Expediente BackOffice, Logística e Motorista</string>
|
||||
</void>
|
||||
<void index="2">
|
||||
<string>Expediente Escritório Matriz</string>
|
||||
</void>
|
||||
<void index="3">
|
||||
<string>Expediente Lojas</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>processosServidor</string>
|
||||
<object class="java.util.ArrayList">
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Abertura de Chamado</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>Abertura de chamado Manutenção</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>desligamentoColaborador</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>desligamentoColaborador</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>TOTVS RH - Admissão Digital</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>dpf_digte_di_processo_admissao</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Abertura de Chamado</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>FlowEssentials_AberturaDeChamado</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Solicitação de compra - Totvs</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>FlowEssentials_SolicitacaoDeCompras</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Flowservico_terceirizado</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>Flowservico_terceirizado</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Listar Tarefas</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>FLUIGADHOC</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Recrutamento e seleção</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>Recrutamento e Seleção</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Solicitação de compra - Ginseng</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>Solicitação de compras </string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Solicitação de compra - Ginseng</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>Solicitação de compras - Integração teste</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Solicitação de compra - Ginseng</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>Solicitação de compras v2</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.tds.ecm.foundation.ws.ProcessDefinitionDto">
|
||||
<void property="companyId">
|
||||
<int>1</int>
|
||||
</void>
|
||||
<void property="processDescription">
|
||||
<string>Transferência Ginseng</string>
|
||||
</void>
|
||||
<void property="processId">
|
||||
<string>Transferência Ginseng</string>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>mecanismo</string>
|
||||
<array class="[Ljava.lang.Object;" length="12">
|
||||
<void index="0">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Associação</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Associado</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="1">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Campo de Formulário</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Campo Formulário</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="2">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>dpf_di_emp_filial_filtro</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>dpf_di_emp_filial_filtro</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="3">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>dpf_di_inicio_diadmissao</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>dpf_di_inicio_diadmissao</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="4">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Executor de Atividade</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Executor Atividade</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="5">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Grupo</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Grupo</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="6">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Grupos do Colaborador</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Grupos Colaborador</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="7">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>mecCustomAprov</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>mecCustomAprov</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="8">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Papel</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Papel</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="9">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição para um Grupo</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Pool Grupo</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="10">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição para um Papel</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Pool Papel</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void index="11">
|
||||
<array class="java.lang.Object" length="2">
|
||||
<void index="0">
|
||||
<string>Atribuição por Usuário</string>
|
||||
</void>
|
||||
<void index="1">
|
||||
<string>Usuário</string>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
</array>
|
||||
</void>
|
||||
<void method="put">
|
||||
<string>forms</string>
|
||||
<object class="java.util.LinkedList">
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>FLUIGADHOC</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>FLUIGADHOC</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>3</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>FLUIGADHOCPROCESS</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>FLUIGADHOCPROCESS</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>4</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>totvsflow_dataset_tipo_ocorrencia</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>totvsflow_dataset_tipo_ocorrencia</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>14</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>totvsflow_abertura_chamado</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>totvsflow_abertura_chamado</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>15</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>DSFormulariodeAberturadechamado</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Formulário de Abertura de chamado</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>20</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>Abertura_de_chamados</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Solicitação de abertura de chamados</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>21</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>DSvistoriadeServico</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>vistoriadeServico</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>24</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>DSFormulariodeReservadesala</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Formulário de Reserva de sala</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>34</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>totvsflow_dataset_centrocusto</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>totvsflow_dataset_centrocusto</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>103</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>totvsflow_dataset_cadastro_item</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>totvsflow_dataset_cadastro_item</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>104</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>totvsflow_dataset_estabelecimento</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>totvsflow_dataset_estabelecimento</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>105</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>totvsflow_solicitacao_compras</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>totvsflow_solicitacao_compras</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>165</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>aberturadechamado_manutencao</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>aberturadechamado_manutencao</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>400</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>Solicitacao_transferencia</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Solicitacao_transferencia</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>590</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>recrutamento</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>recrutamento</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>823</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>kit_aniversariantes</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Aniversariantes</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>7690</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>kit_cardapio</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Cardápio do Dia</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>7695</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>kit_convenios</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Convênios</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>7703</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>kit_news</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Notícias</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>7709</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>compras_digital</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>compras_digital</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9305</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_formulario_processo_admissao</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Formulario_Processo_Admissao_Protheus</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9626</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_cadastro_status</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Status</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9627</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_configuracoes</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Configuracoes</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9628</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_cadastro_jornada</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Jornada</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9629</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_tipo_documento</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Tipo_Documento</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9630</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_dataset</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Dataset</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9631</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_configuracao</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Configuracoes</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9632</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_beneficio</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Beneficios</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9633</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_compl_contrato</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Comp_Contrato</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9634</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_funcao_jornada</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Funcao_Jornada</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9635</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_dataset_estrutura</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Dataset_Estrutura</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9636</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_grupo_tipo_contrato</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Grupo_Tipo_Contrato</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9637</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_tipo_contrato</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Tipo_Contrato</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9638</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_traducao_campo_valor</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Traducao_Campo_Valor</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9639</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_restricoes_cpf</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Formulario_Restricao_CPF</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9640</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_compl_vt</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Compl_VT</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9641</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>dpf_di_traducao_campo</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>Digte_Public_Form_Di_Traducao_Campo</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>9995</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
<void method="add">
|
||||
<object class="com.totvs.technology.ecmrestclient.cardindexpublisher.FormVO">
|
||||
<void property="datasetName">
|
||||
<string>desligamento</string>
|
||||
</void>
|
||||
<void property="documentDescription">
|
||||
<string>desligamento</string>
|
||||
</void>
|
||||
<void property="documentId">
|
||||
<int>12959</int>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
</object>
|
||||
</void>
|
||||
</object>
|
||||
</java>
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 42 KiB |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 16 KiB |
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
#Thu Oct 16 19:00:54 BRT 2025
|
||||
process.category=
|
||||
process.description=desligamentoColaborador
|
||||
process.instructions=
|
||||
@@ -0,0 +1,4 @@
|
||||
#Thu Oct 16 19:00:54 BRT 2025
|
||||
process.category=
|
||||
process.description=desligamentoColaborador
|
||||
process.instructions=
|
||||
@@ -0,0 +1,4 @@
|
||||
#Thu Oct 16 19:00:54 BRT 2025
|
||||
process.category=
|
||||
process.description=desligamentoColaborador
|
||||
process.instructions=
|
||||
@@ -0,0 +1,22 @@
|
||||
function beforeSendData(customField, customFact) {
|
||||
|
||||
customField[0] = hAPI.getCardValue("INPUT-1760102766739");
|
||||
|
||||
customField[1] = hAPI.getCardValue("INPUT-1760113554087");
|
||||
|
||||
customField[2] = hAPI.getCardValue("ZOOM-1760113715901");
|
||||
|
||||
customField[3] = hAPI.getCardValue("TEXTAREA-1760114039643");
|
||||
|
||||
customField[4] = hAPI.getCardValue("INPUT-1760102542861");
|
||||
|
||||
customField[5] = hAPI.getCardValue("INPUT-1760102557449");
|
||||
|
||||
customField[6] = hAPI.getCardValue("INPUT-1760102071204");
|
||||
|
||||
customField[7] = hAPI.getCardValue("CHECKBOX-1760101124049");
|
||||
|
||||
customField[8] = hAPI.getCardValue("CHECKBOX-1760101314666");
|
||||
|
||||
customField[9] = hAPI.getCardValue("RADIO-1760115461027");
|
||||
}
|
||||
Reference in New Issue
Block a user