@senior-gestao-pessoas/payroll-core 9.4.0-f9d3c09b-0079-4f7c-94cf-dd79338e7089 → 9.5.0-01923a3e-20f4-4cb3-9565-a0584abd00d1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/senior-gestao-pessoas-payroll-core.umd.js +1214 -770
- package/bundles/senior-gestao-pessoas-payroll-core.umd.js.map +1 -1
- package/bundles/senior-gestao-pessoas-payroll-core.umd.min.js +16 -1
- package/bundles/senior-gestao-pessoas-payroll-core.umd.min.js.map +1 -1
- package/components/historical-pix-account/historical-pix-account-base.d.ts +27 -0
- package/components/historical-pix-account/historical-pix-account-form/historical-pix-account-form.component.d.ts +8 -40
- package/components/historical-pix-account/historical-pix-account.component.d.ts +36 -8
- package/components/historical-pix-account/historical-pix-account.service.d.ts +1 -0
- package/components/historical-pix-account-list/historical-pix-account-list.component.d.ts +10 -1
- package/components/shared/index.d.ts +1 -0
- package/components/shared/shared-state.service.d.ts +17 -0
- package/components/utils/format-utils/format-utils.service.d.ts +30 -3
- package/esm2015/components/historical-pix-account/historical-pix-account-base.js +173 -0
- package/esm2015/components/historical-pix-account/historical-pix-account-form/historical-pix-account-form.component.js +29 -187
- package/esm2015/components/historical-pix-account/historical-pix-account.component.js +245 -20
- package/esm2015/components/historical-pix-account/historical-pix-account.module.js +5 -1
- package/esm2015/components/historical-pix-account/historical-pix-account.service.js +8 -1
- package/esm2015/components/historical-pix-account-list/historical-pix-account-list.component.js +45 -4
- package/esm2015/components/shared/index.js +2 -0
- package/esm2015/components/shared/shared-state.service.js +41 -0
- package/esm2015/components/utils/format-utils/format-utils.service.js +88 -5
- package/esm2015/public_api.js +2 -1
- package/esm2015/senior-gestao-pessoas-payroll-core.js +3 -2
- package/esm5/components/historical-pix-account/historical-pix-account-base.js +186 -0
- package/esm5/components/historical-pix-account/historical-pix-account-form/historical-pix-account-form.component.js +53 -201
- package/esm5/components/historical-pix-account/historical-pix-account.component.js +287 -49
- package/esm5/components/historical-pix-account/historical-pix-account.module.js +5 -1
- package/esm5/components/historical-pix-account/historical-pix-account.service.js +8 -1
- package/esm5/components/historical-pix-account-list/historical-pix-account-list.component.js +50 -4
- package/esm5/components/shared/index.js +2 -0
- package/esm5/components/shared/shared-state.service.js +42 -0
- package/esm5/components/utils/format-utils/format-utils.service.js +88 -5
- package/esm5/public_api.js +2 -1
- package/esm5/senior-gestao-pessoas-payroll-core.js +3 -2
- package/fesm2015/senior-gestao-pessoas-payroll-core.js +880 -477
- package/fesm2015/senior-gestao-pessoas-payroll-core.js.map +1 -1
- package/fesm5/senior-gestao-pessoas-payroll-core.js +1210 -767
- package/fesm5/senior-gestao-pessoas-payroll-core.js.map +1 -1
- package/package.json +2 -32
- package/public_api.d.ts +1 -0
- package/senior-gestao-pessoas-payroll-core.d.ts +2 -1
- package/senior-gestao-pessoas-payroll-core.metadata.json +1 -1
|
@@ -36,6 +36,7 @@ import { CurrencyMaskModule } from 'ng2-currency-mask';
|
|
|
36
36
|
import { FieldsetModule } from 'primeng/fieldset';
|
|
37
37
|
import { PanelModule } from 'primeng/panel';
|
|
38
38
|
import { ConfirmDialogModule } from 'primeng/confirmdialog';
|
|
39
|
+
import { TabViewModule } from 'primeng/tabview';
|
|
39
40
|
|
|
40
41
|
/**
|
|
41
42
|
* Created by Bruno.Curioletti on 30/05/2017.
|
|
@@ -8440,6 +8441,25 @@ class FormatUtilsService {
|
|
|
8440
8441
|
}
|
|
8441
8442
|
return null;
|
|
8442
8443
|
}
|
|
8444
|
+
/**
|
|
8445
|
+
* Retorna o CPF formatado
|
|
8446
|
+
* @param cpf CPF
|
|
8447
|
+
*/
|
|
8448
|
+
static getFormattedCpfEdited(cpf) {
|
|
8449
|
+
if (!cpf)
|
|
8450
|
+
return '';
|
|
8451
|
+
cpf = cpf.replace(/\D/g, '').slice(0, 11);
|
|
8452
|
+
if (cpf.length > 9) {
|
|
8453
|
+
cpf = cpf.replace(/^(\d{3})(\d{3})(\d{3})(\d{2})$/, "$1.$2.$3-$4");
|
|
8454
|
+
}
|
|
8455
|
+
else if (cpf.length > 6) {
|
|
8456
|
+
cpf = cpf.replace(/^(\d{3})(\d{3})(\d{0,3})$/, "$1.$2.$3");
|
|
8457
|
+
}
|
|
8458
|
+
else if (cpf.length > 3) {
|
|
8459
|
+
cpf = cpf.replace(/^(\d{3})(\d{0,3})$/, "$1.$2");
|
|
8460
|
+
}
|
|
8461
|
+
return cpf;
|
|
8462
|
+
}
|
|
8443
8463
|
/**
|
|
8444
8464
|
* Retorna o CNPJ formatado
|
|
8445
8465
|
* @param cnpj CNPJ
|
|
@@ -8455,6 +8475,28 @@ class FormatUtilsService {
|
|
|
8455
8475
|
}
|
|
8456
8476
|
return null;
|
|
8457
8477
|
}
|
|
8478
|
+
/**
|
|
8479
|
+
* Retorna o CNPJ formatado
|
|
8480
|
+
* @param cnpj CNPJ
|
|
8481
|
+
*/
|
|
8482
|
+
static getFormattedCnpjEdited(cnpj) {
|
|
8483
|
+
if (!cnpj)
|
|
8484
|
+
return '';
|
|
8485
|
+
cnpj = cnpj.replace(/\D/g, '').slice(0, 14);
|
|
8486
|
+
if (cnpj.length > 12) {
|
|
8487
|
+
cnpj = cnpj.replace(/^(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})$/, "$1.$2.$3/$4-$5");
|
|
8488
|
+
}
|
|
8489
|
+
else if (cnpj.length > 8) {
|
|
8490
|
+
cnpj = cnpj.replace(/^(\d{2})(\d{3})(\d{3})(\d{0,4})$/, "$1.$2.$3/$4");
|
|
8491
|
+
}
|
|
8492
|
+
else if (cnpj.length > 5) {
|
|
8493
|
+
cnpj = cnpj.replace(/^(\d{2})(\d{3})(\d{0,3})$/, "$1.$2.$3");
|
|
8494
|
+
}
|
|
8495
|
+
else if (cnpj.length > 2) {
|
|
8496
|
+
cnpj = cnpj.replace(/^(\d{2})(\d{0,3})$/, "$1.$2");
|
|
8497
|
+
}
|
|
8498
|
+
return cnpj;
|
|
8499
|
+
}
|
|
8458
8500
|
/**
|
|
8459
8501
|
* Retorna a mascara do CPF/CNPJ
|
|
8460
8502
|
* @param key Valores possíveis são CPF ou CNPJ
|
|
@@ -8469,6 +8511,24 @@ class FormatUtilsService {
|
|
|
8469
8511
|
return "";
|
|
8470
8512
|
}
|
|
8471
8513
|
}
|
|
8514
|
+
/**
|
|
8515
|
+
* Método para formatar o número de inscrição do cliente.
|
|
8516
|
+
* @param subscriptionNumber
|
|
8517
|
+
* @param pixKeyType
|
|
8518
|
+
* @returns
|
|
8519
|
+
*/
|
|
8520
|
+
static getFormattedSubscriptionNumber(subscriptionNumber, pixKeyType) {
|
|
8521
|
+
if (!subscriptionNumber || !pixKeyType)
|
|
8522
|
+
return subscriptionNumber;
|
|
8523
|
+
switch (pixKeyType) {
|
|
8524
|
+
case 'CNPJ':
|
|
8525
|
+
return this.getFormattedCnpjEdited(subscriptionNumber);
|
|
8526
|
+
case 'CPF':
|
|
8527
|
+
return this.getFormattedCpfEdited(subscriptionNumber);
|
|
8528
|
+
default:
|
|
8529
|
+
return subscriptionNumber;
|
|
8530
|
+
}
|
|
8531
|
+
}
|
|
8472
8532
|
/**
|
|
8473
8533
|
* Metódo para formatar o número de telefone.
|
|
8474
8534
|
* @param telephoneNumber String contendo o número de telefone.
|
|
@@ -8500,6 +8560,13 @@ class FormatUtilsService {
|
|
|
8500
8560
|
}
|
|
8501
8561
|
return tel;
|
|
8502
8562
|
}
|
|
8563
|
+
/**
|
|
8564
|
+
* Metódo para formatar a porcentagem para 2 casas decimais.
|
|
8565
|
+
* @param value Número a ser formatado.
|
|
8566
|
+
*/
|
|
8567
|
+
static getFormattedPercentage(value) {
|
|
8568
|
+
return parseFloat(value).toFixed(2).replace('.', ',') + '%';
|
|
8569
|
+
}
|
|
8503
8570
|
/**
|
|
8504
8571
|
* Metódo para formatar o número de telefone de um campo Input.
|
|
8505
8572
|
* @param event Evento do Input do campo de telefone.
|
|
@@ -8513,30 +8580,443 @@ class FormatUtilsService {
|
|
|
8513
8580
|
event.target.value = FormatUtilsService.getFormattedTelephoneNumber(telephoneNumber);
|
|
8514
8581
|
}
|
|
8515
8582
|
/**
|
|
8516
|
-
*
|
|
8517
|
-
* @param
|
|
8583
|
+
* Formata o campo de input de CPF em tempo real.
|
|
8584
|
+
* @param event Evento do input
|
|
8518
8585
|
*/
|
|
8519
|
-
static
|
|
8520
|
-
|
|
8586
|
+
static formatCpfInputEvent(event) {
|
|
8587
|
+
let cpf = event.target.value;
|
|
8588
|
+
// Permite apagar nos pontos sensíveis
|
|
8589
|
+
if (event.keyCode === 8 && (cpf.length === 4 || cpf.length === 8 || cpf.length === 12)) {
|
|
8590
|
+
return;
|
|
8591
|
+
}
|
|
8592
|
+
event.target.value = FormatUtilsService.getFormattedCpfEdited(cpf);
|
|
8593
|
+
}
|
|
8594
|
+
/**
|
|
8595
|
+
* Formata o campo de input de CNPJ em tempo real.
|
|
8596
|
+
* @param event Evento do input
|
|
8597
|
+
*/
|
|
8598
|
+
static formatCnpjInputEvent(event) {
|
|
8599
|
+
let cnpj = event.target.value;
|
|
8600
|
+
// Permite apagar nos pontos sensíveis
|
|
8601
|
+
if (event.keyCode === 8 && (cnpj.length === 3 || cnpj.length === 7 || cnpj.length === 11 || cnpj.length === 16)) {
|
|
8602
|
+
return;
|
|
8603
|
+
}
|
|
8604
|
+
event.target.value = FormatUtilsService.getFormattedCnpjEdited(cnpj);
|
|
8521
8605
|
}
|
|
8522
8606
|
}
|
|
8523
8607
|
|
|
8524
|
-
let
|
|
8525
|
-
constructor(
|
|
8608
|
+
let SharedStateService = class SharedStateService {
|
|
8609
|
+
constructor() {
|
|
8610
|
+
this.hideFieldSubject = new BehaviorSubject(true);
|
|
8611
|
+
this.hideField$ = this.hideFieldSubject.asObservable();
|
|
8612
|
+
this.showButtonSubject = new BehaviorSubject(true);
|
|
8613
|
+
this.showButton$ = this.showButtonSubject.asObservable();
|
|
8614
|
+
this.saveButtonSubject = new BehaviorSubject(true);
|
|
8615
|
+
this.saveButton$ = this.saveButtonSubject.asObservable();
|
|
8616
|
+
this.showEditMode = new BehaviorSubject(true);
|
|
8617
|
+
this.showEditMode$ = this.showEditMode.asObservable();
|
|
8618
|
+
this.activeValidatorsOnEditModalOpen = new Subject();
|
|
8619
|
+
this.activeValidatorsOnEditModalOpen$ = this.activeValidatorsOnEditModalOpen.asObservable();
|
|
8620
|
+
}
|
|
8621
|
+
setHideField(value) {
|
|
8622
|
+
this.hideFieldSubject.next(value);
|
|
8623
|
+
}
|
|
8624
|
+
setShowButton(value) {
|
|
8625
|
+
this.showButtonSubject.next(value);
|
|
8626
|
+
}
|
|
8627
|
+
setSaveButton(value) {
|
|
8628
|
+
this.saveButtonSubject.next(value);
|
|
8629
|
+
}
|
|
8630
|
+
setShowEditMode(value) {
|
|
8631
|
+
this.showEditMode.next(value);
|
|
8632
|
+
}
|
|
8633
|
+
triggerActiveValidatorsOnEditModalOpen() {
|
|
8634
|
+
this.activeValidatorsOnEditModalOpen.next();
|
|
8635
|
+
}
|
|
8636
|
+
};
|
|
8637
|
+
SharedStateService.ngInjectableDef = ɵɵdefineInjectable({ factory: function SharedStateService_Factory() { return new SharedStateService(); }, token: SharedStateService, providedIn: "root" });
|
|
8638
|
+
SharedStateService = __decorate([
|
|
8639
|
+
Injectable({
|
|
8640
|
+
providedIn: 'root',
|
|
8641
|
+
})
|
|
8642
|
+
], SharedStateService);
|
|
8643
|
+
|
|
8644
|
+
class GenericValidator {
|
|
8645
|
+
constructor() { }
|
|
8646
|
+
/**
|
|
8647
|
+
* Valida o CEI (Cadastro específico de INSS) digitado.
|
|
8648
|
+
*/
|
|
8649
|
+
static isValidCei(control) {
|
|
8650
|
+
const cei = control.value;
|
|
8651
|
+
if (!cei)
|
|
8652
|
+
return null;
|
|
8653
|
+
else if (cei.length != 11)
|
|
8654
|
+
return null;
|
|
8655
|
+
const multiplicadorBase = "3298765432";
|
|
8656
|
+
let total = 0;
|
|
8657
|
+
let resto = 0;
|
|
8658
|
+
let multiplicando = 0;
|
|
8659
|
+
let multiplicador = 0;
|
|
8660
|
+
if (cei.length !== 11 ||
|
|
8661
|
+
cei === "00000000000" ||
|
|
8662
|
+
cei === "11111111111" ||
|
|
8663
|
+
cei === "22222222222" ||
|
|
8664
|
+
cei === "33333333333" ||
|
|
8665
|
+
cei === "44444444444" ||
|
|
8666
|
+
cei === "55555555555" ||
|
|
8667
|
+
cei === "66666666666" ||
|
|
8668
|
+
cei === "77777777777" ||
|
|
8669
|
+
cei === "88888888888" ||
|
|
8670
|
+
cei === "99999999999")
|
|
8671
|
+
return { invalidCei: true };
|
|
8672
|
+
else {
|
|
8673
|
+
for (let i = 0; i < 10; i++) {
|
|
8674
|
+
multiplicando = parseInt(cei.substring(i, i + 1), 10);
|
|
8675
|
+
multiplicador = parseInt(multiplicadorBase.substring(i, i + 1), 10);
|
|
8676
|
+
total += multiplicando * multiplicador;
|
|
8677
|
+
}
|
|
8678
|
+
resto = 11 - (total % 11);
|
|
8679
|
+
resto = resto === 10 || resto === 11 ? 0 : resto;
|
|
8680
|
+
const digito = parseInt("" + cei.charAt(10), 10);
|
|
8681
|
+
return resto === digito ? null : { invalidCei: true };
|
|
8682
|
+
}
|
|
8683
|
+
}
|
|
8684
|
+
/**
|
|
8685
|
+
* Valida se o CPF é valido. Deve-se ser informado o cpf sem máscara.
|
|
8686
|
+
*/
|
|
8687
|
+
static isValidCpf(control) {
|
|
8688
|
+
const cpf = control.value;
|
|
8689
|
+
if (cpf) {
|
|
8690
|
+
let numbers, digits, sum, i, result, equalDigits;
|
|
8691
|
+
equalDigits = 1;
|
|
8692
|
+
if (cpf.length < 11) {
|
|
8693
|
+
return null;
|
|
8694
|
+
}
|
|
8695
|
+
for (i = 0; i < cpf.length - 1; i++) {
|
|
8696
|
+
if (cpf.charAt(i) !== cpf.charAt(i + 1)) {
|
|
8697
|
+
equalDigits = 0;
|
|
8698
|
+
break;
|
|
8699
|
+
}
|
|
8700
|
+
}
|
|
8701
|
+
if (!equalDigits) {
|
|
8702
|
+
numbers = cpf.substring(0, 9);
|
|
8703
|
+
digits = cpf.substring(9);
|
|
8704
|
+
sum = 0;
|
|
8705
|
+
for (i = 10; i > 1; i--) {
|
|
8706
|
+
sum += numbers.charAt(10 - i) * i;
|
|
8707
|
+
}
|
|
8708
|
+
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
8709
|
+
if (result !== Number(digits.charAt(0))) {
|
|
8710
|
+
return { cpfNotValid: true };
|
|
8711
|
+
}
|
|
8712
|
+
numbers = cpf.substring(0, 10);
|
|
8713
|
+
sum = 0;
|
|
8714
|
+
for (i = 11; i > 1; i--) {
|
|
8715
|
+
sum += numbers.charAt(11 - i) * i;
|
|
8716
|
+
}
|
|
8717
|
+
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
8718
|
+
if (result !== Number(digits.charAt(1))) {
|
|
8719
|
+
return { cpfNotValid: true };
|
|
8720
|
+
}
|
|
8721
|
+
return null;
|
|
8722
|
+
}
|
|
8723
|
+
else {
|
|
8724
|
+
return { cpfNotValid: true };
|
|
8725
|
+
}
|
|
8726
|
+
}
|
|
8727
|
+
return null;
|
|
8728
|
+
}
|
|
8729
|
+
/**
|
|
8730
|
+
* Valida se o CNPJ é valido. Deve-se ser informado o cpf sem máscara.
|
|
8731
|
+
*/
|
|
8732
|
+
static isValidCnpj(control) {
|
|
8733
|
+
let cnpj = control.value;
|
|
8734
|
+
if (cnpj) {
|
|
8735
|
+
let size, numbers, digits, sum, pos, result;
|
|
8736
|
+
cnpj = cnpj.replace(/[^\d]+/g, '');
|
|
8737
|
+
if (cnpj.length !== 14) {
|
|
8738
|
+
return null;
|
|
8739
|
+
}
|
|
8740
|
+
// Elimina CNPJs invalidos conhecidos
|
|
8741
|
+
if (cnpj === '00000000000000' ||
|
|
8742
|
+
cnpj === '11111111111111' ||
|
|
8743
|
+
cnpj === '22222222222222' ||
|
|
8744
|
+
cnpj === '33333333333333' ||
|
|
8745
|
+
cnpj === '44444444444444' ||
|
|
8746
|
+
cnpj === '55555555555555' ||
|
|
8747
|
+
cnpj === '66666666666666' ||
|
|
8748
|
+
cnpj === '77777777777777' ||
|
|
8749
|
+
cnpj === '88888888888888' ||
|
|
8750
|
+
cnpj === '99999999999999') {
|
|
8751
|
+
return { cnpjNotValid: true };
|
|
8752
|
+
}
|
|
8753
|
+
// Valida DVs
|
|
8754
|
+
size = cnpj.length - 2;
|
|
8755
|
+
numbers = cnpj.substring(0, size);
|
|
8756
|
+
digits = cnpj.substring(size);
|
|
8757
|
+
sum = 0;
|
|
8758
|
+
pos = size - 7;
|
|
8759
|
+
for (let i = size; i >= 1; i--) {
|
|
8760
|
+
sum += numbers.charAt(size - i) * pos--;
|
|
8761
|
+
if (pos < 2) {
|
|
8762
|
+
pos = 9;
|
|
8763
|
+
}
|
|
8764
|
+
}
|
|
8765
|
+
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
8766
|
+
if (result !== Number(digits.charAt(0))) {
|
|
8767
|
+
return { cnpjNotValid: true };
|
|
8768
|
+
}
|
|
8769
|
+
size = size + 1;
|
|
8770
|
+
numbers = cnpj.substring(0, size);
|
|
8771
|
+
sum = 0;
|
|
8772
|
+
pos = size - 7;
|
|
8773
|
+
for (let i = size; i >= 1; i--) {
|
|
8774
|
+
sum += numbers.charAt(size - i) * pos--;
|
|
8775
|
+
if (pos < 2) {
|
|
8776
|
+
pos = 9;
|
|
8777
|
+
}
|
|
8778
|
+
}
|
|
8779
|
+
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
8780
|
+
if (result !== Number(digits.charAt(1))) {
|
|
8781
|
+
return { cnpjNotValid: true };
|
|
8782
|
+
}
|
|
8783
|
+
return null;
|
|
8784
|
+
}
|
|
8785
|
+
return null;
|
|
8786
|
+
}
|
|
8787
|
+
/**
|
|
8788
|
+
* Válida o número de telefone da chave PIX.
|
|
8789
|
+
*/
|
|
8790
|
+
static isValidPhoneNumber(control) {
|
|
8791
|
+
let cellPhoneKey = control.value || '';
|
|
8792
|
+
cellPhoneKey = cellPhoneKey.replace(/[\s()-]/g, '');
|
|
8793
|
+
const regexNumberTelephone = /^[1-9][\d]{1,2}\d{8,10}$/;
|
|
8794
|
+
const isValidNumberTelephone = regexNumberTelephone.test(cellPhoneKey);
|
|
8795
|
+
return isValidNumberTelephone ? null : { invalidPhoneNumber: true };
|
|
8796
|
+
}
|
|
8797
|
+
/**
|
|
8798
|
+
* Valida o email da chave PIX.
|
|
8799
|
+
*/
|
|
8800
|
+
static isValidEmail(control) {
|
|
8801
|
+
const emailKey = control.value;
|
|
8802
|
+
const regexValidEmail = /^[\w-\.]+@[\w-]+(\.[\w-]{2,4}){1,2}$/;
|
|
8803
|
+
const isValidEmail = regexValidEmail.test(emailKey);
|
|
8804
|
+
return isValidEmail ? null : { invalidEmail: true };
|
|
8805
|
+
}
|
|
8806
|
+
}
|
|
8807
|
+
|
|
8808
|
+
class HistoricakPixAccountBase {
|
|
8809
|
+
constructor(formBuilder) {
|
|
8810
|
+
this._paramsForm = new FormGroup({});
|
|
8811
|
+
this._defaultCpfNumber = null;
|
|
8812
|
+
this.initialValidatorOfPercentage = [Validators.required, Validators.min(0.01)];
|
|
8813
|
+
this.pixAccountList = [];
|
|
8814
|
+
this.maxValuePercentage = 100.0;
|
|
8815
|
+
this.isShowPixKeyFieldValidatorMessage = false;
|
|
8816
|
+
this.formBuilder = formBuilder;
|
|
8817
|
+
this.createFormGroupBase();
|
|
8818
|
+
}
|
|
8819
|
+
phoneMask(event) {
|
|
8820
|
+
FormatUtilsService.formatTelephoneInputEvent(event);
|
|
8821
|
+
}
|
|
8822
|
+
cpfMask(event) {
|
|
8823
|
+
FormatUtilsService.formatCpfInputEvent(event);
|
|
8824
|
+
}
|
|
8825
|
+
cnpjMask(event) {
|
|
8826
|
+
FormatUtilsService.formatCnpjInputEvent(event);
|
|
8827
|
+
}
|
|
8828
|
+
onChangePixKeyType(item, form) {
|
|
8829
|
+
if (!item || !item.key)
|
|
8830
|
+
return;
|
|
8831
|
+
this.pixKeyType = item.key;
|
|
8832
|
+
const targetForm = (typeof form !== 'undefined' && form !== null)
|
|
8833
|
+
? form
|
|
8834
|
+
: this.pixAccountFormGroup;
|
|
8835
|
+
this.isShowPixKeyFieldValidatorMessage = true;
|
|
8836
|
+
const pixKeyControl = targetForm.get("pixKey");
|
|
8837
|
+
if (pixKeyControl) {
|
|
8838
|
+
pixKeyControl.reset();
|
|
8839
|
+
}
|
|
8840
|
+
this.setPixKeyValidators(true, targetForm);
|
|
8841
|
+
if (item.key === "CPF") {
|
|
8842
|
+
this.setDefaultCpfPixKey(targetForm);
|
|
8843
|
+
}
|
|
8844
|
+
}
|
|
8845
|
+
onClearPixKeyType(form) {
|
|
8846
|
+
var targetForm = (typeof form !== 'undefined' && form !== null)
|
|
8847
|
+
? form
|
|
8848
|
+
: this.pixAccountFormGroup;
|
|
8849
|
+
this.isShowPixKeyFieldValidatorMessage = false;
|
|
8850
|
+
if (targetForm.get("pixKey")) {
|
|
8851
|
+
targetForm.get("pixKey").reset();
|
|
8852
|
+
}
|
|
8853
|
+
}
|
|
8854
|
+
setDefaultCpfPixKey(form) {
|
|
8855
|
+
var targetForm = (typeof form !== 'undefined' && form !== null)
|
|
8856
|
+
? form
|
|
8857
|
+
: this.pixAccountFormGroup;
|
|
8858
|
+
if (this._defaultCpfNumber) {
|
|
8859
|
+
if (targetForm.get("pixKey")) {
|
|
8860
|
+
targetForm.get("pixKey").setValue(this._defaultCpfNumber);
|
|
8861
|
+
}
|
|
8862
|
+
}
|
|
8863
|
+
else {
|
|
8864
|
+
var sheetDocument = this._paramsForm.get("sheetDocument");
|
|
8865
|
+
if (sheetDocument && sheetDocument.get("cpfNumber")) {
|
|
8866
|
+
var cpf = sheetDocument.get("cpfNumber").value;
|
|
8867
|
+
if (cpf && targetForm.get("pixKey")) {
|
|
8868
|
+
targetForm.get("pixKey").setValue(cpf);
|
|
8869
|
+
}
|
|
8870
|
+
}
|
|
8871
|
+
}
|
|
8872
|
+
}
|
|
8873
|
+
createFormGroupBase() {
|
|
8874
|
+
this.pixAccountFormGroup = this.formBuilder.group({
|
|
8875
|
+
id: this.formBuilder.control(null),
|
|
8876
|
+
index: this.formBuilder.control(null),
|
|
8877
|
+
employee: this.formBuilder.control({ value: { tableId: null }, disabled: true }),
|
|
8878
|
+
dateChange: this.formBuilder.control(null),
|
|
8879
|
+
pixKeyType: this.formBuilder.control(null, Validators.required),
|
|
8880
|
+
pixKey: this.formBuilder.control(null),
|
|
8881
|
+
percentage: this.formBuilder.control(null, Validators.compose([
|
|
8882
|
+
...this.initialValidatorOfPercentage,
|
|
8883
|
+
Validators.max(this.maxValuePercentage),
|
|
8884
|
+
])),
|
|
8885
|
+
externalId: this.formBuilder.control(null),
|
|
8886
|
+
customFields: this.formBuilder.control(null),
|
|
8887
|
+
});
|
|
8888
|
+
}
|
|
8889
|
+
setValidatorsAccordingList(pixAccountList, index = null, isEditMode = true, form) {
|
|
8890
|
+
var targetForm = (typeof form !== 'undefined' && form !== null)
|
|
8891
|
+
? form
|
|
8892
|
+
: this.pixAccountFormGroup;
|
|
8893
|
+
this.pixAccountList = (pixAccountList && pixAccountList.length > 0)
|
|
8894
|
+
? [].concat(pixAccountList)
|
|
8895
|
+
: [];
|
|
8896
|
+
var percentageIncluded = [];
|
|
8897
|
+
for (var i = 0; i < this.pixAccountList.length; i++) {
|
|
8898
|
+
var field = this.pixAccountList[i];
|
|
8899
|
+
if (field && field.percentage && i !== index) {
|
|
8900
|
+
percentageIncluded.push(field.percentage);
|
|
8901
|
+
}
|
|
8902
|
+
}
|
|
8903
|
+
this.beforeSetPixKeyTypeValidator(targetForm);
|
|
8904
|
+
this.setPixKeyValidators(isEditMode, targetForm);
|
|
8905
|
+
this.validatePercentageValid(percentageIncluded, targetForm);
|
|
8906
|
+
}
|
|
8907
|
+
beforeSetPixKeyTypeValidator(form) {
|
|
8908
|
+
const control = form.get("pixKeyType");
|
|
8909
|
+
if (this.pixAccountList && this.pixAccountList.length) {
|
|
8910
|
+
control.setValidators(Validators.compose([
|
|
8911
|
+
Validators.required,
|
|
8912
|
+
this.validateDuplicatePixKeyTypeBankAccount(this.pixAccountList),
|
|
8913
|
+
]));
|
|
8914
|
+
}
|
|
8915
|
+
else {
|
|
8916
|
+
control.setValidators(Validators.required);
|
|
8917
|
+
}
|
|
8918
|
+
control.updateValueAndValidity();
|
|
8919
|
+
}
|
|
8920
|
+
setPixKeyValidators(isEditMode, form) {
|
|
8921
|
+
const pixKey = form.get("pixKey");
|
|
8922
|
+
switch (this.pixKeyType) {
|
|
8923
|
+
case "TELEPHONE":
|
|
8924
|
+
pixKey.setValidators(Validators.compose([Validators.required, GenericValidator.isValidPhoneNumber]));
|
|
8925
|
+
break;
|
|
8926
|
+
case "EMAIL":
|
|
8927
|
+
pixKey.setValidators(Validators.compose([Validators.required, GenericValidator.isValidEmail]));
|
|
8928
|
+
break;
|
|
8929
|
+
case "CPF":
|
|
8930
|
+
pixKey.setValidators(Validators.compose([Validators.required, GenericValidator.isValidCpf]));
|
|
8931
|
+
break;
|
|
8932
|
+
case "CNPJ":
|
|
8933
|
+
pixKey.setValidators(Validators.compose([Validators.required, GenericValidator.isValidCnpj]));
|
|
8934
|
+
break;
|
|
8935
|
+
case "RANDOM_KEY":
|
|
8936
|
+
pixKey.setValidators(Validators.required);
|
|
8937
|
+
break;
|
|
8938
|
+
default:
|
|
8939
|
+
pixKey.clearValidators();
|
|
8940
|
+
}
|
|
8941
|
+
if (isEditMode) {
|
|
8942
|
+
pixKey.enable();
|
|
8943
|
+
}
|
|
8944
|
+
pixKey.updateValueAndValidity();
|
|
8945
|
+
}
|
|
8946
|
+
validatePercentageValid(listValue, form) {
|
|
8947
|
+
const percentage = form.get("percentage");
|
|
8948
|
+
this.maxValuePercentage = listValue.reduce((acc, val) => acc - val, 100.0);
|
|
8949
|
+
percentage.setValidators(Validators.compose([
|
|
8950
|
+
...this.initialValidatorOfPercentage,
|
|
8951
|
+
Validators.max(this.maxValuePercentage),
|
|
8952
|
+
]));
|
|
8953
|
+
percentage.updateValueAndValidity();
|
|
8954
|
+
}
|
|
8955
|
+
validateDuplicatePixKeyTypeBankAccount(listCompare) {
|
|
8956
|
+
return (control) => {
|
|
8957
|
+
const value = control.value;
|
|
8958
|
+
const isDuplicate = listCompare.some((field) => value &&
|
|
8959
|
+
field.pixKeyType.key === "BANK_ACCOUNT" &&
|
|
8960
|
+
value.key === "BANK_ACCOUNT");
|
|
8961
|
+
return isDuplicate ? { pixKeyTypeBankAccountDuplicate: true } : null;
|
|
8962
|
+
};
|
|
8963
|
+
}
|
|
8964
|
+
get paramsForm() {
|
|
8965
|
+
return this._paramsForm;
|
|
8966
|
+
}
|
|
8967
|
+
set paramsForm(value) {
|
|
8968
|
+
this._paramsForm = value;
|
|
8969
|
+
}
|
|
8970
|
+
get defaultCpfNumber() {
|
|
8971
|
+
return this._defaultCpfNumber;
|
|
8972
|
+
}
|
|
8973
|
+
set defaultCpfNumber(value) {
|
|
8974
|
+
this._defaultCpfNumber = value;
|
|
8975
|
+
}
|
|
8976
|
+
}
|
|
8977
|
+
|
|
8978
|
+
let HistoricalPixAccountService = class HistoricalPixAccountService {
|
|
8979
|
+
constructor(http) {
|
|
8980
|
+
this.http = http;
|
|
8981
|
+
}
|
|
8982
|
+
query(path, body, service = ServiceType.PAYROLL) {
|
|
8983
|
+
return this.http.query(path, body, service);
|
|
8984
|
+
}
|
|
8985
|
+
enumQuery() {
|
|
8986
|
+
const path = 'enumQuery';
|
|
8987
|
+
const body = {
|
|
8988
|
+
names: ['PixKeyType']
|
|
8989
|
+
};
|
|
8990
|
+
return this.http.query(path, body, ServiceType.PAYROLL);
|
|
8991
|
+
}
|
|
8992
|
+
};
|
|
8993
|
+
HistoricalPixAccountService.ctorParameters = () => [
|
|
8994
|
+
{ type: HttpClientService }
|
|
8995
|
+
];
|
|
8996
|
+
HistoricalPixAccountService = __decorate([
|
|
8997
|
+
Injectable()
|
|
8998
|
+
], HistoricalPixAccountService);
|
|
8999
|
+
|
|
9000
|
+
let HistoricalPixAccountComponent = class HistoricalPixAccountComponent extends HistoricakPixAccountBase {
|
|
9001
|
+
constructor(translateService, cd, formBuilder, sharedStateService, service) {
|
|
9002
|
+
super(formBuilder);
|
|
8526
9003
|
this.translateService = translateService;
|
|
8527
9004
|
this.cd = cd;
|
|
8528
|
-
this.
|
|
8529
|
-
this.
|
|
9005
|
+
this.sharedStateService = sharedStateService;
|
|
9006
|
+
this.service = service;
|
|
8530
9007
|
this.recordByRow = 1;
|
|
8531
9008
|
this.showDateChange = false;
|
|
8532
9009
|
this.isEditMode = false;
|
|
8533
9010
|
this.isViewMode = false;
|
|
8534
9011
|
this.withSideBar = true;
|
|
8535
|
-
this.defaultCpfNumber = null;
|
|
8536
9012
|
this.listDataReciever = [];
|
|
9013
|
+
this.addExistentHistoricData = [];
|
|
9014
|
+
this.getListPixAccount = [];
|
|
9015
|
+
this.isEditModeForSave = false;
|
|
8537
9016
|
this.isViewModeActive = new EventEmitter();
|
|
8538
9017
|
this.isEditModeActive = new EventEmitter();
|
|
8539
9018
|
this.isDeleteModeActive = new EventEmitter();
|
|
9019
|
+
this.isValidChangeForm = new EventEmitter();
|
|
8540
9020
|
this.listFromApp = [];
|
|
8541
9021
|
this.visibleChange = new EventEmitter();
|
|
8542
9022
|
this.ngUnsubscribe = new Subject();
|
|
@@ -8550,6 +9030,12 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8550
9030
|
this.loading = true;
|
|
8551
9031
|
this.listData = [];
|
|
8552
9032
|
this.listDataNoPage = [];
|
|
9033
|
+
this.showButtonView = true;
|
|
9034
|
+
this.showEditMode = false;
|
|
9035
|
+
this.hasRecordsPix = true;
|
|
9036
|
+
this.hideFields = this.sharedStateService.hideField$;
|
|
9037
|
+
this.suggestions = [];
|
|
9038
|
+
this.formGroupByRow = {};
|
|
8553
9039
|
this.cols = [
|
|
8554
9040
|
{
|
|
8555
9041
|
label: this.translateService.instant("hcm.payroll.employees_addition_pix_key_type"),
|
|
@@ -8563,6 +9049,10 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8563
9049
|
label: this.translateService.instant("hcm.payroll.historical_pix_account_label_percentage"),
|
|
8564
9050
|
field: "percentage",
|
|
8565
9051
|
},
|
|
9052
|
+
{
|
|
9053
|
+
label: this.translateService.instant("hcm.payroll.movimentation_generic_action"),
|
|
9054
|
+
field: "actions",
|
|
9055
|
+
}
|
|
8566
9056
|
];
|
|
8567
9057
|
this.actions = (rowData = {}, key) => {
|
|
8568
9058
|
return [
|
|
@@ -8600,7 +9090,7 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8600
9090
|
},
|
|
8601
9091
|
},
|
|
8602
9092
|
{
|
|
8603
|
-
visible: !this.isEditMode,
|
|
9093
|
+
visible: !this.isEditMode || this.showEditMode,
|
|
8604
9094
|
label: this.translateService.instant("hcm.payroll.delete"),
|
|
8605
9095
|
command: () => {
|
|
8606
9096
|
if (this.isAllowToDeleteHistorical) {
|
|
@@ -8622,11 +9112,35 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8622
9112
|
}
|
|
8623
9113
|
ngOnInit() {
|
|
8624
9114
|
this.formGroup.setControl(this.fieldFormGroup, this.historicalPixAccountList);
|
|
9115
|
+
this.sharedStateService.showButton$.subscribe((value) => {
|
|
9116
|
+
this.showButtonView = value;
|
|
9117
|
+
});
|
|
9118
|
+
this.sharedStateService.showEditMode$.subscribe((value) => {
|
|
9119
|
+
this.showEditMode = value;
|
|
9120
|
+
this.isEditModeForSave = value;
|
|
9121
|
+
});
|
|
9122
|
+
this.sharedStateService.activeValidatorsOnEditModalOpen$
|
|
9123
|
+
.subscribe(() => {
|
|
9124
|
+
Object.values(this.formGroupByRow).forEach(fg => {
|
|
9125
|
+
Object.values(fg.controls).forEach(control => {
|
|
9126
|
+
control.markAsTouched();
|
|
9127
|
+
control.updateValueAndValidity();
|
|
9128
|
+
});
|
|
9129
|
+
});
|
|
9130
|
+
this.emitFormValidity();
|
|
9131
|
+
});
|
|
8625
9132
|
}
|
|
8626
9133
|
ngOnChanges(changes) {
|
|
8627
9134
|
if (changes['listDataReciever'] && changes['listDataReciever'].currentValue) {
|
|
8628
9135
|
this.listFromApp = changes['listDataReciever'].currentValue;
|
|
8629
9136
|
}
|
|
9137
|
+
if (changes['addExistentHistoricData'] && changes['addExistentHistoricData'].currentValue) {
|
|
9138
|
+
this.getHistoricalPixAccountList();
|
|
9139
|
+
}
|
|
9140
|
+
if (changes['addExistentHistoricData'] && changes['addExistentHistoricData'].currentValue) {
|
|
9141
|
+
const newData = changes['addExistentHistoricData'].currentValue;
|
|
9142
|
+
this.rebuildFormGroupMap(newData);
|
|
9143
|
+
}
|
|
8630
9144
|
}
|
|
8631
9145
|
createFormGroup() {
|
|
8632
9146
|
this.historicalPixAccountList = this.formBuilder.group({
|
|
@@ -8640,6 +9154,96 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8640
9154
|
ngAfterViewInit() {
|
|
8641
9155
|
this.cd.detectChanges();
|
|
8642
9156
|
}
|
|
9157
|
+
emitFormValidity() {
|
|
9158
|
+
const allValid = Object.values(this.formGroupByRow).every(fg => {
|
|
9159
|
+
fg.updateValueAndValidity();
|
|
9160
|
+
return fg.valid;
|
|
9161
|
+
});
|
|
9162
|
+
this.isValidChangeForm.emit(allValid);
|
|
9163
|
+
}
|
|
9164
|
+
filterPixKeyType(event) {
|
|
9165
|
+
const query = event.query;
|
|
9166
|
+
this.service.enumQuery().subscribe((response) => {
|
|
9167
|
+
const pixKeyTypeEnum = response.results.find((result) => result.enumName === 'PixKeyType');
|
|
9168
|
+
if (pixKeyTypeEnum) {
|
|
9169
|
+
this.suggestions = pixKeyTypeEnum.items.filter((item) => item.value.toLowerCase().includes(query.toLowerCase()));
|
|
9170
|
+
}
|
|
9171
|
+
else {
|
|
9172
|
+
this.suggestions = [];
|
|
9173
|
+
}
|
|
9174
|
+
});
|
|
9175
|
+
}
|
|
9176
|
+
createPixRowFormGroup() {
|
|
9177
|
+
return this.formBuilder.group({
|
|
9178
|
+
pixKeyType: [null, Validators.required],
|
|
9179
|
+
pixKey: [null],
|
|
9180
|
+
percentage: [0, Validators.compose([
|
|
9181
|
+
...this.initialValidatorOfPercentage,
|
|
9182
|
+
Validators.max(this.maxValuePercentage),
|
|
9183
|
+
])]
|
|
9184
|
+
});
|
|
9185
|
+
}
|
|
9186
|
+
onPixKeyInput(event, index) {
|
|
9187
|
+
const inputValue = event.target.value;
|
|
9188
|
+
const inputRawValue = inputValue.replace(/\D/g, '');
|
|
9189
|
+
const form = this.formGroupByRow[index];
|
|
9190
|
+
const pixKeyControl = form.get('pixKey');
|
|
9191
|
+
if (pixKeyControl) {
|
|
9192
|
+
pixKeyControl.setValue(inputRawValue, { emitEvent: false });
|
|
9193
|
+
pixKeyControl.markAsDirty();
|
|
9194
|
+
pixKeyControl.updateValueAndValidity();
|
|
9195
|
+
}
|
|
9196
|
+
this.setPixKeyValidators(true, form);
|
|
9197
|
+
this.emitFormValidity();
|
|
9198
|
+
}
|
|
9199
|
+
onBlurPixCpfAndCnpj(index) {
|
|
9200
|
+
const form = this.formGroupByRow[index];
|
|
9201
|
+
const pixKeyControl = form.get('pixKey');
|
|
9202
|
+
const pixKeyTypeControl = form.get('pixKeyType');
|
|
9203
|
+
if (!pixKeyControl || !pixKeyTypeControl)
|
|
9204
|
+
return;
|
|
9205
|
+
const currentValue = pixKeyControl.value;
|
|
9206
|
+
const pixKeyType = pixKeyTypeControl.value.key;
|
|
9207
|
+
const rawValue = (currentValue || '').replace(/\D/g, '');
|
|
9208
|
+
pixKeyControl.setValue(rawValue, { emitEvent: false });
|
|
9209
|
+
if (pixKeyControl.valid) {
|
|
9210
|
+
form.patchValue({
|
|
9211
|
+
pixKeyFormatted: FormatUtilsService.getFormattedSubscriptionNumber(rawValue, pixKeyType)
|
|
9212
|
+
});
|
|
9213
|
+
}
|
|
9214
|
+
this.emitFormValidity();
|
|
9215
|
+
}
|
|
9216
|
+
getFormattedPixKey(type, value) {
|
|
9217
|
+
return FormatUtilsService.getFormattedSubscriptionNumber(value, type);
|
|
9218
|
+
}
|
|
9219
|
+
syncPixDataToParentForm() {
|
|
9220
|
+
if (!this.isEditModeForSave)
|
|
9221
|
+
return;
|
|
9222
|
+
const values = Object.values(this.formGroupByRow).map(fg => {
|
|
9223
|
+
const value = fg.getRawValue();
|
|
9224
|
+
const pixKeyType = value.pixKeyType.key;
|
|
9225
|
+
if (pixKeyType === 'CPF' || pixKeyType === 'CNPJ') {
|
|
9226
|
+
value.pixKey = (value.pixKey || '').replace(/[.\-\/]/g, '');
|
|
9227
|
+
}
|
|
9228
|
+
else if (pixKeyType === 'TELEPHONE') {
|
|
9229
|
+
value.pixKey = (value.pixKey || '').replace(/[()\s\-]/g, '');
|
|
9230
|
+
}
|
|
9231
|
+
return value;
|
|
9232
|
+
});
|
|
9233
|
+
this.formGroup
|
|
9234
|
+
.get(this.fieldFormGroup)
|
|
9235
|
+
.get('historicalPixAccountList')
|
|
9236
|
+
.setValue(values);
|
|
9237
|
+
this.emitFormValidity();
|
|
9238
|
+
}
|
|
9239
|
+
syncResetPixFormToParent() {
|
|
9240
|
+
this.formGroupByRow = {};
|
|
9241
|
+
this.historicalPixAccountList.reset();
|
|
9242
|
+
this.historicalPixAccountList.get('historicalPixAccountList').setValue([]);
|
|
9243
|
+
if (this.addExistentHistoricData.length) {
|
|
9244
|
+
this.rebuildFormGroupMap(this.addExistentHistoricData);
|
|
9245
|
+
}
|
|
9246
|
+
}
|
|
8643
9247
|
onLazyLoad(event) {
|
|
8644
9248
|
const first = event && event.first ? event.first : 0;
|
|
8645
9249
|
const rows = event && event.rows ? event.rows : this.recordByRow;
|
|
@@ -8666,6 +9270,7 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8666
9270
|
this.refreshCssInIE11();
|
|
8667
9271
|
}
|
|
8668
9272
|
this.loading = false;
|
|
9273
|
+
this.cd.detectChanges();
|
|
8669
9274
|
}
|
|
8670
9275
|
/**
|
|
8671
9276
|
* Um Bug de CSS que acontece nas linhas da tabela, que resolve só atualizando qualquer parte do CSS da pagina.
|
|
@@ -8683,12 +9288,67 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8683
9288
|
this.pixAccountItemInput = {};
|
|
8684
9289
|
this.visible = true;
|
|
8685
9290
|
}
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8689
|
-
|
|
8690
|
-
|
|
9291
|
+
addPix() {
|
|
9292
|
+
const newItem = {
|
|
9293
|
+
pixKeyType: {},
|
|
9294
|
+
pixKey: '',
|
|
9295
|
+
percentage: 0
|
|
9296
|
+
};
|
|
9297
|
+
const index = this.addExistentHistoricData.length;
|
|
9298
|
+
this.addExistentHistoricData = [
|
|
9299
|
+
...this.addExistentHistoricData,
|
|
9300
|
+
newItem
|
|
9301
|
+
];
|
|
9302
|
+
this.formGroupByRow[index] = this.createPixRowFormGroup();
|
|
9303
|
+
this.setValidatorsAccordingList(this.addExistentHistoricData, index, true);
|
|
9304
|
+
this.emitFormValidity();
|
|
9305
|
+
}
|
|
9306
|
+
deletePix(index) {
|
|
9307
|
+
if (this.dataListPix.editingCell) {
|
|
9308
|
+
this.dataListPix.editingCell = null;
|
|
9309
|
+
}
|
|
9310
|
+
this.addExistentHistoricData = this.addExistentHistoricData.filter((_, i) => i !== index);
|
|
9311
|
+
this.rebuildFormGroupMap(this.addExistentHistoricData);
|
|
9312
|
+
this.emitFormValidity();
|
|
9313
|
+
}
|
|
9314
|
+
rebuildFormGroupMap(data) {
|
|
9315
|
+
this.formGroupByRow = {};
|
|
9316
|
+
data.forEach((item, index) => {
|
|
9317
|
+
const form = this.createPixRowFormGroup();
|
|
9318
|
+
const pixKeyType = item.pixKeyType.key;
|
|
9319
|
+
const pixKeyRaw = item.pixKey;
|
|
9320
|
+
if (pixKeyType === 'CPF' || pixKeyType === 'CNPJ') {
|
|
9321
|
+
item.pixKey = FormatUtilsService.getFormattedSubscriptionNumber(pixKeyRaw, pixKeyType);
|
|
9322
|
+
}
|
|
9323
|
+
if (pixKeyType === 'TELEPHONE') {
|
|
9324
|
+
item.pixKey = FormatUtilsService.getFormattedTelephoneNumber(pixKeyRaw);
|
|
9325
|
+
}
|
|
9326
|
+
form.patchValue(item);
|
|
9327
|
+
this.formGroupByRow[index] = form;
|
|
9328
|
+
this.pixKeyType = pixKeyType;
|
|
9329
|
+
this.setPixKeyValidators(true, form);
|
|
9330
|
+
this.setValidatorsAccordingList(data, index, this.isEditMode);
|
|
9331
|
+
const listValues = data
|
|
9332
|
+
.filter((_, i) => i !== index)
|
|
9333
|
+
.map(row => row.percentage ? parseFloat(row.percentage) : 0);
|
|
9334
|
+
this.validatePercentageValid(listValues, form);
|
|
9335
|
+
});
|
|
9336
|
+
this.emitFormValidity();
|
|
9337
|
+
}
|
|
9338
|
+
onPixKeyTypeChange(item, index) {
|
|
9339
|
+
const form = this.formGroupByRow[index];
|
|
9340
|
+
this.onChangePixKeyType(item, form);
|
|
9341
|
+
this.addExistentHistoricData[index].pixKey = '';
|
|
9342
|
+
setTimeout(() => {
|
|
9343
|
+
if (this.dataListPix.editingCell) {
|
|
9344
|
+
this.dataListPix.editingCell = null;
|
|
9345
|
+
}
|
|
8691
9346
|
});
|
|
9347
|
+
this.cd.detectChanges();
|
|
9348
|
+
}
|
|
9349
|
+
onPixKeyTypeClear(index) {
|
|
9350
|
+
const form = this.formGroupByRow[index];
|
|
9351
|
+
this.onClearPixKeyType(form);
|
|
8692
9352
|
}
|
|
8693
9353
|
deleteAnnuityItem(index) {
|
|
8694
9354
|
let newlist = [...this.getHistoricalPixAccountList()];
|
|
@@ -8750,6 +9410,23 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8750
9410
|
this.msgTotalLimitByPercentage = null;
|
|
8751
9411
|
}
|
|
8752
9412
|
}
|
|
9413
|
+
onSyncValue(field, index) {
|
|
9414
|
+
if (this.formGroupByRow &&
|
|
9415
|
+
this.formGroupByRow[index] &&
|
|
9416
|
+
this.formGroupByRow[index].get(field)) {
|
|
9417
|
+
const control = this.formGroupByRow[index].get(field);
|
|
9418
|
+
const value = control.value;
|
|
9419
|
+
this.addExistentHistoricData[index][field] = value;
|
|
9420
|
+
control.markAsDirty();
|
|
9421
|
+
control.markAsTouched();
|
|
9422
|
+
control.updateValueAndValidity();
|
|
9423
|
+
const currentList = this.addExistentHistoricData.map((item, i) => {
|
|
9424
|
+
return i === index ? 0 : item.percentage;
|
|
9425
|
+
});
|
|
9426
|
+
this.validatePercentageValid(currentList, this.formGroupByRow[index]);
|
|
9427
|
+
this.emitFormValidity();
|
|
9428
|
+
}
|
|
9429
|
+
}
|
|
8753
9430
|
get scopedActions() {
|
|
8754
9431
|
return this.actions.bind(this);
|
|
8755
9432
|
}
|
|
@@ -8786,6 +9463,12 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8786
9463
|
get visible() {
|
|
8787
9464
|
return this._visible;
|
|
8788
9465
|
}
|
|
9466
|
+
set paramsForm(value) {
|
|
9467
|
+
this._paramsForm = value;
|
|
9468
|
+
}
|
|
9469
|
+
set defaultCpfNumber(value) {
|
|
9470
|
+
this._defaultCpfNumber = value;
|
|
9471
|
+
}
|
|
8789
9472
|
set visible(value) {
|
|
8790
9473
|
this._visible = value;
|
|
8791
9474
|
this.visibleChange.emit(this.visible);
|
|
@@ -8811,289 +9494,137 @@ let HistoricalPixAccountComponent = class HistoricalPixAccountComponent {
|
|
|
8811
9494
|
get isAllowToDeleteHistorical() {
|
|
8812
9495
|
return (this.permission["excluir"]);
|
|
8813
9496
|
}
|
|
8814
|
-
get isAllowToEditHistorical() {
|
|
8815
|
-
return (this.permission["editar"]);
|
|
8816
|
-
}
|
|
8817
|
-
get isAllowToViewHistorical() {
|
|
8818
|
-
return (this.permission["visualizar"]);
|
|
8819
|
-
}
|
|
8820
|
-
};
|
|
8821
|
-
HistoricalPixAccountComponent.ctorParameters = () => [
|
|
8822
|
-
{ type: TranslateService },
|
|
8823
|
-
{ type: ChangeDetectorRef },
|
|
8824
|
-
{ type: FormBuilder },
|
|
8825
|
-
{ type: MessageService }
|
|
8826
|
-
];
|
|
8827
|
-
__decorate([
|
|
8828
|
-
ViewChild(CustomFieldsComponent$1, { static: false })
|
|
8829
|
-
], HistoricalPixAccountComponent.prototype, "customFields", void 0);
|
|
8830
|
-
__decorate([
|
|
8831
|
-
Input()
|
|
8832
|
-
], HistoricalPixAccountComponent.prototype, "formGroup", void 0);
|
|
8833
|
-
__decorate([
|
|
8834
|
-
Input()
|
|
8835
|
-
], HistoricalPixAccountComponent.prototype, "fieldFormGroup", void 0);
|
|
8836
|
-
__decorate([
|
|
8837
|
-
Input()
|
|
8838
|
-
], HistoricalPixAccountComponent.prototype, "_dateChange", void 0);
|
|
8839
|
-
__decorate([
|
|
8840
|
-
Input()
|
|
8841
|
-
], HistoricalPixAccountComponent.prototype, "_displayDateChange", void 0);
|
|
8842
|
-
__decorate([
|
|
8843
|
-
Input()
|
|
8844
|
-
], HistoricalPixAccountComponent.prototype, "recordByRow", void 0);
|
|
8845
|
-
__decorate([
|
|
8846
|
-
Input()
|
|
8847
|
-
], HistoricalPixAccountComponent.prototype, "showDateChange", void 0);
|
|
8848
|
-
__decorate([
|
|
8849
|
-
Input()
|
|
8850
|
-
], HistoricalPixAccountComponent.prototype, "msgTooltipAdd", void 0);
|
|
8851
|
-
__decorate([
|
|
8852
|
-
Input()
|
|
8853
|
-
], HistoricalPixAccountComponent.prototype, "isEditMode", void 0);
|
|
8854
|
-
__decorate([
|
|
8855
|
-
Input()
|
|
8856
|
-
], HistoricalPixAccountComponent.prototype, "isViewMode", void 0);
|
|
8857
|
-
__decorate([
|
|
8858
|
-
Input()
|
|
8859
|
-
], HistoricalPixAccountComponent.prototype, "currency", void 0);
|
|
8860
|
-
__decorate([
|
|
8861
|
-
Input()
|
|
8862
|
-
], HistoricalPixAccountComponent.prototype, "customEntity", void 0);
|
|
8863
|
-
__decorate([
|
|
8864
|
-
Input()
|
|
8865
|
-
], HistoricalPixAccountComponent.prototype, "customService", void 0);
|
|
8866
|
-
__decorate([
|
|
8867
|
-
Input()
|
|
8868
|
-
], HistoricalPixAccountComponent.prototype, "withSideBar", void 0);
|
|
8869
|
-
__decorate([
|
|
8870
|
-
Input()
|
|
8871
|
-
], HistoricalPixAccountComponent.prototype, "paramsForm", void 0);
|
|
8872
|
-
__decorate([
|
|
8873
|
-
Input()
|
|
8874
|
-
], HistoricalPixAccountComponent.prototype, "defaultCpfNumber", void 0);
|
|
8875
|
-
__decorate([
|
|
8876
|
-
Input()
|
|
8877
|
-
], HistoricalPixAccountComponent.prototype, "permission", void 0);
|
|
8878
|
-
__decorate([
|
|
8879
|
-
Input()
|
|
8880
|
-
], HistoricalPixAccountComponent.prototype, "listDataReciever", void 0);
|
|
8881
|
-
__decorate([
|
|
8882
|
-
Output()
|
|
8883
|
-
], HistoricalPixAccountComponent.prototype, "isViewModeActive", void 0);
|
|
8884
|
-
__decorate([
|
|
8885
|
-
Output()
|
|
8886
|
-
], HistoricalPixAccountComponent.prototype, "isEditModeActive", void 0);
|
|
8887
|
-
__decorate([
|
|
8888
|
-
Output()
|
|
8889
|
-
], HistoricalPixAccountComponent.prototype, "isDeleteModeActive", void 0);
|
|
8890
|
-
__decorate([
|
|
8891
|
-
Input()
|
|
8892
|
-
], HistoricalPixAccountComponent.prototype, "dateChange", null);
|
|
8893
|
-
__decorate([
|
|
8894
|
-
Input()
|
|
8895
|
-
], HistoricalPixAccountComponent.prototype, "displayDateChange", null);
|
|
8896
|
-
__decorate([
|
|
8897
|
-
Input()
|
|
8898
|
-
], HistoricalPixAccountComponent.prototype, "addListData", null);
|
|
8899
|
-
__decorate([
|
|
8900
|
-
Input()
|
|
8901
|
-
], HistoricalPixAccountComponent.prototype, "visible", null);
|
|
8902
|
-
HistoricalPixAccountComponent = __decorate([
|
|
8903
|
-
Component({
|
|
8904
|
-
// tslint:disable-next-line:component-selector
|
|
8905
|
-
selector: "c-historical-pix-account",
|
|
8906
|
-
template: "<s-sidebar *ngIf=\"withSideBar\" [visible]=\"visible\" (visibleChange)=\"close()\"\n header=\"{{'hcm.payroll.historical_pix_account_title_form'|translate}}\">\n<pix-account [(visible)]=\"visible\"\n [isEditAndViewValue]=\"pixAccountItemInput\"\n [currency]=\"currency\"\n [customEntity]=\"customEntity\"\n [customService]=\"customService\"\n [getListPixAccount]=\"listDataNoPage\"\n [paramsForm]=\"paramsForm\"\n (pixAccountItemToList)=\"addItemInList($event)\"\n [defaultCpfNumber]=\"defaultCpfNumber\"></pix-account>\n</s-sidebar>\n\n<div *ngIf=\"!withSideBar\">\n <pix-account [(visible)]=\"visible\"\n [isEditAndViewValue]=\"pixAccountItemInput\"\n [currency]=\"currency\"\n [customEntity]=\"customEntity\"\n [customService]=\"customService\"\n [getListPixAccount]=\"listDataNoPage\"\n [withSideBar]=\"false\"\n [isViewMode]=\"isViewMode\"\n [paramsForm]=\"paramsForm\"\n (pixAccountItemToList)=\"addItemInList($event)\"\n [defaultCpfNumber]=\"defaultCpfNumber\"></pix-account>\n</div>\n\n<div class=\"ui-g-1\" *ngIf=\"withSideBar && !isEditMode\">\n <div class=\"form-group \">\n <s-button id=\"ta-addPayAnnuity\"\n [disabled]=\"getTooltipAndDisableButtonAdd || msgTotalLimitByPercentage\"\n (onClick)=\"add()\"\n [pTooltip]=\"getTooltipAndDisableButtonAdd || msgTotalLimitByPercentage\"\n tooltipPosition=\"top\"\n label=\"{{'hcm.payroll.historical_pix_account_add'|translate}}\"></s-button>\n </div>\n</div>\n<div class=\"ui-g-12\">\n <p-table\n id=\"table-annuity\"\n [value]=\"listData\"\n [columns]=\"cols\"\n (onLazyLoad)=\"onLazyLoad($event)\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n [totalRecords]=\"totalRecords\"\n [sortMode]=\"'multiple'\"\n *sLoadingState=\"loading\"\n [rows]=\"recordByRow\"\n dataKey=\"id\">\n <ng-template pTemplate=\"colgroup\" let-coumns>\n <colgroup>\n <col [ngClass]=\"'col-default-m'\">\n <col [ngClass]=\"'col-default-m'\">\n <col [ngClass]=\"'col-default-s'\">\n <col [ngClass]=\"'col-action'\">\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <!-- Cabe\u00E7alhos quando da table \u00E9 permitido ordenar as colunas -->\n <tr>\n <!-- Cabe\u00E7alhos das colunas da tabela -->\n <th\n [pSortableColumn]=\"'pixKeyType'\"\n [pTooltip]=\"'hcm.payroll.employees_addition_pix_key_type' | translate\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n >\n <div class=\"senior-header\" id=\"table-0\">\n <span\n id=\"table-annuity-s-0\">{{ 'hcm.payroll.employees_addition_pix_key_type' | translate }}</span>\n <p-sortIcon class=\"p-sorticon-status\"\n [field]=\"'hcm.payroll.employees_addition_pix_key_type' | translate\"></p-sortIcon>\n </div>\n </th>\n\n <th\n [pSortableColumn]=\"'pixKey'\"\n [pTooltip]=\"'hcm.payroll.employees_addition_pix_key' | translate\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n >\n <div class=\"senior-header\">\n <span>{{ 'hcm.payroll.employees_addition_pix_key' | translate }}</span>\n <p-sortIcon class=\"p-sorticon-status\"\n [field]=\"'hcm.payroll.employees_addition_pix_key' | translate\"></p-sortIcon>\n </div>\n </th>\n\n <th\n [pSortableColumn]=\"'percentage'\"\n [pTooltip]=\"'hcm.payroll.historical_pix_account_label_percentage' | translate\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n >\n <div class=\"senior-header\">\n <span>{{ 'hcm.payroll.historical_pix_account_label_percentage' | translate }}</span>\n <p-sortIcon class=\"p-sorticon-status\"\n [field]=\"'hcm.payroll.historical_pix_account_label_percentage' | translate\"></p-sortIcon>\n </div>\n </th>\n <!-- Cabe\u00E7alho da coluna de a\u00E7\u00F5es -->\n <th id=\"col-actions\"></th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-rowData let-key=\"rowIndex\">\n\n <tr [ngClass]=\"'row'+key\" [pSelectableRow]=\"rowData\">\n <td [pTooltip]=\"rowData?.pixKeyType.value\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ rowData?.pixKeyType.value }}</span>\n </td>\n\n <ng-container [ngSwitch]=\"rowData?.pixKeyType.key\">\n <td *ngSwitchCase=\"'TELEPHONE'\"\n [pTooltip]=\"getFormattedTelephoneNumber(rowData?.pixKey)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedTelephoneNumber(rowData?.pixKey) }}</span>\n </td>\n <td *ngSwitchCase=\"'CPF'\"\n [pTooltip]=\"getFormattedCpf(rowData?.pixKey)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedCpf(rowData?.pixKey) }}</span>\n </td>\n <td *ngSwitchCase=\"'CNPJ'\"\n [pTooltip]=\"getFormattedCnpj(rowData?.pixKey)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedCnpj(rowData?.pixKey) }}</span>\n </td>\n <td *ngSwitchDefault\n [pTooltip]=\"rowData?.pixKey\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ rowData?.pixKey }}</span>\n </td>\n </ng-container>\n <td [pTooltip]=\"getFormattedPercentage(rowData?.percentage)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedPercentage(rowData?.percentage) }}</span>\n </td>\n <td id=\"col-actions-{{key}}\" class=\"col-actions \"\n *ngIf=\"actions && actions(rowData, key)?.length\">\n <s-button id=\"table-admission-btn-actions-{{key}}\"\n *ngIf=\"actions(rowData, key).length > 1\" [label]=\"actionLabel\"\n priority=\"default\" [model]=\"scopedActions(rowData, key)\"\n [disabled]=\"false\" [auxiliary]=\"true\"></s-button>\n\n <s-button id=\"table-admission-btn-action-{{key}}\"\n *ngIf=\"actions(rowData, key).length <= 1\"\n [label]=\"scopedActions(rowData, key)[0].label\"\n priority=\"default\"\n (click)=\"scopedActions(rowData, key)[0].command()\"\n [disabled]=\"false\" [auxiliary]=\"true\"></s-button>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"emptymessage\" let-columns>\n <tr>\n <td [attr.colspan]=\"columns.length +2\">\n {{'hcm.payroll.admission_empty_message'|translate}}\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span *ngIf=\"totalRecords\">{{recordsMessage}}</span>\n </ng-template>\n </p-table>\n</div>\n",
|
|
8907
|
-
styles: [".refresh{width:100%!important}#table-annuity .col-default-s{width:10%}#table-annuity .col-default-m{width:12%}#table-annuity .col-default-l{width:16%}#table-annuity .col-action{width:10%}#table-annuity .icon-warning{text-align:center!important;color:#ff6d00c7!important}@media screen and (max-width:612px){#table-annuity .col-default-1,#table-annuity .col-default-2{width:16%}#table-annuity .col-default-3{width:26%}#table-annuity .col-icon{width:10%}#table-annuity .col-action{width:27%}}#main{display:-webkit-box;display:flex;height:100%;width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}#main form{height:100%}#main .footer{border-top:1px solid #ccc;padding-top:15px;margin-top:15px;flex-shrink:0;margin-bottom:-18px}#main .footer-s-border{padding-left:7px;flex-shrink:0;margin-bottom:-18px}"]
|
|
8908
|
-
})
|
|
8909
|
-
], HistoricalPixAccountComponent);
|
|
8910
|
-
|
|
8911
|
-
class GenericValidator {
|
|
8912
|
-
constructor() { }
|
|
8913
|
-
/**
|
|
8914
|
-
* Valida o CEI (Cadastro específico de INSS) digitado.
|
|
8915
|
-
*/
|
|
8916
|
-
static isValidCei(control) {
|
|
8917
|
-
const cei = control.value;
|
|
8918
|
-
if (!cei)
|
|
8919
|
-
return null;
|
|
8920
|
-
else if (cei.length != 11)
|
|
8921
|
-
return null;
|
|
8922
|
-
const multiplicadorBase = "3298765432";
|
|
8923
|
-
let total = 0;
|
|
8924
|
-
let resto = 0;
|
|
8925
|
-
let multiplicando = 0;
|
|
8926
|
-
let multiplicador = 0;
|
|
8927
|
-
if (cei.length !== 11 ||
|
|
8928
|
-
cei === "00000000000" ||
|
|
8929
|
-
cei === "11111111111" ||
|
|
8930
|
-
cei === "22222222222" ||
|
|
8931
|
-
cei === "33333333333" ||
|
|
8932
|
-
cei === "44444444444" ||
|
|
8933
|
-
cei === "55555555555" ||
|
|
8934
|
-
cei === "66666666666" ||
|
|
8935
|
-
cei === "77777777777" ||
|
|
8936
|
-
cei === "88888888888" ||
|
|
8937
|
-
cei === "99999999999")
|
|
8938
|
-
return { invalidCei: true };
|
|
8939
|
-
else {
|
|
8940
|
-
for (let i = 0; i < 10; i++) {
|
|
8941
|
-
multiplicando = parseInt(cei.substring(i, i + 1), 10);
|
|
8942
|
-
multiplicador = parseInt(multiplicadorBase.substring(i, i + 1), 10);
|
|
8943
|
-
total += multiplicando * multiplicador;
|
|
8944
|
-
}
|
|
8945
|
-
resto = 11 - (total % 11);
|
|
8946
|
-
resto = resto === 10 || resto === 11 ? 0 : resto;
|
|
8947
|
-
const digito = parseInt("" + cei.charAt(10), 10);
|
|
8948
|
-
return resto === digito ? null : { invalidCei: true };
|
|
8949
|
-
}
|
|
8950
|
-
}
|
|
8951
|
-
/**
|
|
8952
|
-
* Valida se o CPF é valido. Deve-se ser informado o cpf sem máscara.
|
|
8953
|
-
*/
|
|
8954
|
-
static isValidCpf(control) {
|
|
8955
|
-
const cpf = control.value;
|
|
8956
|
-
if (cpf) {
|
|
8957
|
-
let numbers, digits, sum, i, result, equalDigits;
|
|
8958
|
-
equalDigits = 1;
|
|
8959
|
-
if (cpf.length < 11) {
|
|
8960
|
-
return null;
|
|
8961
|
-
}
|
|
8962
|
-
for (i = 0; i < cpf.length - 1; i++) {
|
|
8963
|
-
if (cpf.charAt(i) !== cpf.charAt(i + 1)) {
|
|
8964
|
-
equalDigits = 0;
|
|
8965
|
-
break;
|
|
8966
|
-
}
|
|
8967
|
-
}
|
|
8968
|
-
if (!equalDigits) {
|
|
8969
|
-
numbers = cpf.substring(0, 9);
|
|
8970
|
-
digits = cpf.substring(9);
|
|
8971
|
-
sum = 0;
|
|
8972
|
-
for (i = 10; i > 1; i--) {
|
|
8973
|
-
sum += numbers.charAt(10 - i) * i;
|
|
8974
|
-
}
|
|
8975
|
-
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
8976
|
-
if (result !== Number(digits.charAt(0))) {
|
|
8977
|
-
return { cpfNotValid: true };
|
|
8978
|
-
}
|
|
8979
|
-
numbers = cpf.substring(0, 10);
|
|
8980
|
-
sum = 0;
|
|
8981
|
-
for (i = 11; i > 1; i--) {
|
|
8982
|
-
sum += numbers.charAt(11 - i) * i;
|
|
8983
|
-
}
|
|
8984
|
-
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
8985
|
-
if (result !== Number(digits.charAt(1))) {
|
|
8986
|
-
return { cpfNotValid: true };
|
|
8987
|
-
}
|
|
8988
|
-
return null;
|
|
8989
|
-
}
|
|
8990
|
-
else {
|
|
8991
|
-
return { cpfNotValid: true };
|
|
8992
|
-
}
|
|
8993
|
-
}
|
|
8994
|
-
return null;
|
|
8995
|
-
}
|
|
8996
|
-
/**
|
|
8997
|
-
* Valida se o CNPJ é valido. Deve-se ser informado o cpf sem máscara.
|
|
8998
|
-
*/
|
|
8999
|
-
static isValidCnpj(control) {
|
|
9000
|
-
let cnpj = control.value;
|
|
9001
|
-
if (cnpj) {
|
|
9002
|
-
let size, numbers, digits, sum, pos, result;
|
|
9003
|
-
cnpj = cnpj.replace(/[^\d]+/g, '');
|
|
9004
|
-
if (cnpj.length !== 14) {
|
|
9005
|
-
return null;
|
|
9006
|
-
}
|
|
9007
|
-
// Elimina CNPJs invalidos conhecidos
|
|
9008
|
-
if (cnpj === '00000000000000' ||
|
|
9009
|
-
cnpj === '11111111111111' ||
|
|
9010
|
-
cnpj === '22222222222222' ||
|
|
9011
|
-
cnpj === '33333333333333' ||
|
|
9012
|
-
cnpj === '44444444444444' ||
|
|
9013
|
-
cnpj === '55555555555555' ||
|
|
9014
|
-
cnpj === '66666666666666' ||
|
|
9015
|
-
cnpj === '77777777777777' ||
|
|
9016
|
-
cnpj === '88888888888888' ||
|
|
9017
|
-
cnpj === '99999999999999') {
|
|
9018
|
-
return { cnpjNotValid: true };
|
|
9019
|
-
}
|
|
9020
|
-
// Valida DVs
|
|
9021
|
-
size = cnpj.length - 2;
|
|
9022
|
-
numbers = cnpj.substring(0, size);
|
|
9023
|
-
digits = cnpj.substring(size);
|
|
9024
|
-
sum = 0;
|
|
9025
|
-
pos = size - 7;
|
|
9026
|
-
for (let i = size; i >= 1; i--) {
|
|
9027
|
-
sum += numbers.charAt(size - i) * pos--;
|
|
9028
|
-
if (pos < 2) {
|
|
9029
|
-
pos = 9;
|
|
9030
|
-
}
|
|
9031
|
-
}
|
|
9032
|
-
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
9033
|
-
if (result !== Number(digits.charAt(0))) {
|
|
9034
|
-
return { cnpjNotValid: true };
|
|
9035
|
-
}
|
|
9036
|
-
size = size + 1;
|
|
9037
|
-
numbers = cnpj.substring(0, size);
|
|
9038
|
-
sum = 0;
|
|
9039
|
-
pos = size - 7;
|
|
9040
|
-
for (let i = size; i >= 1; i--) {
|
|
9041
|
-
sum += numbers.charAt(size - i) * pos--;
|
|
9042
|
-
if (pos < 2) {
|
|
9043
|
-
pos = 9;
|
|
9044
|
-
}
|
|
9045
|
-
}
|
|
9046
|
-
result = sum % 11 < 2 ? 0 : 11 - (sum % 11);
|
|
9047
|
-
if (result !== Number(digits.charAt(1))) {
|
|
9048
|
-
return { cnpjNotValid: true };
|
|
9049
|
-
}
|
|
9050
|
-
return null;
|
|
9051
|
-
}
|
|
9052
|
-
return null;
|
|
9053
|
-
}
|
|
9054
|
-
/**
|
|
9055
|
-
* Válida o número de telefone da chave PIX.
|
|
9056
|
-
*/
|
|
9057
|
-
static isValidPhoneNumber(control) {
|
|
9058
|
-
let cellPhoneKey = control.value || '';
|
|
9059
|
-
cellPhoneKey = cellPhoneKey.replace(/[\s()-]/g, '');
|
|
9060
|
-
const regexNumberTelephone = /^[1-9][\d]{1,2}\d{8,10}$/;
|
|
9061
|
-
const isValidNumberTelephone = regexNumberTelephone.test(cellPhoneKey);
|
|
9062
|
-
return isValidNumberTelephone ? null : { invalidPhoneNumber: true };
|
|
9497
|
+
get isAllowToEditHistorical() {
|
|
9498
|
+
return (this.permission["editar"]);
|
|
9063
9499
|
}
|
|
9064
|
-
|
|
9065
|
-
|
|
9066
|
-
*/
|
|
9067
|
-
static isValidEmail(control) {
|
|
9068
|
-
const emailKey = control.value;
|
|
9069
|
-
const regexValidEmail = /^[\w-\.]+@[\w-]+(\.[\w-]{2,4}){1,2}$/;
|
|
9070
|
-
const isValidEmail = regexValidEmail.test(emailKey);
|
|
9071
|
-
return isValidEmail ? null : { invalidEmail: true };
|
|
9500
|
+
get isAllowToViewHistorical() {
|
|
9501
|
+
return (this.permission["visualizar"]);
|
|
9072
9502
|
}
|
|
9073
|
-
}
|
|
9503
|
+
};
|
|
9504
|
+
HistoricalPixAccountComponent.ctorParameters = () => [
|
|
9505
|
+
{ type: TranslateService },
|
|
9506
|
+
{ type: ChangeDetectorRef },
|
|
9507
|
+
{ type: FormBuilder },
|
|
9508
|
+
{ type: SharedStateService },
|
|
9509
|
+
{ type: HistoricalPixAccountService }
|
|
9510
|
+
];
|
|
9511
|
+
__decorate([
|
|
9512
|
+
ViewChild(CustomFieldsComponent$1, { static: false })
|
|
9513
|
+
], HistoricalPixAccountComponent.prototype, "customFields", void 0);
|
|
9514
|
+
__decorate([
|
|
9515
|
+
ViewChild('dataListPix', { static: false })
|
|
9516
|
+
], HistoricalPixAccountComponent.prototype, "dataListPix", void 0);
|
|
9517
|
+
__decorate([
|
|
9518
|
+
Input()
|
|
9519
|
+
], HistoricalPixAccountComponent.prototype, "formGroup", void 0);
|
|
9520
|
+
__decorate([
|
|
9521
|
+
Input()
|
|
9522
|
+
], HistoricalPixAccountComponent.prototype, "fieldFormGroup", void 0);
|
|
9523
|
+
__decorate([
|
|
9524
|
+
Input()
|
|
9525
|
+
], HistoricalPixAccountComponent.prototype, "_dateChange", void 0);
|
|
9526
|
+
__decorate([
|
|
9527
|
+
Input()
|
|
9528
|
+
], HistoricalPixAccountComponent.prototype, "_displayDateChange", void 0);
|
|
9529
|
+
__decorate([
|
|
9530
|
+
Input()
|
|
9531
|
+
], HistoricalPixAccountComponent.prototype, "recordByRow", void 0);
|
|
9532
|
+
__decorate([
|
|
9533
|
+
Input()
|
|
9534
|
+
], HistoricalPixAccountComponent.prototype, "showDateChange", void 0);
|
|
9535
|
+
__decorate([
|
|
9536
|
+
Input()
|
|
9537
|
+
], HistoricalPixAccountComponent.prototype, "msgTooltipAdd", void 0);
|
|
9538
|
+
__decorate([
|
|
9539
|
+
Input()
|
|
9540
|
+
], HistoricalPixAccountComponent.prototype, "isEditMode", void 0);
|
|
9541
|
+
__decorate([
|
|
9542
|
+
Input()
|
|
9543
|
+
], HistoricalPixAccountComponent.prototype, "isViewMode", void 0);
|
|
9544
|
+
__decorate([
|
|
9545
|
+
Input()
|
|
9546
|
+
], HistoricalPixAccountComponent.prototype, "currency", void 0);
|
|
9547
|
+
__decorate([
|
|
9548
|
+
Input()
|
|
9549
|
+
], HistoricalPixAccountComponent.prototype, "customEntity", void 0);
|
|
9550
|
+
__decorate([
|
|
9551
|
+
Input()
|
|
9552
|
+
], HistoricalPixAccountComponent.prototype, "customService", void 0);
|
|
9553
|
+
__decorate([
|
|
9554
|
+
Input()
|
|
9555
|
+
], HistoricalPixAccountComponent.prototype, "withSideBar", void 0);
|
|
9556
|
+
__decorate([
|
|
9557
|
+
Input()
|
|
9558
|
+
], HistoricalPixAccountComponent.prototype, "permission", void 0);
|
|
9559
|
+
__decorate([
|
|
9560
|
+
Input()
|
|
9561
|
+
], HistoricalPixAccountComponent.prototype, "listDataReciever", void 0);
|
|
9562
|
+
__decorate([
|
|
9563
|
+
Input()
|
|
9564
|
+
], HistoricalPixAccountComponent.prototype, "addExistentHistoricData", void 0);
|
|
9565
|
+
__decorate([
|
|
9566
|
+
Input()
|
|
9567
|
+
], HistoricalPixAccountComponent.prototype, "getListPixAccount", void 0);
|
|
9568
|
+
__decorate([
|
|
9569
|
+
Input()
|
|
9570
|
+
], HistoricalPixAccountComponent.prototype, "isEditModeForSave", void 0);
|
|
9571
|
+
__decorate([
|
|
9572
|
+
Output()
|
|
9573
|
+
], HistoricalPixAccountComponent.prototype, "isViewModeActive", void 0);
|
|
9574
|
+
__decorate([
|
|
9575
|
+
Output()
|
|
9576
|
+
], HistoricalPixAccountComponent.prototype, "isEditModeActive", void 0);
|
|
9577
|
+
__decorate([
|
|
9578
|
+
Output()
|
|
9579
|
+
], HistoricalPixAccountComponent.prototype, "isDeleteModeActive", void 0);
|
|
9580
|
+
__decorate([
|
|
9581
|
+
Output()
|
|
9582
|
+
], HistoricalPixAccountComponent.prototype, "isValidChangeForm", void 0);
|
|
9583
|
+
__decorate([
|
|
9584
|
+
Input()
|
|
9585
|
+
], HistoricalPixAccountComponent.prototype, "dateChange", null);
|
|
9586
|
+
__decorate([
|
|
9587
|
+
Input()
|
|
9588
|
+
], HistoricalPixAccountComponent.prototype, "displayDateChange", null);
|
|
9589
|
+
__decorate([
|
|
9590
|
+
Input()
|
|
9591
|
+
], HistoricalPixAccountComponent.prototype, "addListData", null);
|
|
9592
|
+
__decorate([
|
|
9593
|
+
Input()
|
|
9594
|
+
], HistoricalPixAccountComponent.prototype, "visible", null);
|
|
9595
|
+
__decorate([
|
|
9596
|
+
Input()
|
|
9597
|
+
], HistoricalPixAccountComponent.prototype, "paramsForm", null);
|
|
9598
|
+
__decorate([
|
|
9599
|
+
Input()
|
|
9600
|
+
], HistoricalPixAccountComponent.prototype, "defaultCpfNumber", null);
|
|
9601
|
+
HistoricalPixAccountComponent = __decorate([
|
|
9602
|
+
Component({
|
|
9603
|
+
// tslint:disable-next-line:component-selector
|
|
9604
|
+
selector: "c-historical-pix-account",
|
|
9605
|
+
template: "<s-sidebar *ngIf=\"withSideBar\" [visible]=\"visible\" (visibleChange)=\"close()\"\n header=\"{{'hcm.payroll.historical_pix_account_title_form'|translate}}\">\n<pix-account [(visible)]=\"visible\"\n [isEditAndViewValue]=\"pixAccountItemInput\"\n [currency]=\"currency\"\n [customEntity]=\"customEntity\"\n [customService]=\"customService\"\n [getListPixAccount]=\"listDataNoPage\"\n [paramsForm]=\"paramsForm\"\n (pixAccountItemToList)=\"addItemInList($event)\"\n [defaultCpfNumber]=\"defaultCpfNumber\"></pix-account>\n</s-sidebar>\n\n<div *ngIf=\"!withSideBar\">\n <pix-account [(visible)]=\"visible\"\n [isEditAndViewValue]=\"pixAccountItemInput\"\n [currency]=\"currency\"\n [customEntity]=\"customEntity\"\n [customService]=\"customService\"\n [getListPixAccount]=\"listDataNoPage\"\n [withSideBar]=\"false\"\n [isViewMode]=\"isViewMode\"\n [paramsForm]=\"paramsForm\"\n (pixAccountItemToList)=\"addItemInList($event)\"\n [defaultCpfNumber]=\"defaultCpfNumber\"></pix-account>\n</div>\n\n<div class=\"ui-g-1\" *ngIf=\"withSideBar && !isEditMode\">\n <div class=\"form-group \">\n <s-button id=\"ta-addPayAnnuity\"\n [disabled]=\"getTooltipAndDisableButtonAdd || msgTotalLimitByPercentage\"\n (onClick)=\"add()\"\n [pTooltip]=\"getTooltipAndDisableButtonAdd || msgTotalLimitByPercentage\"\n tooltipPosition=\"top\"\n label=\"{{'hcm.payroll.historical_pix_account_add'|translate}}\"></s-button>\n </div>\n</div>\n<div *ngIf=\"!showEditMode || !(hideFields | async)\" class=\"ui-g-12\">\n <p-table\n id=\"table-annuity\"\n [value]=\"listData\"\n [columns]=\"cols\"\n (onLazyLoad)=\"onLazyLoad($event)\"\n [lazy]=\"true\"\n [scrollable]=\"true\"\n [paginator]=\"true\"\n [totalRecords]=\"totalRecords\"\n [sortMode]=\"'multiple'\"\n *sLoadingState=\"loading\"\n [rows]=\"recordByRow\"\n dataKey=\"id\">\n <ng-template pTemplate=\"colgroup\" let-coumns>\n <colgroup>\n <col [ngClass]=\"'col-default-m'\">\n <col [ngClass]=\"'col-default-m'\">\n <col [ngClass]=\"'col-default-s'\">\n <col *ngIf=\"showButtonView\" [ngClass]=\"'col-action'\">\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <!-- Cabe\u00E7alhos quando da table \u00E9 permitido ordenar as colunas -->\n <tr>\n <!-- Cabe\u00E7alhos das colunas da tabela -->\n <th\n [pSortableColumn]=\"'pixKeyType'\"\n [pTooltip]=\"'hcm.payroll.employees_addition_pix_key_type' | translate\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n >\n <div class=\"senior-header\" id=\"table-0\">\n <span\n id=\"table-annuity-s-0\">{{ 'hcm.payroll.employees_addition_pix_key_type' | translate }}</span>\n <p-sortIcon class=\"p-sorticon-status\"\n [field]=\"'hcm.payroll.employees_addition_pix_key_type' | translate\"></p-sortIcon>\n </div>\n </th>\n\n <th\n [pSortableColumn]=\"'pixKey'\"\n [pTooltip]=\"'hcm.payroll.employees_addition_pix_key' | translate\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n >\n <div class=\"senior-header\">\n <span>{{ 'hcm.payroll.employees_addition_pix_key' | translate }}</span>\n <p-sortIcon class=\"p-sorticon-status\"\n [field]=\"'hcm.payroll.employees_addition_pix_key' | translate\"></p-sortIcon>\n </div>\n </th>\n\n <th\n [pSortableColumn]=\"'percentage'\"\n [pTooltip]=\"'hcm.payroll.historical_pix_account_label_percentage' | translate\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n >\n <div class=\"senior-header\">\n <span>{{ 'hcm.payroll.historical_pix_account_label_percentage' | translate }}</span>\n <p-sortIcon class=\"p-sorticon-status\"\n [field]=\"'hcm.payroll.historical_pix_account_label_percentage' | translate\"></p-sortIcon>\n </div>\n </th>\n <!-- Cabe\u00E7alho da coluna de a\u00E7\u00F5es -->\n <th *ngIf=\"showButtonView\" id=\"col-actions\"></th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-rowData let-key=\"rowIndex\">\n\n <tr [ngClass]=\"'row'+key\" [pSelectableRow]=\"rowData\">\n <td [pTooltip]=\"rowData?.pixKeyType.value\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ rowData?.pixKeyType.value }}</span>\n </td>\n\n <ng-container [ngSwitch]=\"rowData?.pixKeyType.key\">\n <td *ngSwitchCase=\"'TELEPHONE'\"\n [pTooltip]=\"getFormattedTelephoneNumber(rowData?.pixKey)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedTelephoneNumber(rowData?.pixKey) }}</span>\n </td>\n <td *ngSwitchCase=\"'CPF'\"\n [pTooltip]=\"getFormattedCpf(rowData?.pixKey)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedCpf(rowData?.pixKey) }}</span>\n </td>\n <td *ngSwitchCase=\"'CNPJ'\"\n [pTooltip]=\"getFormattedCnpj(rowData?.pixKey)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedCnpj(rowData?.pixKey) }}</span>\n </td>\n <td *ngSwitchDefault\n [pTooltip]=\"rowData?.pixKey\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ rowData?.pixKey }}</span>\n </td>\n </ng-container>\n <td [pTooltip]=\"getFormattedPercentage(rowData?.percentage)\" tooltipPosition=\"top\"\n showDelay=\"500\">\n <span>{{ getFormattedPercentage(rowData?.percentage) }}</span>\n </td>\n <td id=\"col-actions-{{key}}\" class=\"col-actions \"\n *ngIf=\"actions && actions(rowData, key)?.length && showButtonView\">\n <s-button id=\"table-admission-btn-actions-{{key}}\"\n *ngIf=\"!isViewMode && actions(rowData, key).length > 1\" [label]=\"actionLabel\"\n priority=\"default\" [model]=\"scopedActions(rowData, key)\"\n [disabled]=\"false\" [auxiliary]=\"true\"></s-button>\n\n <s-button id=\"table-admission-btn-action-{{key}}\"\n *ngIf=\"!isViewMode && actions(rowData, key).length <= 1\"\n [label]=\"scopedActions(rowData, key)[0].label\"\n priority=\"default\"\n (click)=\"scopedActions(rowData, key)[0].command()\"\n [disabled]=\"false\" [auxiliary]=\"true\"></s-button>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"emptymessage\" let-columns>\n <tr>\n <td [attr.colspan]=\"columns.length +2\">\n {{'hcm.payroll.admission_empty_message'|translate}}\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span *ngIf=\"totalRecords\">{{recordsMessage}}</span>\n </ng-template>\n </p-table>\n</div>\n\n<!-- Template exlusivo para edi\u00E7\u00E3o de pix via modal-->\n<div *ngIf=\"showEditMode && (hideFields | async)\" class=\"ui-g-12\">\n <!-- Bot\u00E3o Adicionar -->\n <div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button\n id=\"btn-save\"\n label=\"{{ 'hcm.payroll.historical_pix_account_add' | translate}}\"\n priority=\"primary\"\n (onClick)=\"addPix()\">\n </s-button>\n </div>\n </div>\n\n <!-- Tabela -->\n <p-table #dataListPix sortField=\"percentage\"\n [columns]=\"cols\"\n [value]=\"addExistentHistoricData\"\n [pageLinks]=\"3\"\n [paginator]=\"true\"\n [responsive]=\"true\"\n [rows]=\"10\"\n [resetPageOnSort]=\"false\"\n [tableStyle]=\"{'margin-top': '2rem'}\"\n [customSort]=\"true\">\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of cols\">\n {{ col.label }}\n </th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-item let-rowIndex=\"rowIndex\">\n <ng-container *ngIf=\"formGroupByRow[rowIndex]\" [formGroup]=\"formGroupByRow[rowIndex]\">\n <tr>\n <!-- Tipo de Chave -->\n <td class=\"ui-md-6 ui-sm-12 required\"\n [pEditableColumn]=\"item.pixKeyType\" pEditableColumnField=\"pixKeyType\">\n <p-cellEditor>\n <ng-template pTemplate=\"input\">\n <div style=\"width: 100%; position: relative;\">\n <p-autoComplete\n [suggestions]=\"suggestions\"\n (completeMethod)=\"filterPixKeyType($event)\"\n formControlName=\"pixKeyType\"\n [dropdown]=\"true\"\n (onSelect)=\"onPixKeyTypeChange($event, rowIndex)\"\n (onClear)=\"onPixKeyTypeClear(rowIndex)\"\n (ngModelChange)=\"onSyncValue('pixKeyType', rowIndex)\"\n field=\"value\"\n placeholder=\"{{'hcm.payroll.select' | translate}}\"\n appendTo=\"body\"\n [panelStyle]=\"{ maxWidth: '300px', width: '100%' }\"\n [inputStyle]=\"{ width: '100%' }\"\n ></p-autoComplete>\n\n <s-control-errors [control]=\"formGroupByRow[rowIndex]?.get('pixKeyType')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n pixKeyTypeBankAccountDuplicate: 'hcm.payroll.historical_pix_key_type_bank_account_duplicate' | translate\n }\">\n </s-control-errors>\n </div>\n </ng-template>\n <ng-template pTemplate=\"output\">\n {{ item.pixKeyType?.value }}\n </ng-template>\n </p-cellEditor>\n </td>\n\n <!-- Chave Pix -->\n <td class=\"ui-md-6 ui-sm-12 required\"\n [pEditableColumn]=\"item.pixKey\" pEditableColumnField=\"pixKey\"\n [ngClass]=\"{'required': item.pixKeyType.key !== 'BANK_ACCOUNT',\n 'disabled': item.pixKeyType && item.pixKeyType.key === 'BANK_ACCOUNT'\n }\">\n <p-cellEditor>\n <ng-template pTemplate=\"input\">\n <ng-container [ngSwitch]=\"item.pixKeyType.key\">\n <input *ngSwitchCase=\"'TELEPHONE'\"\n only-number\n pInputText\n type=\"text\"\n formControlName=\"pixKey\"\n (keyup)=\"phoneMask($event)\"\n (ngModelChange)=\"onSyncValue('pixKey', rowIndex)\"\n maxlength=\"15\"\n placeholder=\"(__) ____-____\" />\n\n <input *ngSwitchCase=\"'CPF'\"\n type=\"text\"\n pInputText\n formControlName=\"pixKey\"\n maxlength=\"14\"\n placeholder=\"___.___.___-__\"\n (input)=\"onPixKeyInput($event, rowIndex)\"\n (blur)=\"onBlurPixCpfAndCnpj(rowIndex)\"\n (keyup)=\"cpfMask($event)\"\n (ngModelChange)=\"onSyncValue('pixKey', rowIndex)\" />\n\n <input *ngSwitchCase=\"'CNPJ'\"\n type=\"text\"\n pInputText\n formControlName=\"pixKey\"\n maxlength=\"18\"\n placeholder=\"___.___.___/____-__\"\n (input)=\"onPixKeyInput($event, rowIndex)\"\n (blur)=\"onBlurPixCpfAndCnpj(rowIndex)\"\n (keyup)=\"cnpjMask($event)\"\n (ngModelChange)=\"onSyncValue('pixKey', rowIndex)\" />\n\n <input *ngSwitchCase=\"'EMAIL'\"\n pInputText\n type=\"email\"\n formControlName=\"pixKey\"\n (ngModelChange)=\"onSyncValue('pixKey', rowIndex)\"\n placeholder=\"{{ 'hcm.payroll.employees_addition_email' | translate }}\" />\n\n <input *ngSwitchCase=\"'BANK_ACCOUNT'\"\n pInputText\n formControlName=\"pixKey\"\n (ngModelChange)=\"onSyncValue('pixKey', rowIndex)\"\n [disabled]=\"true\" />\n\n <input *ngSwitchDefault\n pInputText\n type=\"text\"\n formControlName=\"pixKey\"\n (ngModelChange)=\"onSyncValue('pixKey', rowIndex)\"\n maxlength=\"100\" />\n </ng-container>\n\n <s-control-errors *ngIf=\"isShowPixKeyFieldValidatorMessage\"\n [control]=\"formGroupByRow[rowIndex]?.get('pixKey')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n invalidPhoneNumber: 'hcm.payroll.employees_addition_invalid_phone_number' | translate: { value: formGroupByRow[rowIndex]?.get('pixKey').value },\n invalidEmail: 'hcm.payroll.employees_addition_email_invalid' | translate,\n cpfNotValid: 'hcm.payroll.employees_addition_cpf_error' | translate,\n cnpjNotValid: 'hcm.payroll.employees_addition_cnpj_error' | translate\n }\">\n </s-control-errors>\n </ng-template>\n <ng-template pTemplate=\"output\">\n {{ getFormattedPixKey(item.pixKeyType?.key, item.pixKey) }}\n </ng-template>\n </p-cellEditor>\n </td>\n\n <!-- Percentual -->\n <td class=\"ui-md-6 ui-sm-12 required\"\n [pEditableColumn]=\"item.percentage\" pEditableColumnField=\"percentage\">\n <p-cellEditor>\n <ng-template pTemplate=\"input\">\n <input\n pInputText type=\"number\"\n formControlName=\"percentage\"\n (ngModelChange)=\"onSyncValue('percentage', rowIndex)\"\n >\n <s-control-errors\n [control]=\"formGroupByRow[rowIndex]?.get('percentage')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n maxlength: 'hcm.payroll.error_max_length' | translate: { value: '6' },\n max: 'hcm.payroll.error_max_value_number' | translate: { value: maxValuePercentage },\n min: 'hcm.payroll.error_min_value_number' | translate: { value: '0,01' }\n }\">\n </s-control-errors>\n </ng-template>\n <ng-template pTemplate=\"output\">\n {{ item.percentage?.toFixed(2).replace('.', ',') }}%\n </ng-template>\n </p-cellEditor>\n </td>\n\n <!-- Bot\u00E3o de excluir -->\n <td>\n <s-button\n id=\"btn-delete\"\n label=\"{{ 'hcm.payroll.delete' | translate }}\"\n priority=\"default\"\n (onClick)=\"deletePix(rowIndex)\">\n </s-button>\n </td>\n </tr>\n </ng-container>\n </ng-template>\n </p-table>\n</div>\n",
|
|
9606
|
+
styles: [".refresh{width:100%!important}#table-annuity .col-default-s{width:10%}#table-annuity .col-default-m{width:12%}#table-annuity .col-default-l{width:16%}#table-annuity .col-action{width:10%}#table-annuity .icon-warning{text-align:center!important;color:#ff6d00c7!important}@media screen and (max-width:612px){#table-annuity .col-default-1,#table-annuity .col-default-2{width:16%}#table-annuity .col-default-3{width:26%}#table-annuity .col-icon{width:10%}#table-annuity .col-action{width:27%}}#main{display:-webkit-box;display:flex;height:100%;width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}#main form{height:100%}#main .footer{border-top:1px solid #ccc;padding-top:15px;margin-top:15px;flex-shrink:0;margin-bottom:-18px}#main .footer-s-border{padding-left:7px;flex-shrink:0;margin-bottom:-18px}"]
|
|
9607
|
+
})
|
|
9608
|
+
], HistoricalPixAccountComponent);
|
|
9074
9609
|
|
|
9075
|
-
let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent {
|
|
9076
|
-
constructor(formBuilder, cd) {
|
|
9077
|
-
|
|
9610
|
+
let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent extends HistoricakPixAccountBase {
|
|
9611
|
+
constructor(formBuilder, cd, sharedStateService) {
|
|
9612
|
+
super(formBuilder);
|
|
9078
9613
|
this.cd = cd;
|
|
9614
|
+
this.sharedStateService = sharedStateService;
|
|
9079
9615
|
this.withSideBar = true;
|
|
9080
9616
|
this.isEditMode = false;
|
|
9081
|
-
this.paramsForm = new FormGroup({});
|
|
9082
|
-
this.defaultCpfNumber = null;
|
|
9083
9617
|
this.visibleChange = new EventEmitter();
|
|
9084
9618
|
this.pixAccountItemToList = new EventEmitter();
|
|
9085
9619
|
this.ngUnsubscribe = new Subject();
|
|
9086
|
-
this.initialValidatorOfPercentage = [Validators.required, Validators.min(0.01)];
|
|
9087
9620
|
this.labelBtnAdd = "hcm.payroll.employees_add";
|
|
9088
|
-
this.maxValuePercentage = 100.00;
|
|
9089
9621
|
this.visibleBtnSave = true;
|
|
9090
9622
|
this.isView = false;
|
|
9091
9623
|
this.isShowPixKeyFieldValidatorMessage = false;
|
|
9092
|
-
this.
|
|
9624
|
+
this.hideFields = this.sharedStateService.hideField$;
|
|
9093
9625
|
this.registerSubjects();
|
|
9094
9626
|
}
|
|
9095
|
-
ngOnInit() {
|
|
9096
|
-
}
|
|
9627
|
+
ngOnInit() { }
|
|
9097
9628
|
ngAfterViewInit() {
|
|
9098
9629
|
this.cd.detectChanges();
|
|
9099
9630
|
}
|
|
@@ -9101,39 +9632,7 @@ let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent
|
|
|
9101
9632
|
this.ngUnsubscribe.next(true);
|
|
9102
9633
|
this.ngUnsubscribe.unsubscribe();
|
|
9103
9634
|
}
|
|
9104
|
-
registerSubjects() {
|
|
9105
|
-
}
|
|
9106
|
-
createFormGroup() {
|
|
9107
|
-
this.pixAccountFormGroup = this.formBuilder.group({
|
|
9108
|
-
id: this.formBuilder.control(null),
|
|
9109
|
-
index: this.formBuilder.control(null),
|
|
9110
|
-
employee: this.formBuilder.control({ value: { tableId: null }, disabled: true }),
|
|
9111
|
-
dateChange: this.formBuilder.control(null),
|
|
9112
|
-
pixKeyType: this.formBuilder.control(null, Validators.required),
|
|
9113
|
-
pixKey: this.formBuilder.control(null),
|
|
9114
|
-
percentage: this.formBuilder.control(null, Validators.compose([
|
|
9115
|
-
...this.initialValidatorOfPercentage,
|
|
9116
|
-
Validators.max(this.maxValuePercentage),
|
|
9117
|
-
])),
|
|
9118
|
-
externalId: this.formBuilder.control(null),
|
|
9119
|
-
customFields: this.formBuilder.control(null),
|
|
9120
|
-
});
|
|
9121
|
-
}
|
|
9122
|
-
onChangePixKeyType(item) {
|
|
9123
|
-
if (item.key) {
|
|
9124
|
-
this.pixKeyType = item.key;
|
|
9125
|
-
this.isShowPixKeyFieldValidatorMessage = true;
|
|
9126
|
-
this.pixAccountFormGroup.get("pixKey").reset();
|
|
9127
|
-
this.setPixKeyValidators(true);
|
|
9128
|
-
if (item.key === "CPF") {
|
|
9129
|
-
this.setDefaultCpfPixKey();
|
|
9130
|
-
}
|
|
9131
|
-
}
|
|
9132
|
-
}
|
|
9133
|
-
onClearPixKeyType() {
|
|
9134
|
-
this.isShowPixKeyFieldValidatorMessage = false;
|
|
9135
|
-
this.pixAccountFormGroup.get("pixKey").reset();
|
|
9136
|
-
}
|
|
9635
|
+
registerSubjects() { }
|
|
9137
9636
|
get visible() {
|
|
9138
9637
|
return this._visible;
|
|
9139
9638
|
}
|
|
@@ -9164,7 +9663,8 @@ let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent
|
|
|
9164
9663
|
}
|
|
9165
9664
|
formatPixKeyTelephoneNumber() {
|
|
9166
9665
|
if (this.pixKeyType === "TELEPHONE") {
|
|
9167
|
-
this.pixAccountFormGroup.get("pixKey")
|
|
9666
|
+
const pixKeyCtrl = this.pixAccountFormGroup.get("pixKey");
|
|
9667
|
+
pixKeyCtrl.setValue(FormatUtilsService.getFormattedTelephoneNumber(pixKeyCtrl.value));
|
|
9168
9668
|
}
|
|
9169
9669
|
}
|
|
9170
9670
|
convertDTOToShowWithCustomFields(data) {
|
|
@@ -9176,14 +9676,14 @@ let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent
|
|
|
9176
9676
|
this.visibleBtnSave = isEditMode;
|
|
9177
9677
|
if (this.pixAccountFormGroup.get("pixKeyType").value) {
|
|
9178
9678
|
this.pixKeyType = this.pixAccountFormGroup.get("pixKeyType").value.key;
|
|
9179
|
-
this.setPixKeyValidators(isEditMode);
|
|
9679
|
+
this.setPixKeyValidators(isEditMode, this.pixAccountFormGroup);
|
|
9180
9680
|
this.formatPixKeyTelephoneNumber();
|
|
9181
9681
|
}
|
|
9182
9682
|
configEnabledFields(this.pixAccountFormGroup, isEditMode, [
|
|
9183
9683
|
"pixKeyType",
|
|
9184
9684
|
"pixKey",
|
|
9185
9685
|
"percentage",
|
|
9186
|
-
"customFields"
|
|
9686
|
+
"customFields"
|
|
9187
9687
|
], []);
|
|
9188
9688
|
}
|
|
9189
9689
|
close() {
|
|
@@ -9197,7 +9697,7 @@ let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent
|
|
|
9197
9697
|
if (this.employeeId) {
|
|
9198
9698
|
this.pixAccountFormGroup.get("employee").setValue({
|
|
9199
9699
|
tableId: this.employeeId,
|
|
9200
|
-
name: ""
|
|
9700
|
+
name: ""
|
|
9201
9701
|
});
|
|
9202
9702
|
}
|
|
9203
9703
|
this.pixAccountItemToList.emit(this.pixAccountFormGroup.getRawValue());
|
|
@@ -9221,13 +9721,9 @@ let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent
|
|
|
9221
9721
|
return {
|
|
9222
9722
|
prefix: "",
|
|
9223
9723
|
thousands: this.currency.thousandsSeparator,
|
|
9224
|
-
decimal: this.currency.decimalSeparator
|
|
9724
|
+
decimal: this.currency.decimalSeparator
|
|
9225
9725
|
};
|
|
9226
9726
|
}
|
|
9227
|
-
/**
|
|
9228
|
-
* O Input que recebe a lista do component pai e chama o método de validação passando a lista recebida.
|
|
9229
|
-
* @param pixAccountList
|
|
9230
|
-
*/
|
|
9231
9727
|
set getListPixAccount(pixAccountList) {
|
|
9232
9728
|
if (pixAccountList) {
|
|
9233
9729
|
this.setValidatorsAccordingList(pixAccountList, null, false);
|
|
@@ -9236,143 +9732,23 @@ let HistoricalPixAccountFormComponent = class HistoricalPixAccountFormComponent
|
|
|
9236
9732
|
this.resetForm();
|
|
9237
9733
|
}
|
|
9238
9734
|
}
|
|
9239
|
-
/**
|
|
9240
|
-
* Recebe a lista de registros já inseridos na tabela adiciona em uma variável os valores que serão usados para
|
|
9241
|
-
* a validação dos campos "percentage" e "pixAccount".
|
|
9242
|
-
* Quando tem index significa que está em uma edição, os valores na posição do registro da edição (index) não serão adicionados
|
|
9243
|
-
* no array de comparação dos validators.
|
|
9244
|
-
* @param pixAccountList
|
|
9245
|
-
* @param index
|
|
9246
|
-
*/
|
|
9247
|
-
setValidatorsAccordingList(pixAccountList, index = null, isEditMode = true) {
|
|
9248
|
-
this.pixAccountList = pixAccountList && pixAccountList.length ? [...pixAccountList] : [];
|
|
9249
|
-
const percentageIncluded = [];
|
|
9250
|
-
if (this.pixAccountList && this.pixAccountList.length) {
|
|
9251
|
-
this.pixAccountList.filter((field, key) => {
|
|
9252
|
-
if (field["percentage"] && key != index) {
|
|
9253
|
-
percentageIncluded.push(field["percentage"]);
|
|
9254
|
-
}
|
|
9255
|
-
});
|
|
9256
|
-
}
|
|
9257
|
-
this.beforeSetPixKeyTypeValidator();
|
|
9258
|
-
this.setPixKeyValidators(isEditMode);
|
|
9259
|
-
this.validatePercentageValid(percentageIncluded);
|
|
9260
|
-
}
|
|
9261
|
-
/**
|
|
9262
|
-
* Antes de setar o validator prepara as variáveis necessária para que seja feita a validação do campo.
|
|
9263
|
-
*/
|
|
9264
|
-
setPixKeyValidators(isEditMode) {
|
|
9265
|
-
const genericPixKey = this.pixAccountFormGroup.get("pixKey");
|
|
9266
|
-
if (this.pixKeyType) {
|
|
9267
|
-
switch (this.pixKeyType) {
|
|
9268
|
-
case "TELEPHONE":
|
|
9269
|
-
genericPixKey.setValidators(Validators.compose([
|
|
9270
|
-
Validators.required, GenericValidator.isValidPhoneNumber,
|
|
9271
|
-
]));
|
|
9272
|
-
break;
|
|
9273
|
-
case "EMAIL":
|
|
9274
|
-
genericPixKey.setValidators(Validators.compose([
|
|
9275
|
-
Validators.required, GenericValidator.isValidEmail,
|
|
9276
|
-
]));
|
|
9277
|
-
break;
|
|
9278
|
-
case "CPF":
|
|
9279
|
-
genericPixKey.setValidators(Validators.compose([
|
|
9280
|
-
Validators.required, GenericValidator.isValidCpf,
|
|
9281
|
-
]));
|
|
9282
|
-
break;
|
|
9283
|
-
case "CNPJ":
|
|
9284
|
-
genericPixKey.setValidators(Validators.compose([
|
|
9285
|
-
Validators.required, GenericValidator.isValidCnpj,
|
|
9286
|
-
]));
|
|
9287
|
-
break;
|
|
9288
|
-
case "RANDOM_KEY":
|
|
9289
|
-
genericPixKey.setValidators(Validators.required);
|
|
9290
|
-
break;
|
|
9291
|
-
default:
|
|
9292
|
-
genericPixKey.setValidators(null);
|
|
9293
|
-
break;
|
|
9294
|
-
}
|
|
9295
|
-
if (isEditMode) {
|
|
9296
|
-
genericPixKey.enable();
|
|
9297
|
-
}
|
|
9298
|
-
genericPixKey.updateValueAndValidity();
|
|
9299
|
-
}
|
|
9300
|
-
}
|
|
9301
|
-
/**
|
|
9302
|
-
* Este método calcula as parcentagens que já foram inseridas, e seta a diferença para chegar em
|
|
9303
|
-
* 100% na validação do campo "percentage" como um novo maxValue;
|
|
9304
|
-
* @param listValue
|
|
9305
|
-
*/
|
|
9306
|
-
validatePercentageValid(listValue) {
|
|
9307
|
-
const percentage = this.pixAccountFormGroup.get("percentage");
|
|
9308
|
-
this.maxValuePercentage = listValue
|
|
9309
|
-
.reduce((currentValue, total) => currentValue - total, 100.00);
|
|
9310
|
-
percentage
|
|
9311
|
-
.setValidators(Validators.compose([
|
|
9312
|
-
...this.initialValidatorOfPercentage,
|
|
9313
|
-
Validators.max(this.maxValuePercentage),
|
|
9314
|
-
]));
|
|
9315
|
-
percentage.updateValueAndValidity();
|
|
9316
|
-
}
|
|
9317
9735
|
set isViewMode(condition) {
|
|
9318
9736
|
this.isView = !!(condition && !this.withSideBar);
|
|
9319
9737
|
this.configEnableFields(!this.isView);
|
|
9320
9738
|
if (!this.isView)
|
|
9321
9739
|
this.resetForm();
|
|
9322
9740
|
}
|
|
9323
|
-
|
|
9324
|
-
|
|
9325
|
-
}
|
|
9326
|
-
setDefaultCpfPixKey() {
|
|
9327
|
-
if (this.defaultCpfNumber) {
|
|
9328
|
-
this.pixAccountFormGroup.get("pixKey").setValue(this.defaultCpfNumber);
|
|
9329
|
-
}
|
|
9330
|
-
else {
|
|
9331
|
-
const sheetDocument = this.paramsForm.get("sheetDocument");
|
|
9332
|
-
if (sheetDocument) {
|
|
9333
|
-
const cpf = sheetDocument.get("cpfNumber").value;
|
|
9334
|
-
if (cpf) {
|
|
9335
|
-
this.pixAccountFormGroup.get("pixKey").setValue(cpf);
|
|
9336
|
-
}
|
|
9337
|
-
}
|
|
9338
|
-
}
|
|
9339
|
-
}
|
|
9340
|
-
beforeSetPixKeyTypeValidator() {
|
|
9341
|
-
const pixKeyType = this.pixAccountFormGroup.get("pixKeyType");
|
|
9342
|
-
if (this.pixAccountList && this.pixAccountList.length && pixKeyType) {
|
|
9343
|
-
pixKeyType
|
|
9344
|
-
.setValidators(Validators.compose([
|
|
9345
|
-
Validators.required,
|
|
9346
|
-
this.validateDuplicatePixKeyTypeBankAccount(this.pixAccountList),
|
|
9347
|
-
]));
|
|
9348
|
-
}
|
|
9349
|
-
else {
|
|
9350
|
-
pixKeyType.setValidators(Validators.required);
|
|
9351
|
-
}
|
|
9741
|
+
set paramsForm(value) {
|
|
9742
|
+
this._paramsForm = value;
|
|
9352
9743
|
}
|
|
9353
|
-
|
|
9354
|
-
|
|
9355
|
-
const value = control && control.value;
|
|
9356
|
-
let condition = false;
|
|
9357
|
-
listCompare.filter((field) => {
|
|
9358
|
-
if (value) {
|
|
9359
|
-
if (field["pixKeyType"].key === 'BANK_ACCOUNT' && value.key === field["pixKeyType"].key) {
|
|
9360
|
-
return condition = true;
|
|
9361
|
-
}
|
|
9362
|
-
}
|
|
9363
|
-
});
|
|
9364
|
-
if (condition) {
|
|
9365
|
-
return { pixKeyTypeBankAccountDuplicate: true };
|
|
9366
|
-
}
|
|
9367
|
-
else {
|
|
9368
|
-
return null;
|
|
9369
|
-
}
|
|
9370
|
-
};
|
|
9744
|
+
set defaultCpfNumber(value) {
|
|
9745
|
+
this._defaultCpfNumber = value;
|
|
9371
9746
|
}
|
|
9372
9747
|
};
|
|
9373
9748
|
HistoricalPixAccountFormComponent.ctorParameters = () => [
|
|
9374
9749
|
{ type: FormBuilder },
|
|
9375
|
-
{ type: ChangeDetectorRef }
|
|
9750
|
+
{ type: ChangeDetectorRef },
|
|
9751
|
+
{ type: SharedStateService }
|
|
9376
9752
|
];
|
|
9377
9753
|
__decorate([
|
|
9378
9754
|
ViewChild(CustomFieldsComponent$1, { static: true })
|
|
@@ -9392,12 +9768,6 @@ __decorate([
|
|
|
9392
9768
|
__decorate([
|
|
9393
9769
|
Input()
|
|
9394
9770
|
], HistoricalPixAccountFormComponent.prototype, "isEditMode", void 0);
|
|
9395
|
-
__decorate([
|
|
9396
|
-
Input()
|
|
9397
|
-
], HistoricalPixAccountFormComponent.prototype, "paramsForm", void 0);
|
|
9398
|
-
__decorate([
|
|
9399
|
-
Input()
|
|
9400
|
-
], HistoricalPixAccountFormComponent.prototype, "defaultCpfNumber", void 0);
|
|
9401
9771
|
__decorate([
|
|
9402
9772
|
Output()
|
|
9403
9773
|
], HistoricalPixAccountFormComponent.prototype, "visibleChange", void 0);
|
|
@@ -9416,29 +9786,20 @@ __decorate([
|
|
|
9416
9786
|
__decorate([
|
|
9417
9787
|
Input()
|
|
9418
9788
|
], HistoricalPixAccountFormComponent.prototype, "isViewMode", null);
|
|
9789
|
+
__decorate([
|
|
9790
|
+
Input()
|
|
9791
|
+
], HistoricalPixAccountFormComponent.prototype, "paramsForm", null);
|
|
9792
|
+
__decorate([
|
|
9793
|
+
Input()
|
|
9794
|
+
], HistoricalPixAccountFormComponent.prototype, "defaultCpfNumber", null);
|
|
9419
9795
|
HistoricalPixAccountFormComponent = __decorate([
|
|
9420
9796
|
Component({
|
|
9421
9797
|
selector: "pix-account",
|
|
9422
|
-
template: "<div id=\"main\">\n <form [formGroup]=\"pixAccountFormGroup\" autocomplete=\"off\">\n <div class=\"ui-fluid\">\n <div class=\"ui-g\">\n <!-- Tipo de chave -->\n <div class=\"ui-md-6 ui-sm-12 required\">\n <label>{{'hcm.payroll.employees_addition_pix_key_type'|translate}}</label>\n <input-rest-auto-complete-enum [dropdown]=\"true\" server=\"payroll\"\n enumeration=\"PixKeyType\"\n placeholder=\"{{'hcm.payroll.select' | translate}}\"\n name=\"pixKeyType\" [form]=\"pixAccountFormGroup\"\n (onSelect)=\"onChangePixKeyType($event)\"\n (onClear)=\"onClearPixKeyType()\"\n id=\"ta-pixKeyType\"></input-rest-auto-complete-enum>\n <s-control-errors [control]=\"pixAccountFormGroup.get('pixKeyType')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n pixKeyTypeBankAccountDuplicate: 'hcm.payroll.historical_pix_key_type_bank_account_duplicate' | translate\n }\">\n </s-control-errors>\n </div>\n <!--Chave Pix-->\n <div class=\"ui-md-6 ui-sm-12\" [ngClass]=\"{'required': pixKeyType !== 'BANK_ACCOUNT'}\">\n <label>{{'hcm.payroll.employees_addition_pix_key' | translate}}</label>\n <ng-container [ngSwitch]=\"pixKeyType\">\n <input *ngSwitchCase=\"'TELEPHONE'\" only-number\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n (keyup)=\"phoneMask($event)\" maxlength=\"15\"\n placeholder=\"(__) ____-____\">\n <p-inputMask *ngSwitchCase=\"'CPF'\"\n id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n placeholder=\"___.___.___-__\"\n mask=\"999.999.999-99\" [unmask]=\"true\"></p-inputMask>\n <p-inputMask *ngSwitchCase=\"'CNPJ'\"\n id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n placeholder=\"__.___.___/____-__\"\n mask=\"99.999.999/9999-99\" [unmask]=\"true\"></p-inputMask>\n <input *ngSwitchCase=\"'EMAIL'\"\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n placeholder=\"{{'hcm.payroll.employees_addition_email'|translate}}\"/>\n <input *ngSwitchCase=\"'BANK_ACCOUNT'\" disabled\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"/>\n <input *ngSwitchDefault\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\" maxlength=\"100\" />\n </ng-container>\n <s-control-errors *ngIf=\"isShowPixKeyFieldValidatorMessage\" id=\"er-pix-key\"\n [control]=\"pixAccountFormGroup.get('pixKey')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n invalidPhoneNumber: 'hcm.payroll.employees_addition_invalid_phone_number' | translate: { value: pixAccountFormGroup.get('pixKey').value },\n invalidEmail: 'hcm.payroll.employees_addition_email_invalid' | translate,\n cpfNotValid: 'hcm.payroll.employees_addition_cpf_error' | translate,\n cnpjNotValid: 'hcm.payroll.employees_addition_cnpj_error' | translate\n }\">\n </s-control-errors>\n </div>\n <!--Percentual-->\n <div class=\"ui-md-6 ui-sm-12 required\">\n <label id=\"lb-percentage\"\n for=\"ff-percentage\">{{ 'hcm.payroll.historical_bank_account_label_percentage' | translate }}</label>\n <div class=\"ui-inputgroup\">\n <span class=\"ui-inputgroup-addon\">%</span>\n <input pInputText id=\"ff-percentage\" name=\"percentage\"\n formControlName=\"percentage\"\n currencyMask\n [options]=\"optionsPercentage\"\n [placeholder]=\"percentagePlaceholder\"/>\n </div>\n <s-control-errors [control]=\"pixAccountFormGroup.get('percentage')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n maxlength: 'hcm.payroll.error_max_length' | translate: { value: '6' },\n max: 'hcm.payroll.error_max_value_number' | translate: { value: maxValuePercentage },\n min: 'hcm.payroll.error_min_value_number' | translate: { value: '0,01' }\n }\">\n </s-control-errors>\n </div>\n <div class=\"ui-g-12\">\n <p-fieldset\n legend=\"{{ 'hcm.payroll.custom_fields' | translate }}\"\n [attr.data-hidden]=\"!customFields || !customFields.fields.length\"\n >\n <s-custom-fields\n domain=\"hcm\"\n service=\"{{customService}}\"\n entity=\"{{customEntity}}\"\n formControlName=\"customFields\"\n [invalidErrorLabel]=\"'hcm.payroll.employees_invalid_field' | translate\"\n >\n </s-custom-fields>\n </p-fieldset>\n </div>\n </div>\n </div>\n </form>\n\n <div [ngClass]=\"withSideBar ? 'footer' : 'footer-s-border'\">\n <div class=\"form-group\">\n <s-button id=\"btn-save\" label=\"{{ labelBtnAdd | translate}}\" priority=\"primary\"\n (onClick)=\"addItem()\" *ngIf=\"visibleBtnSave && !this.isView\"></s-button>\n <s-button *ngIf=\"withSideBar\" id=\"btn-close\" label=\"{{'hcm.payroll.cancel'|translate}}\" priority=\"secondary\"\n priority=\"link\" (onClick)=\"close()\"></s-button>\n </div>\n </div>\n</div>\n",
|
|
9798
|
+
template: "<div id=\"main\">\n <form *ngIf=\"!(hideFields | async)\" [formGroup]=\"pixAccountFormGroup\" autocomplete=\"off\">\n <div class=\"ui-fluid\">\n <div class=\"ui-g\">\n <!-- Tipo de chave -->\n <div class=\"ui-md-6 ui-sm-12 required\">\n <label>{{'hcm.payroll.employees_addition_pix_key_type'|translate}}</label>\n <input-rest-auto-complete-enum [dropdown]=\"true\" server=\"payroll\"\n enumeration=\"PixKeyType\"\n placeholder=\"{{'hcm.payroll.select' | translate}}\"\n name=\"pixKeyType\" [form]=\"pixAccountFormGroup\"\n (onSelect)=\"onChangePixKeyType($event)\"\n (onClear)=\"onClearPixKeyType()\"\n id=\"ta-pixKeyType\"></input-rest-auto-complete-enum>\n <s-control-errors [control]=\"pixAccountFormGroup.get('pixKeyType')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n pixKeyTypeBankAccountDuplicate: 'hcm.payroll.historical_pix_key_type_bank_account_duplicate' | translate\n }\">\n </s-control-errors>\n </div>\n <!--Chave Pix-->\n <div class=\"ui-md-6 ui-sm-12\" [ngClass]=\"{'required': pixKeyType !== 'BANK_ACCOUNT'}\">\n <label>{{'hcm.payroll.employees_addition_pix_key' | translate}}</label>\n <ng-container [ngSwitch]=\"pixKeyType\">\n <input *ngSwitchCase=\"'TELEPHONE'\" only-number\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n (keyup)=\"phoneMask($event)\" maxlength=\"15\"\n placeholder=\"(__) ____-____\">\n <p-inputMask *ngSwitchCase=\"'CPF'\"\n id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n placeholder=\"___.___.___-__\"\n mask=\"999.999.999-99\" [unmask]=\"true\"></p-inputMask>\n <p-inputMask *ngSwitchCase=\"'CNPJ'\"\n id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n placeholder=\"__.___.___/____-__\"\n mask=\"99.999.999/9999-99\" [unmask]=\"true\"></p-inputMask>\n <input *ngSwitchCase=\"'EMAIL'\"\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"\n placeholder=\"{{'hcm.payroll.employees_addition_email'|translate}}\"/>\n <input *ngSwitchCase=\"'BANK_ACCOUNT'\" disabled\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\"/>\n <input *ngSwitchDefault\n pInputText id=\"ta-pixKey\" name=\"pixKey\" formControlName=\"pixKey\" maxlength=\"100\" />\n </ng-container>\n <s-control-errors *ngIf=\"isShowPixKeyFieldValidatorMessage\" id=\"er-pix-key\"\n [control]=\"pixAccountFormGroup.get('pixKey')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n invalidPhoneNumber: 'hcm.payroll.employees_addition_invalid_phone_number' | translate: { value: pixAccountFormGroup.get('pixKey').value },\n invalidEmail: 'hcm.payroll.employees_addition_email_invalid' | translate,\n cpfNotValid: 'hcm.payroll.employees_addition_cpf_error' | translate,\n cnpjNotValid: 'hcm.payroll.employees_addition_cnpj_error' | translate\n }\">\n </s-control-errors>\n </div>\n <!--Percentual-->\n <div class=\"ui-md-6 ui-sm-12 required\">\n <label id=\"lb-percentage\"\n for=\"ff-percentage\">{{ 'hcm.payroll.historical_bank_account_label_percentage' | translate }}</label>\n <div class=\"ui-inputgroup\">\n <span class=\"ui-inputgroup-addon\">%</span>\n <input pInputText id=\"ff-percentage\" name=\"percentage\"\n formControlName=\"percentage\"\n currencyMask\n [options]=\"optionsPercentage\"\n [placeholder]=\"percentagePlaceholder\"/>\n </div>\n <s-control-errors [control]=\"pixAccountFormGroup.get('percentage')\"\n [errorMessages]=\"{\n required: 'hcm.payroll.required' | translate,\n maxlength: 'hcm.payroll.error_max_length' | translate: { value: '6' },\n max: 'hcm.payroll.error_max_value_number' | translate: { value: maxValuePercentage },\n min: 'hcm.payroll.error_min_value_number' | translate: { value: '0,01' }\n }\">\n </s-control-errors>\n </div>\n <div class=\"ui-g-12\">\n <p-fieldset\n legend=\"{{ 'hcm.payroll.custom_fields' | translate }}\"\n [attr.data-hidden]=\"!customFields || !customFields.fields.length\"\n >\n <s-custom-fields\n domain=\"hcm\"\n service=\"{{customService}}\"\n entity=\"{{customEntity}}\"\n formControlName=\"customFields\"\n [invalidErrorLabel]=\"'hcm.payroll.employees_invalid_field' | translate\"\n >\n </s-custom-fields>\n </p-fieldset>\n </div>\n </div>\n </div>\n </form>\n\n <div [ngClass]=\"withSideBar ? 'footer' : 'footer-s-border'\">\n <div class=\"form-group\">\n <s-button id=\"btn-save\" label=\"{{ labelBtnAdd | translate}}\" priority=\"primary\"\n (onClick)=\"addItem()\" *ngIf=\"visibleBtnSave && !this.isView\"></s-button>\n <s-button *ngIf=\"withSideBar\" id=\"btn-close\" label=\"{{'hcm.payroll.cancel'|translate}}\" priority=\"secondary\"\n priority=\"link\" (onClick)=\"close()\"></s-button>\n </div>\n </div>\n</div>\n",
|
|
9423
9799
|
styles: [".refresh{width:100%!important}#table-annuity .col-default-s{width:10%}#table-annuity .col-default-m{width:12%}#table-annuity .col-default-l{width:16%}#table-annuity .col-action{width:10%}#table-annuity .icon-warning{text-align:center!important;color:#ff6d00c7!important}@media screen and (max-width:612px){#table-annuity .col-default-1,#table-annuity .col-default-2{width:16%}#table-annuity .col-default-3{width:26%}#table-annuity .col-icon{width:10%}#table-annuity .col-action{width:27%}}#main{display:-webkit-box;display:flex;height:100%;width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column}#main form{height:100%}#main .footer{border-top:1px solid #ccc;padding-top:15px;margin-top:15px;flex-shrink:0;margin-bottom:-18px}#main .footer-s-border{padding-left:7px;flex-shrink:0;margin-bottom:-18px}"]
|
|
9424
9800
|
})
|
|
9425
9801
|
], HistoricalPixAccountFormComponent);
|
|
9426
9802
|
|
|
9427
|
-
let HistoricalPixAccountService = class HistoricalPixAccountService {
|
|
9428
|
-
constructor(http) {
|
|
9429
|
-
this.http = http;
|
|
9430
|
-
}
|
|
9431
|
-
query(path, body, service = ServiceType.PAYROLL) {
|
|
9432
|
-
return this.http.query(path, body, service);
|
|
9433
|
-
}
|
|
9434
|
-
};
|
|
9435
|
-
HistoricalPixAccountService.ctorParameters = () => [
|
|
9436
|
-
{ type: HttpClientService }
|
|
9437
|
-
];
|
|
9438
|
-
HistoricalPixAccountService = __decorate([
|
|
9439
|
-
Injectable()
|
|
9440
|
-
], HistoricalPixAccountService);
|
|
9441
|
-
|
|
9442
9803
|
let HistoricalPixAccountModule = class HistoricalPixAccountModule {
|
|
9443
9804
|
};
|
|
9444
9805
|
HistoricalPixAccountModule = __decorate([
|
|
@@ -9466,6 +9827,8 @@ HistoricalPixAccountModule = __decorate([
|
|
|
9466
9827
|
CustomFieldsModule$1,
|
|
9467
9828
|
PanelModule,
|
|
9468
9829
|
InputMaskModule,
|
|
9830
|
+
DropdownModule,
|
|
9831
|
+
TabViewModule,
|
|
9469
9832
|
],
|
|
9470
9833
|
declarations: [HistoricalPixAccountComponent, HistoricalPixAccountFormComponent],
|
|
9471
9834
|
providers: [HistoricalPixAccountService, ConfirmationService],
|
|
@@ -9504,7 +9867,7 @@ HistoricalPixAccountListService = __decorate([
|
|
|
9504
9867
|
|
|
9505
9868
|
const moment$e = moment_;
|
|
9506
9869
|
let HistoricalPixAccountListComponent = class HistoricalPixAccountListComponent {
|
|
9507
|
-
constructor(confirmationService, translateService, activatedRoute, cd, router, messageService, historicalPixAccountListService) {
|
|
9870
|
+
constructor(confirmationService, translateService, activatedRoute, cd, router, messageService, historicalPixAccountListService, sharedStateService) {
|
|
9508
9871
|
this.confirmationService = confirmationService;
|
|
9509
9872
|
this.translateService = translateService;
|
|
9510
9873
|
this.activatedRoute = activatedRoute;
|
|
@@ -9512,11 +9875,14 @@ let HistoricalPixAccountListComponent = class HistoricalPixAccountListComponent
|
|
|
9512
9875
|
this.router = router;
|
|
9513
9876
|
this.messageService = messageService;
|
|
9514
9877
|
this.historicalPixAccountListService = historicalPixAccountListService;
|
|
9878
|
+
this.sharedStateService = sharedStateService;
|
|
9515
9879
|
this.endPoint = "hcm/payroll/queries/historicalEmployeePixQuery";
|
|
9516
9880
|
this.keyPayload = "historicalEmployeePix";
|
|
9517
9881
|
this.withSidebar = true;
|
|
9518
9882
|
this.isOnlyView = new EventEmitter();
|
|
9883
|
+
this.isOnlyEdit = new EventEmitter();
|
|
9519
9884
|
this.enableView = new EventEmitter();
|
|
9885
|
+
this.isEditJudicialDependentPix = new EventEmitter();
|
|
9520
9886
|
this.ngUnsubscribe = new Subject();
|
|
9521
9887
|
this.loading = true;
|
|
9522
9888
|
this.columns = [
|
|
@@ -9536,6 +9902,7 @@ let HistoricalPixAccountListComponent = class HistoricalPixAccountListComponent
|
|
|
9536
9902
|
ngOnDestroy() {
|
|
9537
9903
|
this.ngUnsubscribe.next();
|
|
9538
9904
|
this.ngUnsubscribe.complete();
|
|
9905
|
+
this.unsubscribe();
|
|
9539
9906
|
}
|
|
9540
9907
|
ngAfterViewInit() {
|
|
9541
9908
|
this.cd.detectChanges();
|
|
@@ -9553,6 +9920,9 @@ let HistoricalPixAccountListComponent = class HistoricalPixAccountListComponent
|
|
|
9553
9920
|
label: this.translateService.instant("hcm.payroll.employees_image_cropper_view"),
|
|
9554
9921
|
command: () => {
|
|
9555
9922
|
if (this.isAllowToViewHistorical) {
|
|
9923
|
+
this.sharedStateService.setHideField(true);
|
|
9924
|
+
this.sharedStateService.setShowButton(false);
|
|
9925
|
+
this.sharedStateService.setShowEditMode(false);
|
|
9556
9926
|
const dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, this.dateFormat).format("YYYY-MM-DD");
|
|
9557
9927
|
if (this.withSidebar) {
|
|
9558
9928
|
this.isOnlyView.emit(true);
|
|
@@ -9561,6 +9931,7 @@ let HistoricalPixAccountListComponent = class HistoricalPixAccountListComponent
|
|
|
9561
9931
|
});
|
|
9562
9932
|
}
|
|
9563
9933
|
else {
|
|
9934
|
+
this.sharedStateService.setSaveButton(false);
|
|
9564
9935
|
this.enableView.emit(dateChange);
|
|
9565
9936
|
}
|
|
9566
9937
|
}
|
|
@@ -9573,14 +9944,20 @@ let HistoricalPixAccountListComponent = class HistoricalPixAccountListComponent
|
|
|
9573
9944
|
label: this.translateService.instant("hcm.payroll.edit"),
|
|
9574
9945
|
command: () => {
|
|
9575
9946
|
if (this.isAllowToEditHistorical) {
|
|
9947
|
+
this.sharedStateService.setHideField(true);
|
|
9948
|
+
this.sharedStateService.setShowButton(false);
|
|
9949
|
+
this.sharedStateService.setShowEditMode(true);
|
|
9576
9950
|
const dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, this.dateFormat).format("YYYY-MM-DD");
|
|
9577
9951
|
if (this.withSidebar) {
|
|
9578
|
-
this.isOnlyView.emit(false);
|
|
9579
9952
|
this.router.navigate([`historical-pix-account/${dateChange}`], {
|
|
9580
9953
|
relativeTo: this.activatedRoute,
|
|
9581
9954
|
});
|
|
9582
9955
|
}
|
|
9583
9956
|
else {
|
|
9957
|
+
setTimeout(() => {
|
|
9958
|
+
this.sharedStateService.triggerActiveValidatorsOnEditModalOpen();
|
|
9959
|
+
});
|
|
9960
|
+
this.sharedStateService.setSaveButton(true);
|
|
9584
9961
|
this.enableView.emit(dateChange);
|
|
9585
9962
|
}
|
|
9586
9963
|
}
|
|
@@ -9665,6 +10042,19 @@ let HistoricalPixAccountListComponent = class HistoricalPixAccountListComponent
|
|
|
9665
10042
|
this.lastRecord = payload[0];
|
|
9666
10043
|
}
|
|
9667
10044
|
}
|
|
10045
|
+
unsubscribe() {
|
|
10046
|
+
if (this._subscription) {
|
|
10047
|
+
this._subscription.unsubscribe();
|
|
10048
|
+
}
|
|
10049
|
+
}
|
|
10050
|
+
set hideFieldsOnAdd$(subject) {
|
|
10051
|
+
this.unsubscribe();
|
|
10052
|
+
if (subject) {
|
|
10053
|
+
this._subscription = subject.subscribe((value) => {
|
|
10054
|
+
this.sharedStateService.setHideField(value);
|
|
10055
|
+
});
|
|
10056
|
+
}
|
|
10057
|
+
}
|
|
9668
10058
|
get isAllowToAddHistorical() {
|
|
9669
10059
|
return (this.permission["incluir"]);
|
|
9670
10060
|
}
|
|
@@ -9694,7 +10084,8 @@ HistoricalPixAccountListComponent.ctorParameters = () => [
|
|
|
9694
10084
|
{ type: ChangeDetectorRef },
|
|
9695
10085
|
{ type: Router },
|
|
9696
10086
|
{ type: MessageService },
|
|
9697
|
-
{ type: HistoricalPixAccountListService }
|
|
10087
|
+
{ type: HistoricalPixAccountListService },
|
|
10088
|
+
{ type: SharedStateService }
|
|
9698
10089
|
];
|
|
9699
10090
|
__decorate([
|
|
9700
10091
|
ViewChild(CustomFieldsComponent$1, { static: false })
|
|
@@ -9720,12 +10111,24 @@ __decorate([
|
|
|
9720
10111
|
__decorate([
|
|
9721
10112
|
Input()
|
|
9722
10113
|
], HistoricalPixAccountListComponent.prototype, "withSidebar", void 0);
|
|
10114
|
+
__decorate([
|
|
10115
|
+
Input()
|
|
10116
|
+
], HistoricalPixAccountListComponent.prototype, "hideField", void 0);
|
|
9723
10117
|
__decorate([
|
|
9724
10118
|
Output()
|
|
9725
10119
|
], HistoricalPixAccountListComponent.prototype, "isOnlyView", void 0);
|
|
10120
|
+
__decorate([
|
|
10121
|
+
Output()
|
|
10122
|
+
], HistoricalPixAccountListComponent.prototype, "isOnlyEdit", void 0);
|
|
9726
10123
|
__decorate([
|
|
9727
10124
|
Output()
|
|
9728
10125
|
], HistoricalPixAccountListComponent.prototype, "enableView", void 0);
|
|
10126
|
+
__decorate([
|
|
10127
|
+
Output()
|
|
10128
|
+
], HistoricalPixAccountListComponent.prototype, "isEditJudicialDependentPix", void 0);
|
|
10129
|
+
__decorate([
|
|
10130
|
+
Input()
|
|
10131
|
+
], HistoricalPixAccountListComponent.prototype, "hideFieldsOnAdd$", null);
|
|
9729
10132
|
__decorate([
|
|
9730
10133
|
Input()
|
|
9731
10134
|
], HistoricalPixAccountListComponent.prototype, "reloadList", null);
|
|
@@ -9770,5 +10173,5 @@ HistoricalPixAccountListModule = __decorate([
|
|
|
9770
10173
|
* Generated bundle index. Do not edit.
|
|
9771
10174
|
*/
|
|
9772
10175
|
|
|
9773
|
-
export { AdmissionDraftSummaryComponent, AdmissionDraftSummaryModule, AdmissionDraftSummaryService, AutocompleteParametersService, BlockUiComponent, BlockUiModule, BreadcrumbComponent, BreadcrumbSDSModule, CNPJValidator, CPFValidator, CompanyIndicationType, CompanyIndicationsService, CompareType, ControlMessagesErrorComponent, ControlMessagesErrorModule, CoreDirectives, CoreFieldType, CustomFieldsComponent, CustomFieldsModule, DataListModule, DataListRestModule, DateValidator, DirectionEnumeration, EmployeeSelectorComponent, EmployeeSelectorModule, EmployeeSummaryComponent, EmployeeSummaryModule, EmployeeSummaryService, EntityODataParameter, ErrorPageComponent, ErrorPageModule, FieldValidatorComponent, FieldValidatorModule, FileUploadComponent, FileUploadCoreModule, FormComparatorService, FromToComponent, FromToModule, HistoricalBankAccountComponent, HistoricalBankAccountListComponent, HistoricalBankAccountListModule, HistoricalBankAccountListService, HistoricalBankAccountModule, HistoricalBankAccountService, HistoricalPixAccountComponent, HistoricalPixAccountListComponent, HistoricalPixAccountListModule, HistoricalPixAccountListService, HistoricalPixAccountModule, HistoricalPixAccountService, HttpClientService, HttpRequestType, ImageCropComponent, ImageCropModule, ImageCropService, InputDateComponent, InputDateModelComponent, InputDateModelModule, InputDateModule, InputRestAutoCompleteComponent, InputRestAutoCompleteEmployeeModelModule, InputRestAutoCompleteEmployeeModelService, InputRestAutoCompleteEmployeeModule, InputRestAutoCompleteEmployeeService, InputRestAutoCompleteEnumComponent, InputRestAutoCompleteEnumModule, InputRestAutoCompleteEnumService, InputRestAutoCompleteJobpositionComponent, InputRestAutoCompleteJobpositionModule, InputRestAutoCompleteJobpositionService, InputRestAutoCompleteModelEnumModule, InputRestAutoCompleteModelEnumService, InputRestAutoCompleteModelModule, InputRestAutoCompleteModelService, InputRestAutoCompleteModule, InputRestAutoCompleteService, IntegrationService, ListRestComponent, ListRestModule, LookupModule, LookupParametersService, MenuType, ModuleType, NameNotSpacesDirective, OnlyNumberDirective, Operators, ParameterType, PermissionService, ReportFormat, ReportService, ReportStage, ServiceType, ServicesModule, SpinnerLoaderComponent, SpinnerLoaderModule, StringMethods, ToastComponent, ToastModule, ToastService, TypeAdmissionModule, TypeAdmissionServices, UsingType, WorkflowDataService, WorkflowIntegrator, WorkstationgroupLookupDto, WorkstationgroupLookupModule, _moment, assign, autoCompleteObjectForIdObject, clearValues, cnpjValidator, compareValues, configEnabledFields, containsMoreThanOneConsecutiveAbbreviation, containsMoreThanOneConsecutiveBlankSpace, containsMoreThanTwoRepeatedCharacters, containsSpecialCharacters, convertBooleanString, convertStringToBoolean, cpfValidator, firstNameIsValid, firstNameLengthIsValid, formatMoney, fullNameLengthIsValid, getAddWeekDaysBusiness, getFormat, getFormatDate, getMoment, getNowDate, getObjValids, getQueryParams, getWeekDaysBusiness, getYears, invertFieldDate, isBirthDayValid, isDateCompare, isDateExpirationBeforeExpeditionDate, isDateField, isDateSameOrAfterCurrentDate, isFullDate, isMax, isNumber, isObject, isRequired, isShallow, isValid, isValidDate, isValidPIS, mountCustomForSave, mountCustomForShow, mountCustomToSave, mountCustomToShow, mountGeneratedCustomToSave, ngCalendarFormat, notEmpty, numberOrZero, removeCharacteresSpecials, removeEmpty, removeWhiteSpaces, setCustonFields, setDisableField, setErrors, setRequired, setRequiredFields, setValidator, setValidatorsAndDisableFields, setValueCustom, stringMethods, sun, uiid, validateBirthDate, verifyValidationsForm, SharedModule as ɵa, DataListRestComponent as ɵb, DataListRestService as ɵc, FileUploadService as ɵd, InputRestAutoCompleteEmployeeComponent as ɵe, InputRestAutoCompleteEmployeeModelComponent as ɵf, InputRestAutoCompleteModelComponent as ɵg, InputRestAutoCompleteModelEnumComponent as ɵh, ListRestService as ɵi, DataListComponent as ɵj, DataListService as ɵk, LookupComponent as ɵl, LookupService as ɵm, WorkstationgroupLookupComponent as ɵn, AutocompleteService as ɵo, LookupService$1 as ɵp, HistoricalBankAccountFormComponent as ɵq,
|
|
10176
|
+
export { AdmissionDraftSummaryComponent, AdmissionDraftSummaryModule, AdmissionDraftSummaryService, AutocompleteParametersService, BlockUiComponent, BlockUiModule, BreadcrumbComponent, BreadcrumbSDSModule, CNPJValidator, CPFValidator, CompanyIndicationType, CompanyIndicationsService, CompareType, ControlMessagesErrorComponent, ControlMessagesErrorModule, CoreDirectives, CoreFieldType, CustomFieldsComponent, CustomFieldsModule, DataListModule, DataListRestModule, DateValidator, DirectionEnumeration, EmployeeSelectorComponent, EmployeeSelectorModule, EmployeeSummaryComponent, EmployeeSummaryModule, EmployeeSummaryService, EntityODataParameter, ErrorPageComponent, ErrorPageModule, FieldValidatorComponent, FieldValidatorModule, FileUploadComponent, FileUploadCoreModule, FormComparatorService, FromToComponent, FromToModule, HistoricalBankAccountComponent, HistoricalBankAccountListComponent, HistoricalBankAccountListModule, HistoricalBankAccountListService, HistoricalBankAccountModule, HistoricalBankAccountService, HistoricalPixAccountComponent, HistoricalPixAccountListComponent, HistoricalPixAccountListModule, HistoricalPixAccountListService, HistoricalPixAccountModule, HistoricalPixAccountService, HttpClientService, HttpRequestType, ImageCropComponent, ImageCropModule, ImageCropService, InputDateComponent, InputDateModelComponent, InputDateModelModule, InputDateModule, InputRestAutoCompleteComponent, InputRestAutoCompleteEmployeeModelModule, InputRestAutoCompleteEmployeeModelService, InputRestAutoCompleteEmployeeModule, InputRestAutoCompleteEmployeeService, InputRestAutoCompleteEnumComponent, InputRestAutoCompleteEnumModule, InputRestAutoCompleteEnumService, InputRestAutoCompleteJobpositionComponent, InputRestAutoCompleteJobpositionModule, InputRestAutoCompleteJobpositionService, InputRestAutoCompleteModelEnumModule, InputRestAutoCompleteModelEnumService, InputRestAutoCompleteModelModule, InputRestAutoCompleteModelService, InputRestAutoCompleteModule, InputRestAutoCompleteService, IntegrationService, ListRestComponent, ListRestModule, LookupModule, LookupParametersService, MenuType, ModuleType, NameNotSpacesDirective, OnlyNumberDirective, Operators, ParameterType, PermissionService, ReportFormat, ReportService, ReportStage, ServiceType, ServicesModule, SharedStateService, SpinnerLoaderComponent, SpinnerLoaderModule, StringMethods, ToastComponent, ToastModule, ToastService, TypeAdmissionModule, TypeAdmissionServices, UsingType, WorkflowDataService, WorkflowIntegrator, WorkstationgroupLookupDto, WorkstationgroupLookupModule, _moment, assign, autoCompleteObjectForIdObject, clearValues, cnpjValidator, compareValues, configEnabledFields, containsMoreThanOneConsecutiveAbbreviation, containsMoreThanOneConsecutiveBlankSpace, containsMoreThanTwoRepeatedCharacters, containsSpecialCharacters, convertBooleanString, convertStringToBoolean, cpfValidator, firstNameIsValid, firstNameLengthIsValid, formatMoney, fullNameLengthIsValid, getAddWeekDaysBusiness, getFormat, getFormatDate, getMoment, getNowDate, getObjValids, getQueryParams, getWeekDaysBusiness, getYears, invertFieldDate, isBirthDayValid, isDateCompare, isDateExpirationBeforeExpeditionDate, isDateField, isDateSameOrAfterCurrentDate, isFullDate, isMax, isNumber, isObject, isRequired, isShallow, isValid, isValidDate, isValidPIS, mountCustomForSave, mountCustomForShow, mountCustomToSave, mountCustomToShow, mountGeneratedCustomToSave, ngCalendarFormat, notEmpty, numberOrZero, removeCharacteresSpecials, removeEmpty, removeWhiteSpaces, setCustonFields, setDisableField, setErrors, setRequired, setRequiredFields, setValidator, setValidatorsAndDisableFields, setValueCustom, stringMethods, sun, uiid, validateBirthDate, verifyValidationsForm, SharedModule as ɵa, DataListRestComponent as ɵb, DataListRestService as ɵc, FileUploadService as ɵd, InputRestAutoCompleteEmployeeComponent as ɵe, InputRestAutoCompleteEmployeeModelComponent as ɵf, InputRestAutoCompleteModelComponent as ɵg, InputRestAutoCompleteModelEnumComponent as ɵh, ListRestService as ɵi, DataListComponent as ɵj, DataListService as ɵk, LookupComponent as ɵl, LookupService as ɵm, WorkstationgroupLookupComponent as ɵn, AutocompleteService as ɵo, LookupService$1 as ɵp, HistoricalBankAccountFormComponent as ɵq, HistoricakPixAccountBase as ɵr, HistoricalPixAccountFormComponent as ɵs };
|
|
9774
10177
|
//# sourceMappingURL=senior-gestao-pessoas-payroll-core.js.map
|