Novo git da alteração
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
eclipse.preferences.version=1
|
||||
encoding//forms/recrutamentoeselecao/recrutamentoeselecao.html=UTF-8
|
||||
@@ -17,20 +17,20 @@ function createDataset(fields, constraints, sortFields) {
|
||||
|
||||
// Lista dos centros de custo
|
||||
var dados = [
|
||||
["41101", "Comercial", "Analanny Magalhães", "analanny.magalhaes@grupoginseng.com.br", "1"],
|
||||
["41101", "Comercial BA", "Arianne Sodre", "arianne.sodre@grupoginseng.com.br", "2"],
|
||||
["41101", "Comercial SE", "Iolanda Bezerra", "iolanda.bezerra@grupoginseng.com.br", "3"],
|
||||
["41101", "Comercial AL", "Raquel Tenório", "raquel.tenorio@grupoginseng.com.br", "4"],
|
||||
["51101", "Diretoria e Gestão", "João Marcelo", "joao.loureiro@grupoginseng.com.br", "5"],
|
||||
["51102", "Operações", "Diogo Demetrio", "diogo.martins@grupoginseng.com.br", "6"],
|
||||
["41101", "Comercial BA", "Arianne Sodre", "arianne.sodre@grupoginseng.com.br", "1"],
|
||||
["41101", "Comercial SE", "Iolanda Bezerra", "iolanda.bezerra@grupoginseng.com.br", "2"],
|
||||
["41101", "Comercial AL", "Raquel Tenório", "raquel.tenorio@grupoginseng.com.br", "3"],
|
||||
["51101", "Diretoria e Gestão", "João Marcelo", "joao.loureiro@grupoginseng.com.br", "4"],
|
||||
["51102", "Operações", "Lucas Barbosa", "lucas.barbosa@grupoginseng.com.br", "5"],
|
||||
["51102", "Obras e Manutenção", "Diogo Demetrio", "diogo.martins@grupoginseng.com.br", "6"],
|
||||
["51103", "Controladoria", "Ariklenyo Nascimento", "ari.nascimento@grupoginseng.com.br", "7"],
|
||||
["51104", "Compliance", "Marla Palma", "marla.palma@grupoginseng.com.br", "8"],
|
||||
["51107", "Administrativo", "Lucila Brandão", "lucila.brandao@grupoginseng.com.br", "9"],
|
||||
["51110", "Gente e Cultura", "Francine Peiter", "francine.silva@grupoginseng.com.br", "10"],
|
||||
["51113", "TI", "Igor Oliveira", "igor.oliveira@grupoginseng.com.br", "11"],
|
||||
["51114", "Projetos e Performance", "Lucas Rocha", "lucas.rocha@grupoginseng.com.br", "12"],
|
||||
["41101", "Treinamento", "Analanny Magalhães", "analanny.magalhaes@grupoginseng.com.br", "13"],
|
||||
["41101", "Marketing", "Analanny Magalhães", "analanny.magalhaes@grupoginseng.com.br", "14"]
|
||||
["41101", "Treinamento", "Andreia Leite", "andreia.leite@grupoginseng.com.br", "13"],
|
||||
["41101", "Marketing", "Andreia Leite", "andreia.leite@grupoginseng.com.br", "14"]
|
||||
|
||||
];
|
||||
|
||||
|
||||
@@ -1,61 +1,84 @@
|
||||
function defineStructure() {
|
||||
addColumn("codigo");
|
||||
addColumn("descricao");
|
||||
}
|
||||
|
||||
function onSync(lastSyncDate) {}
|
||||
|
||||
function createDataset(fields, constraints, sortFields) {
|
||||
var dataset = DatasetBuilder.newDataset();
|
||||
var dataSource = "/jdbc/ProtheusDSs"; // Nome da conexão cadastrada no Fluig
|
||||
var ic = new javax.naming.InitialContext();
|
||||
var ds = ic.lookup(dataSource);
|
||||
var conn = ds.getConnection();
|
||||
var stmt = null;
|
||||
var rs = null;
|
||||
var dataset = DatasetBuilder.newDataset();
|
||||
dataset.addColumn("DESCRICAO");
|
||||
dataset.addColumn("CBO");
|
||||
|
||||
try {
|
||||
log.info("Iniciando execução do dataset...");
|
||||
var servicecode = "Postprod";
|
||||
var usuario = "fluig";
|
||||
var senha = "Ginseng@";
|
||||
|
||||
var sql = "select C8V_CODIGO, C8V_DESCRI from C8V010 where D_E_L_E_T_= '' and C8V_FILIAL = '01'";
|
||||
log.info("Query SQL: " + sql);
|
||||
var filial = "01";
|
||||
var pagesize = 100;
|
||||
var page = 1;
|
||||
var total = null;
|
||||
|
||||
stmt = conn.prepareStatement(sql);
|
||||
rs = stmt.executeQuery();
|
||||
try {
|
||||
var clientService = fluigAPI.getAuthorizeClientService();
|
||||
|
||||
dataset.addColumn("codigo");
|
||||
dataset.addColumn("descricao");
|
||||
while (true) {
|
||||
var endpoint =
|
||||
"https://rest.grupoginseng.com.br/rest/uf_sigagpe/funcoes" +
|
||||
"?filial=" + encodeURIComponent(filial) +
|
||||
"&page=" + encodeURIComponent(page) +
|
||||
"&pagesize=" + encodeURIComponent(pagesize);
|
||||
|
||||
var encontrados = {}; // Usando um objeto para evitar duplicação
|
||||
|
||||
while (rs.next()) {
|
||||
var codigo = rs.getString("C8V_CODIGO");
|
||||
var descricao = rs.getString("C8V_DESCRI");
|
||||
|
||||
if (!encontrados[codigo]) { // Verifica se já foi adicionado
|
||||
encontrados[codigo] = true; // Marca como processado
|
||||
log.info("Registro encontrado: " + codigo + " - " + descricao);
|
||||
dataset.addRow([codigo, descricao]);
|
||||
}
|
||||
var data = {
|
||||
companyId: "1",
|
||||
serviceCode: servicecode,
|
||||
endpoint: endpoint,
|
||||
method: "get",
|
||||
timeoutService: "60000",
|
||||
params: {},
|
||||
options: {
|
||||
encoding: "UTF-8",
|
||||
useBasicAuth: true,
|
||||
username: usuario,
|
||||
password: senha
|
||||
}
|
||||
};
|
||||
|
||||
if (Object.keys(encontrados).length === 0) {
|
||||
log.info("Nenhum registro encontrado para a consulta.");
|
||||
}
|
||||
var vo = clientService.invoke(JSON.stringify(data));
|
||||
var retorno = vo.getResult();
|
||||
|
||||
} catch (e) {
|
||||
log.error("Erro ao executar dataset: " + e.message);
|
||||
} finally {
|
||||
try {
|
||||
if (rs) rs.close();
|
||||
if (stmt) stmt.close();
|
||||
if (conn) conn.close();
|
||||
} catch (e) {
|
||||
log.error("Erro ao fechar recursos: " + e.message);
|
||||
}
|
||||
if (!retorno) break;
|
||||
|
||||
var obj = JSON.parse(retorno);
|
||||
|
||||
// se a API usa "sucesso"
|
||||
if (obj.sucesso !== true) {
|
||||
dataset.addRow(["(API retornou sucesso=false)", ""]);
|
||||
break;
|
||||
}
|
||||
|
||||
// sua lista vem em "funcoes" (não "items")
|
||||
var funcoes = obj.funcoes;
|
||||
|
||||
if (!funcoes || funcoes.length === 0) break;
|
||||
|
||||
// guarda total se vier
|
||||
if (total === null && obj.total != null) total = Number(obj.total);
|
||||
|
||||
for (var i = 0; i < funcoes.length; i++) {
|
||||
dataset.addRow([
|
||||
funcoes[i].RJ_DESC || "",
|
||||
funcoes[i].RJ_CODCBO || "" // ou RJ_CBO se for o campo desejado
|
||||
]);
|
||||
}
|
||||
|
||||
// condição de parada segura
|
||||
if (funcoes.length < pagesize) break;
|
||||
|
||||
// se quiser parar com base no total:
|
||||
if (total !== null && page * pagesize >= total) break;
|
||||
|
||||
page++;
|
||||
}
|
||||
|
||||
return dataset;
|
||||
}
|
||||
} catch (e) {
|
||||
dataset = DatasetBuilder.newDataset();
|
||||
dataset.addColumn("ERRO");
|
||||
dataset.addRow([String(e)]);
|
||||
}
|
||||
|
||||
function onMobileSync(user) {}
|
||||
return dataset;
|
||||
}
|
||||
@@ -16,12 +16,22 @@ function displayFields(form, customHTML) {
|
||||
|
||||
//requester
|
||||
if (activity == 0) {
|
||||
form.setValue("requesterName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("requesterMail", retorno.getValue(0, "mail"));
|
||||
form.setValue("requesterId", userId);
|
||||
form.setValue("requesterName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("requesterMail", retorno.getValue(0, "mail"));
|
||||
form.setValue("requesterId", userId);
|
||||
} else {
|
||||
form.setValue("currentUserName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("currentUsermail", retorno.getValue(0, "mail"));
|
||||
form.setValue("currentUserId", userId);
|
||||
form.setValue("currentUserName", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("currentUsermail", retorno.getValue(0, "mail"));
|
||||
form.setValue("currentUserId", userId);
|
||||
}
|
||||
|
||||
form.setShowDisabledFields(true);
|
||||
form.setHidePrintLink(true);
|
||||
|
||||
// ✅ Quando for atividade de aprovação do gestor
|
||||
if (activity == 31) {
|
||||
var hoje = new java.text.SimpleDateFormat("dd/MM/yyyy").format(new java.util.Date());
|
||||
form.setValue("userRealizacaoCompras", retorno.getValue(0, "colleagueName"));
|
||||
form.setValue("dataRealizacaoCompras", hoje);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
function validateForm(form) {
|
||||
var msg = "";
|
||||
|
||||
// Pega o valor do grupo de rádio
|
||||
var motivo = form.getValue("validarMotivo");
|
||||
|
||||
if (!motivo) {
|
||||
msg += "Campo Motivo não foi preenchido\n";
|
||||
}
|
||||
|
||||
if (msg != "") {
|
||||
throw msg;
|
||||
}
|
||||
}
|
||||
@@ -244,12 +244,12 @@
|
||||
</label>
|
||||
<span class="required text-danger"><strong> * </strong></span>
|
||||
<input type="zoom" class="form-control requiredInput" name="funcao" id="funcao" data-zoom="{
|
||||
'displayKey':'descricao',
|
||||
'displayKey':'DESCRICAO',
|
||||
'datasetId':'ds_cargos',
|
||||
'placeholder': 'Pesquisar nome do estabelecimento ou filial.',
|
||||
'placeholder': 'Pesquisar função.',
|
||||
'fields':[
|
||||
{
|
||||
'field':'descricao',
|
||||
'field':'DESCRICAO',
|
||||
'label':'Descrição',
|
||||
'standard':'true',
|
||||
'search':'true'
|
||||
@@ -316,7 +316,7 @@
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input name="validarMotivo" id="validacaoMotivoSubstituicao" value="substituição" type="radio" />
|
||||
<input name="validarMotivo" id="validacaoMotivoSubstituicao" value="substituicao" type="radio" />
|
||||
<span class="change-weight">Substituição</span>
|
||||
</label>
|
||||
</div>
|
||||
@@ -351,7 +351,7 @@
|
||||
Justicativa do motivo da Solicitação?
|
||||
</label>
|
||||
<span class="text-danger"><strong>*</strong></span>
|
||||
<textarea placeholder="Descreva o motivo para a solicitação da vaga"
|
||||
<textarea placeholder="Descreva o motivo para a solicita��o da vaga"
|
||||
class="form-control requiredInput" rows="3" id="justificativa" name="justificativa"></textarea>
|
||||
<p class="text-danger text-error">
|
||||
Preenchimento obrigatório.
|
||||
@@ -484,7 +484,6 @@
|
||||
<th style="width: 20%;">Nome do candidato</th>
|
||||
<th style="width: 20%;">Telefone</th>
|
||||
<th style="width: 25%;">Email</th>
|
||||
<th style="width: 5%;">Aprovado</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -498,9 +497,6 @@
|
||||
<td class="fs-v-align-top fs-text-center">
|
||||
<input type="email" class="form-control" name="email" style="width: 150px;">
|
||||
</td>
|
||||
<td class="fs-v-align-top fs-text-center">
|
||||
<input type="checkbox" name="aprovado">
|
||||
</td>
|
||||
<td class="fs-v-align-top fs-text-center">
|
||||
<button type="button" class="btn btn-danger btn-sm remover-linha"
|
||||
onclick="removeLinhaComAnexo(this)">Remover</button>
|
||||
@@ -509,6 +505,62 @@
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="row">
|
||||
<br />
|
||||
<h6>
|
||||
Checklist de Início.
|
||||
</h6>
|
||||
<br />
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="datainiciotrabalho"> Data de início</label>
|
||||
<input type="date" name="datainiciotrabalho" id="datainiciotrabalho" class="form-control">
|
||||
</div>
|
||||
<div class="form-group col-md-10 col-xs-6">
|
||||
<label>Qual o Kit vai ser utilizado?</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br>
|
||||
<div>
|
||||
<label>
|
||||
<input name="itensinicio" id="itensback" value="backoffice" type="radio">
|
||||
<span class="change-weight">Kit Backoffice (Notebook, mouse, teclado e headset).</span>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input name="itensinicio" id="itensamg" value="amg" type="radio">
|
||||
<span class="change-weight">Kit AMG (Notebook, Kit mouse e teclado, headset e telefone
|
||||
coporativo).</span>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input name="itensinicio" id="itenscomercial" value="comercial" type="radio">
|
||||
<span class="change-weight">Kit Comercial (Mobshop e Mobpin).</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group col-md-10 col-xs-6">
|
||||
<label>Fardamento pronto para ser entregue?</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br>
|
||||
<div>
|
||||
<label>
|
||||
<input name="fardamentoPronto" id="fardamentoprontosim" value="pronto" type="radio">
|
||||
<span class="change-weight">Sim</span>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input name="fardamentoPronto" id="fardamentoprontonao" value="faltando" type="radio">
|
||||
<span class="change-weight">Não</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row justificativa-activity-6">
|
||||
<div class="form-field">
|
||||
@@ -525,96 +577,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="activity activity-31">
|
||||
<div>
|
||||
<br />
|
||||
<h2>
|
||||
<i class="flaticon flaticon-edit-square" aria-hidden="true"></i>
|
||||
Cheklist de Início das atividades
|
||||
</h2>
|
||||
<h6>
|
||||
Checklist de Início.
|
||||
</h6>
|
||||
<br />
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-10 col-xs-6">
|
||||
<label for="userRealizacaoCompras">
|
||||
Usuário responsável pela comunicação
|
||||
</label>
|
||||
<input type="text" name="userRealizacaoCompras" id="userRealizacaoCompras" class="form-control"
|
||||
data-protection="Usuário responsável pela compra" data-protection-anonymizable=""
|
||||
data-protection-sensitive="" data-protection-name=""
|
||||
data-protection-class-legitimate-interests="Dado coletado para o funcionamento do processo"
|
||||
readonly="readonly">
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="dataRealizacaoCompras"> Data </label>
|
||||
<input type="text" name="dataRealizacaoCompras" id="dataRealizacaoCompras" class="form-control"
|
||||
readonly="readonly">
|
||||
</div>
|
||||
<div class="form-group col-md-2 col-xs-6">
|
||||
<label for="datainiciotrabalho"> Data de início</label>
|
||||
<input type="date" name="datainiciotrabalho" id="datainiciotrabalho" class="form-control">
|
||||
</div>
|
||||
<div class="form-group col-md-10 col-xs-6">
|
||||
<label>Qual o Kit vai ser utilizado?</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br>
|
||||
<div>
|
||||
<label>
|
||||
<input name="itensinicio" id="itensback" value="backoffice" type="radio">
|
||||
<span class="change-weight">Kit Backoffice (Notebook, mouse, teclado e headset).</span>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input name="itensinicio" id="itensamg" value="amg" type="radio">
|
||||
<span class="change-weight">Kit AMG (Notebook, Kit mouse e teclado, headset e telefone
|
||||
coporativo).</span>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input name="itensinicio" id="itenscomercial" value="comercial" type="radio">
|
||||
<span class="change-weight">Kit Comercial (Mobshop e Mobpin).</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group col-md-10 col-xs-6">
|
||||
<label>Fardamento pronto para ser entregue?</label>
|
||||
<span class="text-danger"><strong>*</strong></span><br>
|
||||
<div>
|
||||
<label>
|
||||
<input name="fardamentoPronto" id="fardamentoprontosim" value="pronto" type="radio">
|
||||
<span class="change-weight">Sim</span>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<label>
|
||||
<input name="fardamentoPronto" id="fardamentoprontonao" value="faltando" type="radio">
|
||||
<span class="change-weight">Não</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justificativa-activity-31">
|
||||
<div class="form-field">
|
||||
<div class="form-input">
|
||||
<div class="form-group col-md-12 col-xs-12">
|
||||
<label for="consideracoesCompras"> Considerações </label>
|
||||
<textarea placeholder="Insira suas considerações" class="form-control" rows="3"
|
||||
id="consideracoesCompras" name="consideracoesCompras" value=""></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="activity activity-24">
|
||||
<div>
|
||||
<br />
|
||||
|
||||
@@ -1,235 +1,235 @@
|
||||
$(document).ready(function () {
|
||||
if ($("#formMode").val() == "VIEW") {
|
||||
showAndBlock(["all"]);
|
||||
$(".ratingAction").hide();
|
||||
if ($("input[name=situacaoResolvida]:checked").val() == "sim") {
|
||||
$(".ratingAction").show();
|
||||
}
|
||||
let ratingValue;
|
||||
if ($("#ratingValue").val() == "" || $("#ratingValue").val() == 0) {
|
||||
ratingValue = 0;
|
||||
} else {
|
||||
ratingValue = $("#ratingValue").val();
|
||||
}
|
||||
let html = "";
|
||||
for (let i = 0; i < 5; i++) {
|
||||
if (i < ratingValue) {
|
||||
html +=
|
||||
'<i class="flaticon flaticon-star-active icon-md" aria-hidden="true"></i>';
|
||||
} else {
|
||||
html +=
|
||||
'<i class="flaticon flaticon-star icon-md" aria-hidden="true"></i>';
|
||||
}
|
||||
}
|
||||
console.log(html);
|
||||
$(".minha-avaliacao").html(html);
|
||||
} else {
|
||||
//show the right fields
|
||||
var activity = $("#activity").val();
|
||||
var requestDate = getCurrentDate();
|
||||
var ratingStars;
|
||||
var servicoNaoValidado =
|
||||
$("input[name=situacaoResolvida]:checked").val() == "nao";
|
||||
// $(document).ready(function () {
|
||||
// if ($("#formMode").val() == "VIEW") {
|
||||
// showAndBlock(["all"]);
|
||||
// $(".ratingAction").hide();
|
||||
// if ($("input[name=situacaoResolvida]:checked").val() == "sim") {
|
||||
// $(".ratingAction").show();
|
||||
// }
|
||||
// let ratingValue;
|
||||
// if ($("#ratingValue").val() == "" || $("#ratingValue").val() == 0) {
|
||||
// ratingValue = 0;
|
||||
// } else {
|
||||
// ratingValue = $("#ratingValue").val();
|
||||
// }
|
||||
// let html = "";
|
||||
// for (let i = 0; i < 5; i++) {
|
||||
// if (i < ratingValue) {
|
||||
// html +=
|
||||
// '<i class="flaticon flaticon-star-active icon-md" aria-hidden="true"></i>';
|
||||
// } else {
|
||||
// html +=
|
||||
// '<i class="flaticon flaticon-star icon-md" aria-hidden="true"></i>';
|
||||
// }
|
||||
// }
|
||||
// console.log(html);
|
||||
// $(".minha-avaliacao").html(html);
|
||||
// } else {
|
||||
// //show the right fields
|
||||
// var activity = $("#activity").val();
|
||||
// var requestDate = getCurrentDate();
|
||||
// var ratingStars;
|
||||
// var servicoNaoValidado =
|
||||
// $("input[name=situacaoResolvida]:checked").val() == "nao";
|
||||
|
||||
$(".activity").hide();
|
||||
// $(".activity").hide();
|
||||
|
||||
$(".activity-" + activity).show();
|
||||
// $(".activity-" + activity).show();
|
||||
|
||||
if (activity == 0 || activity == 1) {
|
||||
//primeira atividade
|
||||
//$("#dataAbertura").val(requestDate[0] + " - " + requestDate[1]);
|
||||
$("#dataAbertura").val(requestDate[0]);
|
||||
add_new_row("tabelaItens");
|
||||
} else if (activity == 4) {
|
||||
showAndBlock([0]);
|
||||
$("#userValidacaoGestor").val($("#currentUserName").val());
|
||||
$("#dataValidacaoGestor").val(
|
||||
requestDate[0] + " - " + requestDate[1]
|
||||
);
|
||||
updt_line();
|
||||
} else if (activity == 6) {
|
||||
showAndBlock([0, 4]);
|
||||
$("#userValidacaoCompras").val($("#currentUserName").val());
|
||||
$("#dataValidacaoCompras").val(
|
||||
requestDate[0] + " - " + requestDate[1]
|
||||
);
|
||||
// if (activity == 0 || activity == 1) {
|
||||
// //primeira atividade
|
||||
// //$("#dataAbertura").val(requestDate[0] + " - " + requestDate[1]);
|
||||
// $("#dataAbertura").val(requestDate[0]);
|
||||
// add_new_row("tabelaItens");
|
||||
// } else if (activity == 4) {
|
||||
// showAndBlock([0]);
|
||||
// $("#userValidacaoGestor").val($("#currentUserName").val());
|
||||
// $("#dataValidacaoGestor").val(
|
||||
// requestDate[0] + " - " + requestDate[1]
|
||||
// );
|
||||
// updt_line();
|
||||
// } else if (activity == 6) {
|
||||
// showAndBlock([0, 4]);
|
||||
// $("#userValidacaoCompras").val($("#currentUserName").val());
|
||||
// $("#dataValidacaoCompras").val(
|
||||
// requestDate[0] + " - " + requestDate[1]
|
||||
// );
|
||||
|
||||
if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
$(".justificativa-activity-4").hide();
|
||||
}
|
||||
updt_line();
|
||||
// if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
// $(".justificativa-activity-4").hide();
|
||||
// }
|
||||
// updt_line();
|
||||
|
||||
} else if (activity == 57) {
|
||||
$("#userValidacao").val($("#currentUserName").val());
|
||||
$("#dataUserValidacao").val(
|
||||
requestDate[0] + " - " + requestDate[1]
|
||||
);
|
||||
if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
$(".justificativa-activity-4").hide();
|
||||
}
|
||||
if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
$(".justificativa-activity-6").hide();
|
||||
}
|
||||
showAndBlock([0, 4, 6, 31, 24, 18]);
|
||||
// } else if (activity == 57) {
|
||||
// $("#userValidacao").val($("#currentUserName").val());
|
||||
// $("#dataUserValidacao").val(
|
||||
// requestDate[0] + " - " + requestDate[1]
|
||||
// );
|
||||
// if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
// $(".justificativa-activity-4").hide();
|
||||
// }
|
||||
// if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
// $(".justificativa-activity-6").hide();
|
||||
// }
|
||||
// showAndBlock([0, 4, 6, 31, 24, 18]);
|
||||
|
||||
let ratingValue;
|
||||
if ($("#ratingValue").val() == "" || $("#ratingValue").val() == 0) {
|
||||
ratingValue = 0;
|
||||
} else {
|
||||
ratingValue = $("#ratingValue").val();
|
||||
}
|
||||
ratingStars = FLUIGC.stars(".minha-avaliacao", {
|
||||
stars: 5,
|
||||
value: ratingValue,
|
||||
sizeClass: "icon-md",
|
||||
});
|
||||
ratingStars.on("click", (obj) => {
|
||||
let countCurrentRating = 0;
|
||||
$(".fluigicon-star").each(() => {
|
||||
countCurrentRating++;
|
||||
});
|
||||
$("#ratingValue").val(countCurrentRating);
|
||||
});
|
||||
$("input[name=consegueResolver]").on("change", function () {
|
||||
$(".consegueResolverMotivo").hide();
|
||||
if ($(`input[name=${$(this).attr("name")}]:checked`).val() == "nao")
|
||||
$(".consegueResolverMotivo").show();
|
||||
});
|
||||
$("input[name=consegueResolver]").trigger("change");
|
||||
// let ratingValue;
|
||||
// if ($("#ratingValue").val() == "" || $("#ratingValue").val() == 0) {
|
||||
// ratingValue = 0;
|
||||
// } else {
|
||||
// ratingValue = $("#ratingValue").val();
|
||||
// }
|
||||
// ratingStars = FLUIGC.stars(".minha-avaliacao", {
|
||||
// stars: 5,
|
||||
// value: ratingValue,
|
||||
// sizeClass: "icon-md",
|
||||
// });
|
||||
// ratingStars.on("click", (obj) => {
|
||||
// let countCurrentRating = 0;
|
||||
// $(".fluigicon-star").each(() => {
|
||||
// countCurrentRating++;
|
||||
// });
|
||||
// $("#ratingValue").val(countCurrentRating);
|
||||
// });
|
||||
// $("input[name=consegueResolver]").on("change", function () {
|
||||
// $(".consegueResolverMotivo").hide();
|
||||
// if ($(`input[name=${$(this).attr("name")}]:checked`).val() == "nao")
|
||||
// $(".consegueResolverMotivo").show();
|
||||
// });
|
||||
// $("input[name=consegueResolver]").trigger("change");
|
||||
|
||||
$("input[name=situacaoResolvida]").on("change", function () {
|
||||
$(".explainAction, .ratingAction").hide();
|
||||
if ($("input[name=situacaoResolvida]:checked").val() == "nao") {
|
||||
$(".explainAction").show();
|
||||
} else if (
|
||||
$("input[name=situacaoResolvida]:checked").val() == "sim"
|
||||
) {
|
||||
$(".ratingAction").show();
|
||||
}
|
||||
});
|
||||
$("input[name=situacaoResolvida]").trigger("change");
|
||||
// $("input[name=situacaoResolvida]").on("change", function () {
|
||||
// $(".explainAction, .ratingAction").hide();
|
||||
// if ($("input[name=situacaoResolvida]:checked").val() == "nao") {
|
||||
// $(".explainAction").show();
|
||||
// } else if (
|
||||
// $("input[name=situacaoResolvida]:checked").val() == "sim"
|
||||
// ) {
|
||||
// $(".ratingAction").show();
|
||||
// }
|
||||
// });
|
||||
// $("input[name=situacaoResolvida]").trigger("change");
|
||||
|
||||
updt_line();
|
||||
// updt_line();
|
||||
|
||||
} else if (activity == 31) {
|
||||
$("#userRealizacaoCompras").val($("#currentUserName").val());
|
||||
$("#dataRealizacaoCompras").val(
|
||||
requestDate[0] + " - " + requestDate[1]
|
||||
);
|
||||
showAndBlock([0, 4, 6]);
|
||||
// } else if (activity == 31) {
|
||||
// $("#userRealizacaoCompras").val($("#currentUserName").val());
|
||||
// $("#dataRealizacaoCompras").val(
|
||||
// requestDate[0] + " - " + requestDate[1]
|
||||
// );
|
||||
// showAndBlock([0, 4, 6]);
|
||||
|
||||
if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
$(".justificativa-activity-4").hide();
|
||||
}
|
||||
if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
$(".justificativa-activity-6").hide();
|
||||
}
|
||||
updt_line();
|
||||
} else if (activity == 18) {
|
||||
if ($("justificativaValidaProblema") != "") {
|
||||
showAndBlock([0, 4, 6, 24, 31]);
|
||||
} else {
|
||||
showAndBlock([0, 4, 6, 31]);
|
||||
}
|
||||
$("#userValidacaofunc").val($("#currentUserName").val());
|
||||
$("#dataValidacaofunc").val(requestDate[0] + " - " + requestDate[1]);
|
||||
// if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
// $(".justificativa-activity-4").hide();
|
||||
// }
|
||||
// if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
// $(".justificativa-activity-6").hide();
|
||||
// }
|
||||
// updt_line();
|
||||
// } else if (activity == 18) {
|
||||
// if ($("justificativaValidaProblema") != "") {
|
||||
// showAndBlock([0, 4, 6, 24, 31]);
|
||||
// } else {
|
||||
// showAndBlock([0, 4, 6, 31]);
|
||||
// }
|
||||
// $("#userValidacaofunc").val($("#currentUserName").val());
|
||||
// $("#dataValidacaofunc").val(requestDate[0] + " - " + requestDate[1]);
|
||||
|
||||
if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
$(".justificativa-activity-4").hide();
|
||||
}
|
||||
if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
$(".justificativa-activity-6").hide();
|
||||
}
|
||||
if ($("#consideracoesCompras").val() == "") {
|
||||
$(".justificativa-activity-31").hide();
|
||||
}
|
||||
// if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
// $(".justificativa-activity-4").hide();
|
||||
// }
|
||||
// if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
// $(".justificativa-activity-6").hide();
|
||||
// }
|
||||
// if ($("#consideracoesCompras").val() == "") {
|
||||
// $(".justificativa-activity-31").hide();
|
||||
// }
|
||||
|
||||
$("input[name=validacaoFunc]").on("change", function () {
|
||||
$(".justificativaDecisaoFunc").hide();
|
||||
if (
|
||||
$("input[name=validacaoFunc]:checked").val() == "incorreto" ||
|
||||
$("input[name=validacaoFunc]:checked").val() == "naoEntregue"
|
||||
) {
|
||||
$(".justificativaDecisaoFunc").show();
|
||||
}
|
||||
});
|
||||
$("input[name=validacaoFunc]").trigger("change");
|
||||
// $("input[name=validacaoFunc]").on("change", function () {
|
||||
// $(".justificativaDecisaoFunc").hide();
|
||||
// if (
|
||||
// $("input[name=validacaoFunc]:checked").val() == "incorreto" ||
|
||||
// $("input[name=validacaoFunc]:checked").val() == "naoEntregue"
|
||||
// ) {
|
||||
// $(".justificativaDecisaoFunc").show();
|
||||
// }
|
||||
// });
|
||||
// $("input[name=validacaoFunc]").trigger("change");
|
||||
|
||||
updt_line();
|
||||
} else if (activity == 24) {
|
||||
showAndBlock([0, 4, 6, 31]);
|
||||
$("#userValidacaoItens").val($("#currentUserName").val());
|
||||
$("#dataValidacaoItens").val(requestDate[0] + " - " + requestDate[1]);
|
||||
// updt_line();
|
||||
// } else if (activity == 24) {
|
||||
// showAndBlock([0, 4, 6, 31]);
|
||||
// $("#userValidacaoItens").val($("#currentUserName").val());
|
||||
// $("#dataValidacaoItens").val(requestDate[0] + " - " + requestDate[1]);
|
||||
|
||||
if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
$(".justificativa-activity-4").hide();
|
||||
}
|
||||
if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
$(".justificativa-activity-6").hide();
|
||||
}
|
||||
if ($("#consideracoesCompras").val() == "") {
|
||||
$(".justificativa-activity-31").hide();
|
||||
}
|
||||
updt_line();
|
||||
} else if (activity == 114) {
|
||||
showAndBlock([0, 4, 6, 31, 24, 57, 18]);
|
||||
$("#userValidacaoCorre").val($("#currentUserName").val());
|
||||
$("#dataValidacaoCorre").val(requestDate[0] + " - " + requestDate[1]);
|
||||
// if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
// $(".justificativa-activity-4").hide();
|
||||
// }
|
||||
// if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
// $(".justificativa-activity-6").hide();
|
||||
// }
|
||||
// if ($("#consideracoesCompras").val() == "") {
|
||||
// $(".justificativa-activity-31").hide();
|
||||
// }
|
||||
// updt_line();
|
||||
// } else if (activity == 114) {
|
||||
// showAndBlock([0, 4, 6, 31, 24, 57, 18]);
|
||||
// $("#userValidacaoCorre").val($("#currentUserName").val());
|
||||
// $("#dataValidacaoCorre").val(requestDate[0] + " - " + requestDate[1]);
|
||||
|
||||
if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
$(".justificativa-activity-4").hide();
|
||||
}
|
||||
if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
$(".justificativa-activity-6").hide();
|
||||
}
|
||||
if ($("#consideracoesCompras").val() == "") {
|
||||
$(".justificativa-activity-31").hide();
|
||||
}
|
||||
// if ($("#justificativaDecisaoGestor").val() == "") {
|
||||
// $(".justificativa-activity-4").hide();
|
||||
// }
|
||||
// if ($("#justificativaDecisaoCompras").val() == "") {
|
||||
// $(".justificativa-activity-6").hide();
|
||||
// }
|
||||
// if ($("#consideracoesCompras").val() == "") {
|
||||
// $(".justificativa-activity-31").hide();
|
||||
// }
|
||||
|
||||
$("input[name=validacaoCorre]").on("change", function () {
|
||||
$(".justificativaDecisaoCorre").hide();
|
||||
if (
|
||||
$("input[name=validacaoCorre]:checked").val() == "entregue" ||
|
||||
$("input[name=validacaoCorre]:checked").val() == "naoEntregue"
|
||||
) {
|
||||
$(".justificativaDecisaoCorre").show();
|
||||
}
|
||||
});
|
||||
$("input[name=validacaoCorre]").trigger("change");
|
||||
// $("input[name=validacaoCorre]").on("change", function () {
|
||||
// $(".justificativaDecisaoCorre").hide();
|
||||
// if (
|
||||
// $("input[name=validacaoCorre]:checked").val() == "entregue" ||
|
||||
// $("input[name=validacaoCorre]:checked").val() == "naoEntregue"
|
||||
// ) {
|
||||
// $(".justificativaDecisaoCorre").show();
|
||||
// }
|
||||
// });
|
||||
// $("input[name=validacaoCorre]").trigger("change");
|
||||
|
||||
updt_line();
|
||||
}
|
||||
}
|
||||
// updt_line();
|
||||
// }
|
||||
// }
|
||||
|
||||
});
|
||||
// });
|
||||
|
||||
|
||||
|
||||
//show the activity and then block the fields
|
||||
function showAndBlock(activity) {
|
||||
for (var i = 0, l = activity.length; i < l; i++) {
|
||||
$(".activity-" + activity[i]).show();
|
||||
$(".hideButton").hide();
|
||||
$(".activity-" + activity[i] + " :input").each(function () {
|
||||
$(this).attr("readonly", "readonly");
|
||||
$(this)
|
||||
.css("background-color", "#eee")
|
||||
.children("option:not(:selected)")
|
||||
.prop("disabled", true);
|
||||
$(this).on("mousedown", function (e) {
|
||||
this.blur();
|
||||
window.focus();
|
||||
});
|
||||
if ($(this).is(":checkbox")) {
|
||||
$(this).attr("disabled", true);
|
||||
} else if ($(this).is(":radio")) {
|
||||
$(this).on("click", function () {
|
||||
return false;
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
// //show the activity and then block the fields
|
||||
// function showAndBlock(activity) {
|
||||
// for (var i = 0, l = activity.length; i < l; i++) {
|
||||
// $(".activity-" + activity[i]).show();
|
||||
// $(".hideButton").hide();
|
||||
// $(".activity-" + activity[i] + " :input").each(function () {
|
||||
// $(this).attr("readonly", "readonly");
|
||||
// $(this)
|
||||
// .css("background-color", "#eee")
|
||||
// .children("option:not(:selected)")
|
||||
// .prop("disabled", true);
|
||||
// $(this).on("mousedown", function (e) {
|
||||
// this.blur();
|
||||
// window.focus();
|
||||
// });
|
||||
// if ($(this).is(":checkbox")) {
|
||||
// $(this).attr("disabled", true);
|
||||
// } else if ($(this).is(":radio")) {
|
||||
// $(this).on("click", function () {
|
||||
// return false;
|
||||
// });
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
|
||||
function getCurrentDate() {
|
||||
var newDate = new Date();
|
||||
@@ -348,17 +348,17 @@ function setSelectedZoomItem(selectedItem) {
|
||||
null
|
||||
).values;
|
||||
|
||||
var nomeGestorComercialBA = dtsCentroCusto[1].gestorCentroCusto;
|
||||
var emailGestorComercialBA = dtsCentroCusto[1].emailGestor;
|
||||
var idGestorComercialBA = dtsCentroCusto[1].idGestor;
|
||||
var nomeGestorComercialBA = dtsCentroCusto[0].gestorCentroCusto;
|
||||
var emailGestorComercialBA = dtsCentroCusto[0].emailGestor;
|
||||
var idGestorComercialBA = dtsCentroCusto[0].idGestor;
|
||||
|
||||
var nomeGestorComercialSE = dtsCentroCusto[2].gestorCentroCusto;
|
||||
var emailGestorComercialSE = dtsCentroCusto[2].emailGestor;
|
||||
var idGestorComercialSE = dtsCentroCusto[2].idGestor;
|
||||
var nomeGestorComercialSE = dtsCentroCusto[1].gestorCentroCusto;
|
||||
var emailGestorComercialSE = dtsCentroCusto[1].emailGestor;
|
||||
var idGestorComercialSE = dtsCentroCusto[1].idGestor;
|
||||
|
||||
var nomeGestorComercialAL = dtsCentroCusto[3].gestorCentroCusto;
|
||||
var emailGestorComercialAL = dtsCentroCusto[3].emailGestor;
|
||||
var idGestorComercialAL = dtsCentroCusto[3].idGestor;
|
||||
var nomeGestorComercialAL = dtsCentroCusto[2].gestorCentroCusto;
|
||||
var emailGestorComercialAL = dtsCentroCusto[2].emailGestor;
|
||||
var idGestorComercialAL = dtsCentroCusto[2].idGestor;
|
||||
|
||||
|
||||
if (name_item == "estabelecimento") {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -29,7 +29,7 @@
|
||||
<processDefinitionVersionPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
</processDefinitionVersionPK>
|
||||
<versionDescription></versionDescription>
|
||||
<formId>823</formId>
|
||||
@@ -303,58 +303,6 @@
|
||||
<digitalSignature>false</digitalSignature>
|
||||
<executionType>0</executionType>
|
||||
</ProcessState>
|
||||
<ProcessState>
|
||||
<processStatePK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>1</version>
|
||||
<sequence>31</sequence>
|
||||
</processStatePK>
|
||||
<stateName>Checklist novo colaborador</stateName>
|
||||
<stateDescription>Checklist novo colaborador</stateDescription>
|
||||
<instruction></instruction>
|
||||
<deadlineTime>345600</deadlineTime>
|
||||
<deadlineFieldName></deadlineFieldName>
|
||||
<joint>false</joint>
|
||||
<agreementPercentage>0</agreementPercentage>
|
||||
<engineAllocationId>Executor Atividade</engineAllocationId>
|
||||
<engineAllocationConfiguration><AssignmentController><BaseActivity>6</BaseActivity><Returns>Last</Returns></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>780</positionX>
|
||||
<positionY>400</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>
|
||||
@@ -681,7 +629,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>1</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>2</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>hAPI.getCardValue("centroCusto") == ""</condition>
|
||||
@@ -695,7 +643,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>2</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>2</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>true</condition>
|
||||
@@ -709,7 +657,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>1</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>46</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>hAPI.getCardValue("validarMotivo") == "substituicao"</condition>
|
||||
@@ -723,7 +671,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>2</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>46</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>hAPI.getCardValue("validarMotivo") == "temporario"</condition>
|
||||
@@ -737,7 +685,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>3</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>46</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>hAPI.getCardValue("validarMotivo") == "aumento"</condition>
|
||||
@@ -751,7 +699,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>1</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>95</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>hAPI.getCardValue("validacaoFunc") == "entregue"</condition>
|
||||
@@ -765,7 +713,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>2</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>95</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>hAPI.getCardValue("validacaoFunc") == "naoEntregue"</condition>
|
||||
@@ -779,7 +727,7 @@
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<expressionOrder>3</expressionOrder>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<sequence>95</sequence>
|
||||
</conditionProcessStatePK>
|
||||
<condition>hAPI.getCardValue("validacaoFunc") == "incorreto"</condition>
|
||||
@@ -895,40 +843,6 @@
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>101</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel>Contatar selecionado</actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>6</initialStateSequence>
|
||||
<finalStateSequence>31</finalStateSequence>
|
||||
<returnLabel></returnLabel>
|
||||
<name>Contatar selecionado</name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>109</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel>Prosseguir</actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>31</initialStateSequence>
|
||||
<finalStateSequence>46</finalStateSequence>
|
||||
<returnLabel></returnLabel>
|
||||
<name>Entregar equipamentos</name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
@@ -1065,6 +979,23 @@
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
</ProcessLink>
|
||||
<ProcessLink>
|
||||
<processLinkPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>1</version>
|
||||
<linkSequence>122</linkSequence>
|
||||
</processLinkPK>
|
||||
<actionLabel></actionLabel>
|
||||
<returnPermited>false</returnPermited>
|
||||
<initialStateSequence>6</initialStateSequence>
|
||||
<finalStateSequence>46</finalStateSequence>
|
||||
<returnLabel></returnLabel>
|
||||
<name></name>
|
||||
<automaticLink>false</automaticLink>
|
||||
<defaultLink>false</defaultLink>
|
||||
<type>0</type>
|
||||
</ProcessLink>
|
||||
</list>
|
||||
<list/>
|
||||
<list/>
|
||||
@@ -1158,7 +1089,7 @@
|
||||
<processLinkBendPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<linkSequence>5</linkSequence>
|
||||
<bendSequence>1</bendSequence>
|
||||
</processLinkBendPK>
|
||||
@@ -1169,7 +1100,7 @@
|
||||
<processLinkBendPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<linkSequence>5</linkSequence>
|
||||
<bendSequence>2</bendSequence>
|
||||
</processLinkBendPK>
|
||||
@@ -1180,7 +1111,7 @@
|
||||
<processLinkBendPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<linkSequence>7</linkSequence>
|
||||
<bendSequence>1</bendSequence>
|
||||
</processLinkBendPK>
|
||||
@@ -1191,7 +1122,7 @@
|
||||
<processLinkBendPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<linkSequence>110</linkSequence>
|
||||
<bendSequence>1</bendSequence>
|
||||
</processLinkBendPK>
|
||||
@@ -1202,7 +1133,7 @@
|
||||
<processLinkBendPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<linkSequence>115</linkSequence>
|
||||
<bendSequence>1</bendSequence>
|
||||
</processLinkBendPK>
|
||||
@@ -1213,7 +1144,7 @@
|
||||
<processLinkBendPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<linkSequence>117</linkSequence>
|
||||
<bendSequence>1</bendSequence>
|
||||
</processLinkBendPK>
|
||||
@@ -1224,7 +1155,7 @@
|
||||
<processLinkBendPK>
|
||||
<companyId>1</companyId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<version>30</version>
|
||||
<version>31</version>
|
||||
<linkSequence>120</linkSequence>
|
||||
<bendSequence>1</bendSequence>
|
||||
</processLinkBendPK>
|
||||
@@ -1369,7 +1300,7 @@
|
||||
<id>0</id>
|
||||
<tenantId>0</tenantId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<processVersion>30</processVersion>
|
||||
<processVersion>31</processVersion>
|
||||
<stateSequence>4</stateSequence>
|
||||
<appKey>approval</appKey>
|
||||
<appField>title</appField>
|
||||
@@ -1379,7 +1310,7 @@
|
||||
<id>0</id>
|
||||
<tenantId>0</tenantId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<processVersion>30</processVersion>
|
||||
<processVersion>31</processVersion>
|
||||
<stateSequence>4</stateSequence>
|
||||
<appKey>approval</appKey>
|
||||
<appField>highlight</appField>
|
||||
@@ -1389,7 +1320,7 @@
|
||||
<id>0</id>
|
||||
<tenantId>0</tenantId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<processVersion>30</processVersion>
|
||||
<processVersion>31</processVersion>
|
||||
<stateSequence>4</stateSequence>
|
||||
<appKey>approval</appKey>
|
||||
<appField>approve</appField>
|
||||
@@ -1399,7 +1330,7 @@
|
||||
<id>0</id>
|
||||
<tenantId>0</tenantId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<processVersion>30</processVersion>
|
||||
<processVersion>31</processVersion>
|
||||
<stateSequence>4</stateSequence>
|
||||
<appKey>approval</appKey>
|
||||
<appField>reject</appField>
|
||||
@@ -1409,7 +1340,7 @@
|
||||
<id>0</id>
|
||||
<tenantId>0</tenantId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<processVersion>30</processVersion>
|
||||
<processVersion>31</processVersion>
|
||||
<stateSequence>6</stateSequence>
|
||||
<appKey>approval</appKey>
|
||||
<appField>title</appField>
|
||||
@@ -1419,7 +1350,7 @@
|
||||
<id>0</id>
|
||||
<tenantId>0</tenantId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<processVersion>30</processVersion>
|
||||
<processVersion>31</processVersion>
|
||||
<stateSequence>6</stateSequence>
|
||||
<appKey>approval</appKey>
|
||||
<appField>highlight</appField>
|
||||
@@ -1429,7 +1360,7 @@
|
||||
<id>0</id>
|
||||
<tenantId>0</tenantId>
|
||||
<processId>Recrutamento e seleção</processId>
|
||||
<processVersion>30</processVersion>
|
||||
<processVersion>31</processVersion>
|
||||
<stateSequence>6</stateSequence>
|
||||
<appKey>approval</appKey>
|
||||
<appField>reject</appField>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 44 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 17 KiB |
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="ASCII" standalone="no"?><xmi:XMI xmlns:xmi="http://www.omg.org/XMI" xmlns:al="http://eclipse.org/graphiti/mm/algorithms" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL-XMI" xmlns:pi="http://eclipse.org/graphiti/mm/pictograms" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
|
||||
<pi:Diagram diagramTypeId="BPMNdiagram" gridUnit="10" name="recrutamentoeselecao" pictogramLinks="/0/@children.0/@link /0/@children.0/@children.3/@link /0/@children.0/@children.2/@link /0/@children.0/@children.1/@link /0/@children.0/@children.0/@link /0/@children.1/@link /0/@children.2/@link /0/@children.3/@link /0/@children.4/@link /0/@children.5/@link /0/@children.6/@link /0/@children.7/@link /0/@children.8/@link /0/@children.9/@link /0/@children.10/@link /0/@children.11/@link /0/@connections.0/@link /0/@connections.1/@link /0/@connections.2/@link /0/@connections.3/@link /0/@connections.4/@link /0/@children.12/@link /0/@connections.5/@link /0/@children.13/@link /0/@connections.6/@link /0/@connections.7/@link /0/@connections.8/@link /0/@children.14/@link /0/@connections.9/@link /0/@connections.10/@link /0/@connections.11/@link /0/@connections.12/@link /0/@connections.13/@link /0/@connections.14/@link /0/@connections.15/@link" snapToGrid="true" version="0.16.0" visible="true">
|
||||
<pi:Diagram diagramTypeId="BPMNdiagram" gridUnit="10" name="recrutamentoeselecao" pictogramLinks="/0/@children.0/@link /0/@children.0/@children.3/@link /0/@children.0/@children.2/@link /0/@children.0/@children.1/@link /0/@children.0/@children.0/@link /0/@children.1/@link /0/@children.2/@link /0/@children.3/@link /0/@children.4/@link /0/@children.5/@link /0/@children.6/@link /0/@children.7/@link /0/@children.8/@link /0/@children.9/@link /0/@children.10/@link /0/@connections.0/@link /0/@connections.1/@link /0/@connections.2/@link /0/@connections.3/@link /0/@connections.4/@link /0/@children.11/@link /0/@connections.5/@link /0/@children.12/@link /0/@connections.6/@link /0/@children.13/@link /0/@connections.7/@link /0/@connections.8/@link /0/@connections.9/@link /0/@connections.10/@link /0/@connections.11/@link /0/@connections.12/@link /0/@connections.13/@link /0/@connections.14/@link" snapToGrid="true" version="0.16.0" visible="true">
|
||||
<graphicsAlgorithm background="/0/@styles.11/@renderingStyle/@adaptedGradientColoredAreas/@adaptedGradientColoredAreas.0/@gradientColor.2/@end/@color" foreground="/0/@colors.0" height="1000" lineWidth="1" transparency="0.0" width="1000" xsi:type="al:Rectangle"/>
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm background="/0/@styles.11/@renderingStyle/@adaptedGradientColoredAreas/@adaptedGradientColoredAreas.0/@gradientColor.2/@end/@color" foreground="/0/@colors.3" height="715" lineWidth="1" style="/0/@styles.0" transparency="0.0" width="1980" x="11" xsi:type="al:Rectangle" y="6"/>
|
||||
@@ -112,7 +112,7 @@
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm filled="false" height="76" lineVisible="false" lineWidth="1" transparency="0.0" width="106" x="490" xsi:type="al:Rectangle" y="410"/>
|
||||
<link businessObjects="task6"/>
|
||||
<anchors incomingConnections="/0/@connections.2 /0/@connections.3" outgoingConnections="/0/@connections.6 /0/@connections.11" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors incomingConnections="/0/@connections.2 /0/@connections.3" outgoingConnections="/0/@connections.9 /0/@connections.14" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.4/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
@@ -126,7 +126,7 @@
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm filled="false" height="92" lineVisible="false" lineWidth="1" transparency="0.0" width="106" x="1240" xsi:type="al:Rectangle" y="80"/>
|
||||
<link businessObjects="task18"/>
|
||||
<anchors incomingConnections="/0/@connections.10 /0/@connections.14 /0/@connections.15" outgoingConnections="/0/@connections.5" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors incomingConnections="/0/@connections.8 /0/@connections.12 /0/@connections.13" outgoingConnections="/0/@connections.5" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.5/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
@@ -140,7 +140,7 @@
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm filled="false" height="92" lineVisible="false" lineWidth="1" transparency="0.0" width="106" x="1240" xsi:type="al:Rectangle" y="580"/>
|
||||
<link businessObjects="task24"/>
|
||||
<anchors incomingConnections="/0/@connections.8" outgoingConnections="/0/@connections.15" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors incomingConnections="/0/@connections.6" outgoingConnections="/0/@connections.13" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.6/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
@@ -151,27 +151,13 @@
|
||||
<graphicsAlgorithm filled="false" font="/0/@fonts.1" height="82" horizontalAlignment="ALIGNMENT_CENTER" lineVisible="true" lineWidth="1" style="/0/@styles.21" transparency="0.0" value="Entregando equipamentos" width="96" x="5" xsi:type="al:MultiText" y="5"/>
|
||||
</children>
|
||||
</children>
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm filled="false" height="92" lineVisible="false" lineWidth="1" transparency="0.0" width="106" x="780" xsi:type="al:Rectangle" y="400"/>
|
||||
<link businessObjects="task31"/>
|
||||
<anchors incomingConnections="/0/@connections.6" outgoingConnections="/0/@connections.7" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.7/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<children visible="true">
|
||||
<graphicsAlgorithm cornerHeight="5" cornerWidth="5" height="92" lineWidth="1" style="/0/@styles.22" transparency="0.0" width="106" xsi:type="al:RoundedRectangle"/>
|
||||
</children>
|
||||
<children visible="true">
|
||||
<graphicsAlgorithm filled="false" font="/0/@fonts.1" height="82" horizontalAlignment="ALIGNMENT_CENTER" lineVisible="true" lineWidth="1" style="/0/@styles.23" transparency="0.0" value="Checklist novo colaborador" width="96" x="5" xsi:type="al:MultiText" y="5"/>
|
||||
</children>
|
||||
</children>
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm filled="false" height="35" lineVisible="false" lineWidth="1" transparency="0.0" width="35" x="680" xsi:type="al:Ellipse" y="230">
|
||||
<graphicsAlgorithmChildren height="35" lineWidth="3" style="/0/@styles.24" transparency="0.0" width="35" xsi:type="al:Ellipse"/>
|
||||
</graphicsAlgorithm>
|
||||
<link businessObjects="endcancel39"/>
|
||||
<anchors incomingConnections="/0/@connections.4" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.8/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.7/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<children visible="true">
|
||||
@@ -202,13 +188,13 @@
|
||||
</graphicsAlgorithmChildren>
|
||||
</graphicsAlgorithm>
|
||||
<link businessObjects="exclusivegateway46"/>
|
||||
<anchors incomingConnections="/0/@connections.7" outgoingConnections="/0/@connections.8 /0/@connections.14" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors incomingConnections="/0/@connections.14" outgoingConnections="/0/@connections.6 /0/@connections.12" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.9/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.1" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.8/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.1" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<anchors xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.9/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.93" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.8/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.93" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<children visible="true">
|
||||
@@ -220,8 +206,8 @@
|
||||
<graphicsAlgorithmChildren height="35" lineWidth="3" style="/0/@styles.28" transparency="0.0" width="35" xsi:type="al:Ellipse"/>
|
||||
</graphicsAlgorithm>
|
||||
<link businessObjects="endcancel55"/>
|
||||
<anchors incomingConnections="/0/@connections.11" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.10/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors incomingConnections="/0/@connections.9" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.9/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<children visible="true">
|
||||
@@ -244,8 +230,8 @@
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm filled="false" height="76" lineVisible="false" lineWidth="1" transparency="0.0" width="106" x="1800" xsi:type="al:Rectangle" y="250"/>
|
||||
<link businessObjects="task57"/>
|
||||
<anchors incomingConnections="/0/@connections.12" outgoingConnections="/0/@connections.13" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.11/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors incomingConnections="/0/@connections.10" outgoingConnections="/0/@connections.11" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.10/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<children visible="true">
|
||||
@@ -266,13 +252,13 @@
|
||||
</graphicsAlgorithmChildren>
|
||||
</graphicsAlgorithm>
|
||||
<link businessObjects="exclusivegateway95"/>
|
||||
<anchors incomingConnections="/0/@connections.5" outgoingConnections="/0/@connections.9 /0/@connections.12" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors incomingConnections="/0/@connections.5" outgoingConnections="/0/@connections.7 /0/@connections.10" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.12/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.1" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.11/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.1" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<anchors xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.12/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.93" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.11/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.93" relativeWidth="0.51" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<children visible="true">
|
||||
@@ -284,16 +270,16 @@
|
||||
<graphicsAlgorithmChildren height="35" lineWidth="3" style="/0/@styles.79" transparency="0.0" width="35" xsi:type="al:Ellipse"/>
|
||||
</graphicsAlgorithm>
|
||||
<link businessObjects="endevent97"/>
|
||||
<anchors incomingConnections="/0/@connections.13" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.13/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors incomingConnections="/0/@connections.11" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.12/@graphicsAlgorithm/@graphicsAlgorithmChildren.0" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
</children>
|
||||
<children active="true" visible="true" xsi:type="pi:ContainerShape">
|
||||
<graphicsAlgorithm filled="false" height="76" lineVisible="false" lineWidth="1" transparency="0.0" width="106" x="1440" xsi:type="al:Rectangle" y="400"/>
|
||||
<link businessObjects="task114"/>
|
||||
<anchors incomingConnections="/0/@connections.9" outgoingConnections="/0/@connections.10" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.14/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<anchors incomingConnections="/0/@connections.7" outgoingConnections="/0/@connections.8" xsi:type="pi:ChopboxAnchor"/>
|
||||
<anchors active="true" referencedGraphicsAlgorithm="/0/@children.13/@graphicsAlgorithm" relativeHeight="0.51" relativeWidth="1.0" visible="true" xsi:type="pi:BoxRelativeAnchor">
|
||||
<graphicsAlgorithm filled="false" lineVisible="false" xsi:type="al:Ellipse"/>
|
||||
</anchors>
|
||||
<children visible="true">
|
||||
@@ -2719,6 +2705,7 @@
|
||||
<styles foreground="/0/@colors.10" id="BPMNCLASS-TEXT"/>
|
||||
<styles foreground="/0/@colors.10" id="BPMNCLASS-TEXT"/>
|
||||
<styles foreground="/0/@colors.10" id="BPMNCLASS-TEXT"/>
|
||||
<styles foreground="/0/@colors.10" id="BPMNCLASS-TEXT"/>
|
||||
<connections active="true" end="/0/@children.2/@anchors.0" start="/0/@children.1/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow3"/>
|
||||
@@ -2782,7 +2769,7 @@
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.8/@anchors.0" start="/0/@children.3/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.7/@anchors.0" start="/0/@children.3/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow53"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2797,7 +2784,7 @@
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.12/@anchors.0" start="/0/@children.5/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.11/@anchors.0" start="/0/@children.5/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow96"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2812,37 +2799,7 @@
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.7/@anchors.0" start="/0/@children.4/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow101"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
<graphicsAlgorithm filled="false" font="/0/@fonts.0" lineWidth="1" style="/0/@styles.85" transparency="0.0" value="Contatar selecionado" x="-83" xsi:type="al:Text" y="-26"/>
|
||||
</connectionDecorators>
|
||||
<connectionDecorators location="1.0" locationRelative="true" visible="true">
|
||||
<graphicsAlgorithm background="/0/@colors.3" filled="true" foreground="/0/@colors.3" lineWidth="1" style="/0/@styles.40" transparency="0.0" xsi:type="al:Polygon">
|
||||
<points after="3" before="3" x="-10" y="-5"/>
|
||||
<points/>
|
||||
<points after="3" before="3" x="-10" y="5"/>
|
||||
<points after="3" before="3" x="-8"/>
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.9/@anchors.0" start="/0/@children.7/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow109"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
<graphicsAlgorithm filled="false" font="/0/@fonts.0" lineWidth="1" style="/0/@styles.96" transparency="0.0" value="Entregar equipamentos" x="-78" xsi:type="al:Text" y="2"/>
|
||||
</connectionDecorators>
|
||||
<connectionDecorators location="1.0" locationRelative="true" visible="true">
|
||||
<graphicsAlgorithm background="/0/@colors.3" filled="true" foreground="/0/@colors.3" lineWidth="1" style="/0/@styles.40" transparency="0.0" xsi:type="al:Polygon">
|
||||
<points after="3" before="3" x="-10" y="-5"/>
|
||||
<points/>
|
||||
<points after="3" before="3" x="-10" y="5"/>
|
||||
<points after="3" before="3" x="-8"/>
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.6/@anchors.0" start="/0/@children.9/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.6/@anchors.0" start="/0/@children.8/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow110"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2858,7 +2815,7 @@
|
||||
</connectionDecorators>
|
||||
<bendpoints x="1090" y="627"/>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.14/@anchors.0" start="/0/@children.12/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.13/@anchors.0" start="/0/@children.11/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow115"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2874,7 +2831,7 @@
|
||||
</connectionDecorators>
|
||||
<bendpoints x="1740" y="437"/>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.5/@anchors.0" start="/0/@children.14/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.5/@anchors.0" start="/0/@children.13/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow116"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2889,7 +2846,7 @@
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.10/@anchors.0" start="/0/@children.4/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.9/@anchors.0" start="/0/@children.4/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow117"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2905,7 +2862,7 @@
|
||||
</connectionDecorators>
|
||||
<bendpoints x="543" y="507"/>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.11/@anchors.0" start="/0/@children.12/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.10/@anchors.0" start="/0/@children.11/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow118"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2920,7 +2877,7 @@
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.13/@anchors.0" start="/0/@children.11/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.12/@anchors.0" start="/0/@children.10/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow119"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2935,7 +2892,7 @@
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.5/@anchors.0" start="/0/@children.9/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<connections active="true" end="/0/@children.5/@anchors.0" start="/0/@children.8/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow120"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
@@ -2966,6 +2923,21 @@
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<connections active="true" end="/0/@children.8/@anchors.0" start="/0/@children.4/@anchors.0" visible="true" xsi:type="pi:FreeFormConnection">
|
||||
<graphicsAlgorithm filled="false" foreground="/0/@colors.3" lineWidth="1" transparency="0.0" xsi:type="al:Polyline"/>
|
||||
<link businessObjects="flow122"/>
|
||||
<connectionDecorators active="true" location="0.5" locationRelative="true" visible="true">
|
||||
<graphicsAlgorithm filled="false" font="/0/@fonts.0" lineWidth="1" style="/0/@styles.115" transparency="0.0" value="" x="10" xsi:type="al:Text"/>
|
||||
</connectionDecorators>
|
||||
<connectionDecorators location="1.0" locationRelative="true" visible="true">
|
||||
<graphicsAlgorithm background="/0/@colors.3" filled="true" foreground="/0/@colors.3" lineWidth="1" style="/0/@styles.40" transparency="0.0" xsi:type="al:Polygon">
|
||||
<points after="3" before="3" x="-10" y="-5"/>
|
||||
<points/>
|
||||
<points after="3" before="3" x="-10" y="5"/>
|
||||
<points after="3" before="3" x="-8"/>
|
||||
</graphicsAlgorithm>
|
||||
</connectionDecorators>
|
||||
</connections>
|
||||
<colors blue="249" green="238" red="227"/>
|
||||
<colors blue="112" green="25" red="25"/>
|
||||
<colors blue="198" green="193" red="159"/>
|
||||
@@ -2990,15 +2962,14 @@
|
||||
<bpmn2:BpmnStartEvent emAtrasoNotificarResponsavel="false" emAtrasoNotificarResponsavelFrequencia="0.0" emAtrasoNotificarResponsavelTolerancia="0.0" esforcoCalculo="0" expediente="" extendedFields="<list/>" id="startevent1" name="Solicitar colaborador" notificaGestor="true" notificaRequisitante="true" notificaResponsavel="true" outgoing="flow3" selecionaColaboradores="1" signalId="0" type="10"/>
|
||||
<bpmn2:BpmnGateway condition="<list> <org.eclipse.bpmn2.impl.ConditionImpl> <order>1</order> <expression>hAPI.getCardValue(&quot;centroCusto&quot;) == &quot;&quot;</expression> <targetTask>task6</targetTask> <mechanism>Pool Grupo</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup"> <groupId>Recrutamento</groupId> <mechanismName>Pool Grupo</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> <org.eclipse.bpmn2.impl.ConditionImpl> <order>2</order> <expression>true</expression> <targetTask>task4</targetTask> <mechanism>Campo Formulário</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerFormField"> <formField>gestor_cc</formField> <mechanismName>Campo Formulário</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> </list>" extendedFields="<list/>" id="exclusivegateway2" incoming="flow3" name="Validar Gestor" outgoing="flow5 flow7" type="120"/>
|
||||
<bpmn2:BpmnTask appsConfiguration="<map> <entry> <string>approval</string> <list> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>title</appField> <description>Solicitação de compra</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>highlight</appField> <description>Centro de Custo - Aprovar solicitação?</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>approve</appField> <description>6</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>reject</appField> <description>39</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> </list> </entry> </map>" authNotify="true" emAtrasoNotificarResponsavel="false" emAtrasoNotificarResponsavelFrequencia="0.0" emAtrasoNotificarResponsavelTolerancia="0.0" esforcoCalculo="0" executionAttempts="0" expediente="" extendedFields="<list/>" frequency="0" id="task4" incoming="flow5" loopType="0" managerMechanism="" name="Analisando necessidade" notificaRequisitante="true" outgoing="flow41 flow53" prazoConclusao="4320.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:BpmnTask appsConfiguration="<map> <entry> <string>approval</string> <list> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>title</appField> <description>Solicitação de compra</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>highlight</appField> <description>Compras - Aprovar solicitação?</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>reject</appField> <description>55</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> </list> </entry> </map>" authNotify="true" emAtrasoNotificarResponsavel="false" emAtrasoNotificarResponsavelFrequencia="0.0" emAtrasoNotificarResponsavelTolerancia="0.0" esforcoCalculo="0" executionAttempts="0" expediente="" extendedFields="<list/>" frequency="0" id="task6" incoming="flow7 flow41" loopType="0" managerAssignmentControllerString="<org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup> <groupId>Recrutamento</groupId> <mechanismName>Pool Grupo</mechanismName> </org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup>" managerMechanism="Pool Grupo" name="Selecionando candidatos" notificaRequisitante="true" outgoing="flow101 flow117" prazoConclusao="5760.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:BpmnTask appsConfiguration="<map> <entry> <string>approval</string> <list> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>title</appField> <description>Solicitação de compra</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>highlight</appField> <description>Compras - Aprovar solicitação?</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> <appField>reject</appField> <description>55</description> </org.eclipse.bpmn2.documentacional.BpmnProcessAppConfiguration> </list> </entry> </map>" authNotify="true" emAtrasoNotificarResponsavel="false" emAtrasoNotificarResponsavelFrequencia="0.0" emAtrasoNotificarResponsavelTolerancia="0.0" esforcoCalculo="0" executionAttempts="0" expediente="" extendedFields="<list/>" frequency="0" id="task6" incoming="flow7 flow41" loopType="0" managerAssignmentControllerString="<org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup> <groupId>Recrutamento</groupId> <mechanismName>Pool Grupo</mechanismName> </org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup>" managerMechanism="Pool Grupo" name="Selecionando candidatos" notificaRequisitante="true" outgoing="flow117 flow122" prazoConclusao="5760.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:BpmnTask authNotify="true" emAtrasoNotificarResponsavel="false" emAtrasoNotificarResponsavelFrequencia="0.0" emAtrasoNotificarResponsavelTolerancia="0.0" esforcoCalculo="0" executionAttempts="0" expediente="" extendedFields="<list/>" frequency="0" id="task18" incoming="flow116 flow120 flow121" loopType="0" managerAssignmentControllerString="<org.eclipse.bpmn2.impl.AssignmentControllerExecutorMechanism> <idNode>startevent1</idNode> <returns>1</returns> <mechanismName>Executor Atividade</mechanismName> </org.eclipse.bpmn2.impl.AssignmentControllerExecutorMechanism>" managerMechanism="Executor Atividade" name="Aguardando novo colaborador" notificaRequisitante="true" outgoing="flow96" prazoConclusao="4320.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:BpmnTask authNotify="true" emAtrasoNotificarResponsavel="false" emAtrasoNotificarResponsavelFrequencia="0.0" emAtrasoNotificarResponsavelTolerancia="0.0" esforcoCalculo="0" executionAttempts="0" expediente="" extendedFields="<list/>" frequency="0" id="task24" incoming="flow110" loopType="0" managerMechanism="" name="Entregando equipamentos" notificaRequisitante="true" outgoing="flow121" prazoConclusao="5760.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:BpmnTask authNotify="true" emAtrasoNotificarResponsavel="false" emAtrasoNotificarResponsavelFrequencia="0.0" emAtrasoNotificarResponsavelTolerancia="0.0" esforcoCalculo="0" executionAttempts="0" expediente="" extendedFields="<list/>" frequency="0" id="task31" incoming="flow101" loopType="0" managerAssignmentControllerString="<org.eclipse.bpmn2.impl.AssignmentControllerExecutorMechanism> <idNode>task6</idNode> <returns>1</returns> <mechanismName>Executor Atividade</mechanismName> </org.eclipse.bpmn2.impl.AssignmentControllerExecutorMechanism>" managerMechanism="Executor Atividade" name="Checklist novo colaborador" notificaRequisitante="true" outgoing="flow109" prazoConclusao="5760.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:BpmnEndEvent extendedFields="<list/>" id="endcancel39" incoming="flow53" name="Cancelado" notificaRequisitante="true" signalId="0" type="65"/>
|
||||
<bpmn2:BpmnGateway condition="<list> <org.eclipse.bpmn2.impl.ConditionImpl> <order>1</order> <expression>hAPI.getCardValue(&quot;validarMotivo&quot;) == &quot;substituicao&quot;</expression> <targetTask>task18</targetTask> <mechanism>Campo Formulário</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerFormField"> <formField>gestor_cc</formField> <mechanismName>Campo Formulário</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> <org.eclipse.bpmn2.impl.ConditionImpl> <order>2</order> <expression>hAPI.getCardValue(&quot;validarMotivo&quot;) == &quot;temporario&quot;</expression> <targetTask>task18</targetTask> <mechanism>Campo Formulário</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerFormField"> <formField>gestor_cc</formField> <mechanismName>Campo Formulário</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> <org.eclipse.bpmn2.impl.ConditionImpl> <order>3</order> <expression>hAPI.getCardValue(&quot;validarMotivo&quot;) == &quot;aumento&quot;</expression> <targetTask>task24</targetTask> <mechanism>Pool Grupo</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup"> <groupId>TIC</groupId> <mechanismName>Pool Grupo</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> </list>" extendedFields="<list/>" id="exclusivegateway46" incoming="flow109" name="ValidarEquipamentos" outgoing="flow110 flow120" type="120"/>
|
||||
<bpmn2:BpmnGateway condition="<list> <org.eclipse.bpmn2.impl.ConditionImpl> <order>1</order> <expression>hAPI.getCardValue(&quot;validarMotivo&quot;) == &quot;substituicao&quot;</expression> <targetTask>task18</targetTask> <mechanism>Campo Formulário</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerFormField"> <formField>gestor_cc</formField> <mechanismName>Campo Formulário</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> <org.eclipse.bpmn2.impl.ConditionImpl> <order>2</order> <expression>hAPI.getCardValue(&quot;validarMotivo&quot;) == &quot;temporario&quot;</expression> <targetTask>task18</targetTask> <mechanism>Campo Formulário</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerFormField"> <formField>gestor_cc</formField> <mechanismName>Campo Formulário</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> <org.eclipse.bpmn2.impl.ConditionImpl> <order>3</order> <expression>hAPI.getCardValue(&quot;validarMotivo&quot;) == &quot;aumento&quot;</expression> <targetTask>task24</targetTask> <mechanism>Pool Grupo</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup"> <groupId>TIC</groupId> <mechanismName>Pool Grupo</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> </list>" extendedFields="<list/>" id="exclusivegateway46" incoming="flow122" name="ValidarEquipamentos" outgoing="flow110 flow120" type="120"/>
|
||||
<bpmn2:BpmnEndEvent extendedFields="<list/>" id="endcancel55" incoming="flow117" name="Cancelado" notificaRequisitante="true" signalId="0" type="65"/>
|
||||
<bpmn2:BpmnTask authNotify="true" esforcoCalculo="0" executionAttempts="0" expediente="" extendedFields="<list/>" frequency="0" id="task57" incoming="flow118" loopType="0" managerAssignmentControllerString="<org.eclipse.bpmn2.impl.AssignmentControllerFormField> <formField>gestor_cc</formField> <mechanismName>Campo Formulário</mechanismName> </org.eclipse.bpmn2.impl.AssignmentControllerFormField>" managerMechanism="Campo Formulário" name="Feedback do gestor" outgoing="flow119" prazoConclusao="4320.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:BpmnProcess author="" cardIndex="823" category="Recrutamento e Seleção" complementsLevel="1" deadlineTime="36000.0" descriptorFields="<list> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>centroCusto</id> <label>centroCusto</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>consideracoesCompras</id> <label>consideracoesCompras</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>dataAbertura</id> <label>dataAbertura</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>requesterId</id> <label>requesterId</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>requesterMail</id> <label>requesterMail</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>requesterName</id> <label>requesterName</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userCotacaoGestor</id> <label>userCotacaoGestor</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userRealizacaoCompras</id> <label>userRealizacaoCompras</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userValidacaoCompras</id> <label>userValidacaoCompras</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userValidacaoGestor</id> <label>userValidacaoGestor</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userValidacaoItens</id> <label>userValidacaoItens</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>validacaoItens</id> <label>validacaoItens</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>valorTotalsemformat</id> <label>valorTotalsemformat</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>WKNumProces</id> <label>WKNumProces</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> </list>" expedient="Expediente BackOffice, Logística e Motorista" extendedFields="<list/>" formSource="server" id="Recrutamento e seleção" instruction="Este flow permite abertura de solicitação de contratação automatizadas, informando qual a função e direcionado para as aprovações corretas." keyWord="" managerAssignmentController="<org.eclipse.bpmn2.impl.AssignmentControllerGroup> <groupId>Recrutamento</groupId> <mechanismName>Grupo</mechanismName> </org.eclipse.bpmn2.impl.AssignmentControllerGroup>" managerMechanism="Grupo" mobileReady="true" name="Recrutamento e seleção" notifyRequisitionerComplements="true" notifyResponsibleComplements="true" serverId="Ginseng Produção" version="30" volume="Default"/>
|
||||
<bpmn2:BpmnProcess author="" cardIndex="823" category="Recrutamento e Seleção" complementsLevel="1" deadlineTime="36000.0" descriptorFields="<list> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>centroCusto</id> <label>centroCusto</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>consideracoesCompras</id> <label>consideracoesCompras</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>dataAbertura</id> <label>dataAbertura</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>requesterId</id> <label>requesterId</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>requesterMail</id> <label>requesterMail</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>requesterName</id> <label>requesterName</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userCotacaoGestor</id> <label>userCotacaoGestor</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userRealizacaoCompras</id> <label>userRealizacaoCompras</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userValidacaoCompras</id> <label>userValidacaoCompras</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userValidacaoGestor</id> <label>userValidacaoGestor</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>userValidacaoItens</id> <label>userValidacaoItens</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>validacaoItens</id> <label>validacaoItens</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>valorTotalsemformat</id> <label>valorTotalsemformat</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> <org.eclipse.bpmn2.impl.BpmnProcessFormField> <id>WKNumProces</id> <label>WKNumProces</label> <cardIndex>823 - recrutamento</cardIndex> </org.eclipse.bpmn2.impl.BpmnProcessFormField> </list>" expedient="Expediente BackOffice, Logística e Motorista" extendedFields="<list/>" formSource="server" id="Recrutamento e seleção" instruction="Este flow permite abertura de solicitação de contratação automatizadas, informando qual a função e direcionado para as aprovações corretas." keyWord="" managerAssignmentController="<org.eclipse.bpmn2.impl.AssignmentControllerGroup> <groupId>Recrutamento</groupId> <mechanismName>Grupo</mechanismName> </org.eclipse.bpmn2.impl.AssignmentControllerGroup>" managerMechanism="Grupo" mobileReady="true" name="Recrutamento e seleção" notifyRequisitionerComplements="true" notifyResponsibleComplements="true" serverId="Ginseng Produção" version="31" volume="Default"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow3" name="" sourceRef="startevent1" targetRef="exclusivegateway2"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow5" movementAccessLinkDescription="" movementDescription="" movementTitle="" name="Gestor Identificado" sourceRef="exclusivegateway2" targetRef="task4"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow7" name="Sem Gestor" sourceRef="exclusivegateway2" targetRef="task6"/>
|
||||
@@ -3007,8 +2978,6 @@
|
||||
<bpmn2:BpmnGateway condition="<list> <org.eclipse.bpmn2.impl.ConditionImpl> <order>1</order> <expression>hAPI.getCardValue(&quot;validacaoFunc&quot;) == &quot;entregue&quot;</expression> <targetTask>task57</targetTask> <mechanism>Campo Formulário</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerFormField"> <formField>gestor_cc</formField> <mechanismName>Campo Formulário</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> <org.eclipse.bpmn2.impl.ConditionImpl> <order>2</order> <expression>hAPI.getCardValue(&quot;validacaoFunc&quot;) == &quot;naoEntregue&quot;</expression> <targetTask>task114</targetTask> <mechanism>Pool Grupo</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup"> <groupId>TIC</groupId> <mechanismName>Pool Grupo</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> <org.eclipse.bpmn2.impl.ConditionImpl> <order>3</order> <expression>hAPI.getCardValue(&quot;validacaoFunc&quot;) == &quot;incorreto&quot;</expression> <targetTask>task114</targetTask> <mechanism>Pool Grupo</mechanism> <conditionType>0</conditionType> <mecanismoAtribuicaoConfiguracao class="org.eclipse.bpmn2.impl.AssignmentControllerPoolGroup"> <groupId>Recrutamento</groupId> <mechanismName>Pool Grupo</mechanismName> </mecanismoAtribuicaoConfiguracao> </org.eclipse.bpmn2.impl.ConditionImpl> </list>" id="exclusivegateway95" incoming="flow96" name="Validar início" outgoing="flow115 flow118" type="120"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow96" name="" sourceRef="task18" targetRef="exclusivegateway95"/>
|
||||
<bpmn2:BpmnEndEvent id="endevent97" incoming="flow119" name="Fim" signalId="0" type="60"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="Contatar selecionado" atividadeRetorno="" extendedFields="<list/>" id="flow101" name="Contatar selecionado" sourceRef="task6" targetRef="task31"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="Prosseguir" atividadeRetorno="" extendedFields="<list/>" id="flow109" name="Entregar equipamentos" sourceRef="task31" targetRef="exclusivegateway46"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow110" name="" sourceRef="exclusivegateway46" targetRef="task24"/>
|
||||
<bpmn2:BpmnTask authNotify="true" esforcoCalculo="0" executionAttempts="0" expediente="" frequency="0" id="task114" incoming="flow115" loopType="0" managerMechanism="" name="Corrigindo materiais" outgoing="flow116" prazoConclusao="4320.0" selecionaColaboradores="1" type="80"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow115" name="" sourceRef="exclusivegateway95" targetRef="task114"/>
|
||||
@@ -3018,4 +2987,5 @@
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow119" name="" sourceRef="task57" targetRef="endevent97"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow120" name="" sourceRef="exclusivegateway46" targetRef="task18"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" atividadeRetorno="" extendedFields="<list/>" id="flow121" name="" sourceRef="task24" targetRef="task18"/>
|
||||
<bpmn2:SequenceFlow atividadeFluxo="" id="flow122" name="" sourceRef="task6" targetRef="exclusivegateway46"/>
|
||||
</xmi:XMI>
|
||||
Reference in New Issue
Block a user