-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpontoeletronico.user.js
589 lines (540 loc) · 20.1 KB
/
pontoeletronico.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
// ==UserScript==
// @name Ponto eletrônico
// @namespace http://github.com/nadameu/pontoeletronico
// @description Relatório de ponto eletrônico
// @require https://code.jquery.com/jquery-2.1.1.min.js
// @include http://apl.jfpr.gov.br/pe/App_View/relatorio_1.aspx
// @version 13
// @grant none
// ==/UserScript==
'use strict';
var MINUTOS_DE_TOLERANCIA = 15;
var PRESCRICAO = 90;
var Feriados = {};
$(function() {
$('head').append('<style>' + [
'tr.ultima { border-width: 0 0 2px 0; border-color: black; border-style: none none solid none; }',
'span.naoUteisTrabalhados { font-weight: bold; color: #262; }',
'span.faltas { font-weight: bold; color: #c33; }',
'td.resultado { font-weight: bold; color: #262; border-color: #696969; }',
'td.saldoNegativo { color: #c33; }',
'td.saldoIgnorado { text-decoration: line-through; font-weight: normal; }',
'td.alterado { color: #c63; border-color: #696969; }',
'td.erro { background-color: #c33; color: white; border-color: #696969; }'
].join('\n') + '</style>');
});
var oldXHR = window.XMLHttpRequest;
window.XMLHttpRequest = function () {
var xhr = new oldXHR();
xhr.send = function () {
var oldfn = xhr.onreadystatechange;
xhr.onreadystatechange = function () {
oldfn.apply(xhr, arguments);
if (xhr.readyState === 4) {
try {
analisarFeriados();
analisarRegistros();
} catch (ex) {
// Não está na tela que desejamos
}
}
};
return oldXHR.prototype.send.apply(xhr, arguments);
};
return xhr;
};
function analisarFeriados() {
analisarCalendario(1);
analisarCalendario(2);
}
function analisarCalendario(id) {
var tabela = $('#ctl00_ContentPlaceHolder1_Calendar' + id);
tabela.find('td[style="color:Red;width:14%;"] a[href]').each(function (indiceLink, link) {
var diasDesdeDoisMil = Number(/','(\d+)'\)/.exec(link.href)[1]);
var data = DateHelper.toISODate(DateFactory.diasDesdeDoisMil(diasDesdeDoisMil));
Feriados[data] = true;
});
}
function analisarRegistros() {
var jornada = obterJornada();
DiaUtil.definirJornadaPadrao(jornada);
var dataInicio = obterDataInicio();
var dataFim = obterDataFim();
var intervalo = new Intervalo(dataInicio, dataFim);
var tabela = $('#ctl00_ContentPlaceHolder1_GridView1');
if (tabela.size() !== 1) return;
var elementoTabela = tabela.get(0);
var tbody = elementoTabela.createTBody();
var proximoIrmaoTabela = elementoTabela.nextSibling;
var paiTabela = elementoTabela.parentNode;
paiTabela.removeChild(elementoTabela);
tabela.find('tbody tr:has(th):not(:has(#tituloColunaSaldo))').each(function(indiceLinha, linha) {
linha.cells[3].textContent = 'Justificativa';
linha.deleteCell(4);
$(linha).append('<th id="tituloColunaSaldo">Saldo</th><th>Motivo</th>');
});
var linhas = Array.prototype.slice.call(tabela.find('tbody tr:has(td)'));
intervalo.analisarLinhas(linhas);
intervalo.analisarCompensacoes(dataInicio, dataFim);
intervalo.inserirLinhasEm(tbody);
var saldo = $('#ctl00_ContentPlaceHolder1_lblSalR');
saldo.html(IntervalHelper.toMinutesString(intervalo.saldoConsiderado)).css('color', (intervalo.saldoConsiderado < 0) ? '#c33' : '#262');
var tabelaSaldo = saldo.parents('table:first');
var aviso = $('<p style="font-family: Arial; color: #696969;">Ignorando diferenças inferiores a ' + MINUTOS_DE_TOLERANCIA + ' minutos de tolerância.</p>').css({textAlign: 'right', fontSize: '0.8em'});
tabelaSaldo.after(aviso);
if (dataInicio.getTime() !== intervalo.dataIdeal.getTime()) {
aviso.append('<br/><span style="color: #c33;">Para cálculo do saldo correto selecione como data de início:<br/>' + DateHelper.toDateExtenso(intervalo.dataIdeal) + '.</span>');
}
definirDiasTrabalhados(intervalo.diasUteis, intervalo.diasUteisTrabalhados, intervalo.feriados, intervalo.feriadosTrabalhados);
paiTabela.insertBefore(elementoTabela, proximoIrmaoTabela);
}
function obterJornada() {
var texto = $('#ctl00_ContentPlaceHolder1_lblJornR').get(0).textContent;
return DateFactory.hmsTexto(texto).getTime();
}
function obterDataInicio() {
var texto = $('#ctl00_ContentPlaceHolder1_lblInicio').get(0).textContent;
var textoData = /^Início: (\d{2}\/\d{2}\/\d{4})$/.exec(texto)[1];
return DateFactory.dataTexto(textoData);
}
function obterDataFim() {
var texto = $('#ctl00_ContentPlaceHolder1_lblFim').get(0).textContent;
var textoData = /^Fim: (\d{2}\/\d{2}\/\d{4})$/.exec(texto)[1];
return DateFactory.dataTexto(textoData);
}
function definirDiasTrabalhados(diasUteis, diasUteisTrabalhados, diasNaoUteis, diasNaoUteisTrabalhados) {
$('#ctl00_ContentPlaceHolder1_lblDiaUR').html(diasUteis);
$('#ctl00_ContentPlaceHolder1_lblDUTR').html('(' + diasUteisTrabalhados + ' trabalhados)');
$('#ctl00_ContentPlaceHolder1_lblSDFPR').html(diasNaoUteis);
var estilo = '';
if (diasNaoUteisTrabalhados > 0) {
estilo = 'naoUteisTrabalhados';
}
$('#ctl00_ContentPlaceHolder1_lblSDFR').html('(<span class="' + estilo + '">' + diasNaoUteisTrabalhados + '</span> trabalhados)');
var faltas = diasUteis - diasUteisTrabalhados;
var estilo = '';
if (faltas > 0) {
estilo = 'faltas';
}
$('#ctl00_ContentPlaceHolder1_lblFaltasR').html('<span class="' + estilo + '">' + faltas + '</span>');
}
/*** FUNÇÕES AUXILIARES ***/
var DateFactory = {
dataHoraTexto: function(texto) {
var [, d, m, y, h, i, s] = /(\d+)\/(\d+)\/(\d+) (\d+):(\d+):(\d+)/.exec(texto);
return new Date(y, m - 1, d, h, i, s, 0);
},
dataTexto: function(texto) {
var [, d, m, y] = /(\d+)\/(\d+)\/(\d+)/.exec(texto);
return DateFactory.dmy(d, m, y);
},
deslocarDias: function(data, dias) {
return DateFactory.dmy(data.getDate() + dias, data.getMonth() + 1, data.getFullYear());
},
diasDesdeDoisMil: function(diasDesdeDoisMil) {
return DateFactory.deslocarDias(DateFactory.dmy(1, 1, 2000), diasDesdeDoisMil);
},
diaSeguinte: function(data) {
return DateFactory.deslocarDias(data, 1);
},
dmy: function(d, m, y) {
var diaAnterior = new Date(y, m - 1, d - 1, 23, 59, 59, 999);
return new Date(diaAnterior.getTime() + 1);
},
hmsTexto: function(texto) {
return new Date(Date.parse('T' + texto + 'Z'));
}
};
var DateHelper = (function() {
var extenso = new Intl.DateTimeFormat('pt-BR', {day: 'numeric', month: 'long', year: 'numeric'});
var normal = new Intl.DateTimeFormat('pt-BR');
return {
toDateExtenso: function(data) {
return extenso.format(data);
},
toISODate: function(data) {
return data.toLocaleFormat('%Y-%m-%d');
},
toLocaleDate: function(data) {
return normal.format(data);
}
};
})();
var IntervalHelper = {
toMinutes: function(interval) {
return (interval / 60 / 1000) | 0;
},
toMinutesString: function(interval) {
var minutos = IntervalHelper.toMinutes(interval);
var minutosAbsoluto = Math.abs(minutos);
var sinal = Math.sign(minutos);
var h = (minutosAbsoluto / 60) | 0;
var m = minutosAbsoluto % 60;
m = '0'.repeat(2 - m.toString().length) + m;
return (sinal < 0 ? '-' : '') + h + ':' + m;
}
};
/*** ENUMS ***/
var Motivos = {
MENOR_QUE_TOLERANCIA: 1,
ZERADO: 2,
PRESCRITO: 4,
PARCIALMENTE_UTILIZADO: 8,
UTILIZADO: 16,
PARCIALMENTE_COMPENSADO: 32,
COMPENSADO: 64
};
/*** CLASSES ***/
function Dia(data) {
this.data = data;
this.registros = [];
this.saldoConsiderado = this.saldo = 0 - this.jornadaPadrao;
}
Dia.prototype = {
compensacao: false,
data: null,
falta: true,
jornadaPadrao: 0,
motivo: 0,
registros: null,
saldo: 0,
saldoConsiderado: 0,
trabalhado: 0,
ultimoRegistro: null,
zerado: false,
inserirLinhasEm: function(tbody) {
this.getLinhas().forEach(function(linha, indiceLinha) {
tbody.appendChild(linha);
});
if (this.registros.length !== 0) {
this.ultimoRegistro.formatarUltimoRegistro(this.saldo, this.saldoConsiderado, this.motivo);
}
},
inserirRegistro: function(registro) {
var indice = this.registros.push(registro) - 1;
registro = this.registros[indice];
var ultimoTipo = this.ultimoRegistro ? this.ultimoRegistro.tipo : 'S';
if (ultimoTipo === 'S') {
if (registro.tipo === 'S') {
registro.destacarErroTipo();
registro.tipo = 'E';
}
} else if (ultimoTipo === 'E') {
if (registro.tipo === 'E') {
registro.destacarErroTipo();
registro.tipo = 'S';
}
this.trabalhado += registro.dataHora.getTime() - this.ultimoRegistro.dataHora.getTime();
this.saldo = this.trabalhado - this.jornadaPadrao;
if (Math.abs(this.saldo) < MINUTOS_DE_TOLERANCIA * 60 * 1000) {
this.saldoConsiderado = 0;
this.motivo |= Motivos.MENOR_QUE_TOLERANCIA;
} else {
this.saldoConsiderado = this.saldo;
this.motivo &= ~Motivos.MENOR_QUE_TOLERANCIA;
}
}
if (registro.dataHora.getTime() !== registro.alteracao.dataHora.getTime()) {
registro.destacarRegistroAlterado();
}
if (registro.justificativa === 'Compensação por serviço extraordinário') {
this.compensacao = true;
} else if (/zerado/i.exec(registro.justificativa)) {
this.zerado = true;
}
this.ultimoRegistro = registro;
this.falta = false;
}
};
Dia.prototype.constructor = Dia;
Dia.criar = function(data, textoData) {
if (textoData in Feriados || data.getDay() % 6 === 0) {
return new Feriado(data);
} else {
return new DiaUtil(data);
}
};
function Feriado(data) {
Dia.call(this, data);
}
Feriado.prototype = Object.create(Dia.prototype);
Feriado.prototype.constructor = Feriado;
Feriado.prototype.getLinhas = function() {
if (this.falta) {
return [];
} else {
return Array.map(this.registros, (registro) => registro.getLinha());
}
};
function DiaUtil(data) {
Dia.call(this, data);
}
DiaUtil.prototype = Object.create(Dia.prototype);
DiaUtil.prototype.constructor = DiaUtil;
DiaUtil.prototype.getLinhas = function() {
if (this.falta) {
this.ultimoRegistro = this.registros[this.registros.length++] = new Falta(this.data);
}
return Array.map(this.registros, (registro) => registro.getLinha());
};
DiaUtil.definirJornadaPadrao = function(jornadaPadrao) {
DiaUtil.prototype.jornadaPadrao = jornadaPadrao;
};
function Intervalo(inicio, fim) {
Object.defineProperties(this, {
dataConsiderada: { value: null, writable: true },
dataIdeal: { value: null, writable: true },
diasUteis: { value: 0, writable: true },
diasUteisTrabalhados: { value: 0, writable: true },
feriados: { value: 0, writable: true },
feriadosTrabalhados: { value: 0, writable: true },
saldoConsiderado: { value: 0, writable: true }
});
for (var dataAtual = inicio, fimMs = fim.getTime(); dataAtual.getTime() <= fimMs; dataAtual = DateFactory.diaSeguinte(dataAtual)) {
var textoDataAtual = DateHelper.toISODate(dataAtual);
var dia = this[textoDataAtual] = Dia.criar(dataAtual, textoDataAtual);
if (dia instanceof DiaUtil) {
++this.diasUteis;
} else {
++this.feriados;
}
}
}
Intervalo.prototype = Object.create(null, {
constructor: { value: Intervalo },
dataConsiderada: { value: null },
dataIdeal: { value: null },
diasUteis: { value: 0 },
diasUteisTrabalhados: { value: 0 },
feriados: { value: 0 },
feriadosTrabalhados: { value: 0 },
saldoConsiderado: { value: 0 },
analisarCompensacoes: {
value: function(inicio, fim) {
var datas = Object.keys(this);
var dataIdeal = DateFactory.deslocarDias(fim, -PRESCRICAO);
var dataConsiderada = dataIdeal;
var zerado = false;
for (var indice = datas.length - 1; indice > -1; --indice) {
var dia = this[ datas[indice] ];
if (dia.data.getTime() < dataIdeal.getTime()) {
break;
} else if (dia.zerado) {
dataIdeal = dia.data;
dataConsiderada = DateFactory.diaSeguinte(dia.data);
zerado = true;
break;
} else if (dia.compensacao || (dia.falta && (dia instanceof DiaUtil))) {
dataIdeal = DateFactory.deslocarDias(dia.data, -PRESCRICAO);
}
}
if (dataConsiderada.getTime() < inicio.getTime()) {
dataConsiderada = inicio;
}
this.dataIdeal = dataIdeal;
this.dataConsiderada = dataConsiderada;
for (var indice = 0, indiceDataIdeal = datas.indexOf(DateHelper.toISODate(dataIdeal)); indice < indiceDataIdeal; ++indice) {
var dia = this[ datas[indice] ];
dia.saldoConsiderado = 0;
dia.motivo |= zerado ? Motivos.ZERADO : Motivos.PRESCRITO;
}
if (zerado) {
var dia = this[ datas[indice++] ];
dia.saldoConsiderado = 0;
dia.motivo |= Motivos.ZERADO;
}
var indiceDataConsiderada = datas.indexOf(DateHelper.toISODate(dataConsiderada));
var indiceCompensacao = indice;
for (var len = datas.length; indice < len; ++indice) {
if (indiceCompensacao + PRESCRICAO === indice - 1) {
var diaCompensacao = this[ datas[indiceCompensacao++] ];
if (diaCompensacao.saldoConsiderado !== 0) {
console.log('///', DateHelper.toLocaleDate(diaCompensacao.data), diaCompensacao.saldoConsiderado, 'prescrito em', DateHelper.toLocaleDate(dia.data));
}
diaCompensacao.saldoConsiderado = 0;
diaCompensacao.motivo |= Motivos.PRESCRITO;
}
var dataAtual = datas[indice];
var dia = this[dataAtual];
if (dia.saldoConsiderado < 0) {
console.log('---', DateHelper.toLocaleDate(dia.data), dia.saldoConsiderado / 1000);
var saldo = dia.saldoConsiderado;
for (var limite = Math.min(indice + PRESCRICAO + 1, len); indiceCompensacao < limite; ++indiceCompensacao) {
var dataCompensacao = datas[indiceCompensacao];
var diaCompensacao = this[dataCompensacao];
if (diaCompensacao.saldoConsiderado > 0) {
var diminuir = Math.min(diaCompensacao.saldoConsiderado, -saldo);
saldo += diminuir;
diaCompensacao.saldoConsiderado -= diminuir;
var gastouTudo = diaCompensacao.saldoConsiderado === 0;
diaCompensacao.motivo &= ~Motivos.PARCIALMENTE_UTILIZADO;
diaCompensacao.motivo |= gastouTudo ? Motivos.UTILIZADO : Motivos.PARCIALMENTE_UTILIZADO;
diaCompensacao.motivo |= (indiceCompensacao < indiceDataConsiderada) ? Motivos.PRESCRITO : 0;
console.log(
'+++',
DateHelper.toLocaleDate(diaCompensacao.data),
(diaCompensacao.saldoConsiderado + diminuir) / 1000,
'-',
diminuir / 1000,
'=',
diaCompensacao.saldoConsiderado / 1000
);
if (! gastouTudo) break;
}
}
var compensouAlgo = dia.saldoConsiderado !== saldo;
var compensouTudo = saldo === 0;
dia.saldoConsiderado = saldo;
dia.motivo &= ~Motivos.PARCIALMENTE_COMPENSADO;
dia.motivo |= compensouAlgo ? (compensouTudo ? Motivos.COMPENSADO : Motivos.PARCIALMENTE_COMPENSADO) : 0;
console.log('===', DateHelper.toLocaleDate(dia.data), dia.saldoConsiderado / 1000);
}
dia.motivo |= (indice < indiceDataConsiderada) ? Motivos.PRESCRITO : 0;
}
for (; indiceCompensacao < indiceDataConsiderada; ++indiceCompensacao) {
var diaCompensacao = this[ datas[indiceCompensacao] ];
console.log(DateHelper.toLocaleDate(diaCompensacao.data), 'prescreveu.');
diaCompensacao.saldoConsiderado = 0;
diaCompensacao.motivo |= Motivos.PRESCRITO;
}
}
},
analisarLinhas: {
value: function(linhas) {
var datas = Object.keys(this);
var indice = 0;
for (var linha of linhas) {
var registro = Registro.fromLinha(linha);
var data = registro.textoData;
while (data !== datas[indice]) {
var dia = this[ datas[indice++] ];
this.verificarDiaTrabalhado(dia);
}
var dia = this[data];
dia.inserirRegistro(registro);
}
while (indice < datas.length) {
var dia = this[ datas[indice++] ];
this.verificarDiaTrabalhado(dia);
}
console.log(this);
}
},
inserirLinhasEm: {
value: function(tbody) {
for (var data in this) {
var dia = this[data];
this.saldoConsiderado += dia.saldoConsiderado;
dia.inserirLinhasEm(tbody);
if (dia.zerado) {
this.saldoConsiderado = 0;
}
}
}
},
verificarDiaTrabalhado: {
value: function(dia) {
if (! dia.falta) {
if (dia instanceof DiaUtil) {
++this.diasUteisTrabalhados;
} else if (dia instanceof Feriado) {
++this.feriadosTrabalhados;
}
}
}
}
});
function Registro() {
this.alteracao = {
dataHora: null,
usuario: ''
};
}
Registro.prototype = {
linha: null,
dataHora: null,
textoData: '',
alteracao: null,
tipo: 'S',
justificativa: null,
destacarErroTipo: function() {
this.linha.cells[2].classList.add('erro');
},
destacarRegistroAlterado: function() {
this.linha.cells[1].classList.add('alterado');
},
getLinha: function() {
return this.linha;
},
formatarUltimoRegistro: function(saldo, saldoConsiderado, motivo) {
this.linha.className = 'ultima';
var celula;
celula = this.linha.insertCell();
celula.textContent = IntervalHelper.toMinutesString(saldo);
var classes = ['resultado'];
if (saldo < 0) {
classes.push('saldoNegativo');
}
if (saldoConsiderado === 0) {
classes.push('saldoIgnorado');
}
if (this.tipo == 'E') {
classes.push('erro');
}
celula.className = classes.join(' ');
var motivos = [];
if (motivo & Motivos.ZERADO) {
motivos.push('Zerado');
} else if ((motivo & (Motivos.MENOR_QUE_TOLERANCIA | Motivos.PRESCRITO)) === Motivos.MENOR_QUE_TOLERANCIA) {
if (saldo !== 0) motivos.push('<' + MINUTOS_DE_TOLERANCIA + 'min');
} else {
if (motivo & Motivos.COMPENSADO) {
motivos.push('Compensado');
} else if (motivo & Motivos.PARCIALMENTE_COMPENSADO) {
motivos.push('Parcialmente compensado');
if ((motivo & Motivos.PRESCRITO) === 0) motivos.push('remanescente: ' + IntervalHelper.toMinutesString(saldoConsiderado));
} else if (motivo & Motivos.UTILIZADO) {
motivos.push('Utilizado');
} else if (motivo & Motivos.PARCIALMENTE_UTILIZADO) {
motivos.push('Parcialmente utilizado');
if ((motivo & Motivos.PRESCRITO) === 0) motivos.push('remanescente: ' + IntervalHelper.toMinutesString(saldoConsiderado));
}
if (motivo & Motivos.PRESCRITO) {
if (motivos.length === 0) {
motivos.push('Prescrito');
} else {
motivos.push('prescrito');
}
}
}
this.linha.insertCell().textContent = motivos.join(', ');
}
};
Registro.prototype.constructor = Registro;
Registro.fromLinha = function(linha) {
var dataHora = DateFactory.dataHoraTexto(linha.cells[0].textContent);
var dataHoraAlteracao = DateFactory.dataHoraTexto(linha.cells[1].textContent);
var tipo = (linha.cells[2].textContent === 'Entrada') ? 'E' : 'S';
var justificativa = linha.cells[3].textContent.trim();
if (justificativa === '') justificativa = linha.cells[4].textContent.trim();
if (justificativa === '') justificativa = null;
var usuarioAlteracao = linha.cells[5].textContent;
var textoData = DateHelper.toISODate(dataHora);
linha.cells[3].textContent = justificativa;
linha.deleteCell(4);
var registro = new Registro();
registro.linha = linha;
registro.dataHora = dataHora;
registro.alteracao.dataHora = dataHoraAlteracao;
registro.tipo = tipo;
registro.justificativa = justificativa;
registro.alteracao.usuario = usuarioAlteracao;
registro.textoData = textoData;
return registro;
};
function Falta(data) {
var celulaVazia = '<td><br/></td>';
this.linha = $('<tr class="ultima" style="font-family: Arial; font-size: 8pt;"><td>' + DateHelper.toLocaleDate(data) + '</td>' + celulaVazia + '<td class="erro">Falta</td>' + celulaVazia.repeat(2) + '</tr>').get(0);
}
Falta.prototype = Object.create(Registro.prototype);
Falta.prototype.constructor = Falta;