@senior-gestao-pessoas/payroll-core 9.7.0-feature-hcmgdp-11851-cfbcd4aa → 9.7.0-feature-hcmgdp-11851-2e1b3fcf
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 +6 -0
- package/bundles/senior-gestao-pessoas-payroll-core.umd.js.map +1 -1
- package/bundles/senior-gestao-pessoas-payroll-core.umd.min.js +1 -1
- package/bundles/senior-gestao-pessoas-payroll-core.umd.min.js.map +1 -1
- package/esm2015/components/historical-pix-account/historical-pix-account-form/historical-pix-account-form.component.js +7 -1
- package/esm5/components/historical-pix-account/historical-pix-account-form/historical-pix-account-form.component.js +7 -1
- package/fesm2015/senior-gestao-pessoas-payroll-core.js +6 -0
- package/fesm2015/senior-gestao-pessoas-payroll-core.js.map +1 -1
- package/fesm5/senior-gestao-pessoas-payroll-core.js +6 -0
- package/fesm5/senior-gestao-pessoas-payroll-core.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-pessoas-payroll-core.metadata.json +1 -1
|
@@ -9696,6 +9696,12 @@ var HistoricalPixAccountFormComponent = /** @class */ (function () {
|
|
|
9696
9696
|
HistoricalPixAccountFormComponent.prototype.addItem = function () {
|
|
9697
9697
|
this.pixAccountFormGroup.updateValueAndValidity();
|
|
9698
9698
|
verifyValidationsForm.call(this.pixAccountFormGroup);
|
|
9699
|
+
if (this.pixKeyType === 'CNPJ' && this.isAlphanumericCNPJ) {
|
|
9700
|
+
var pixKey = this.pixAccountFormGroup.get('pixKey').value;
|
|
9701
|
+
if (pixKey) {
|
|
9702
|
+
this.pixAccountFormGroup.get('pixKey').setValue(pixKey.toUpperCase().replace(/[^A-Z0-9]/g, ''));
|
|
9703
|
+
}
|
|
9704
|
+
}
|
|
9699
9705
|
if (this.pixAccountFormGroup.valid) {
|
|
9700
9706
|
if (this.employeeId) {
|
|
9701
9707
|
this.pixAccountFormGroup.get("employee").setValue({
|