@senior-gestao-pessoas/payroll-core 9.3.0-c5927d2c-fb18-4ed1-af2e-a5bdbe45b54d → 9.3.0-ce4e33bc-a617-435b-b394-9a9e3ca226f4
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 +18 -6
- 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/components/historical-pix-account/historical-pix-account.component.d.ts +4 -1
- package/components/historical-pix-account-list/historical-pix-account-list.component.d.ts +1 -1
- package/esm2015/components/historical-pix-account/historical-pix-account.component.js +17 -5
- package/esm2015/components/historical-pix-account-list/historical-pix-account-list.component.js +4 -4
- package/esm5/components/historical-pix-account/historical-pix-account.component.js +17 -5
- package/esm5/components/historical-pix-account-list/historical-pix-account-list.component.js +4 -4
- package/fesm2015/senior-gestao-pessoas-payroll-core.js +18 -6
- package/fesm2015/senior-gestao-pessoas-payroll-core.js.map +1 -1
- package/fesm5/senior-gestao-pessoas-payroll-core.js +18 -6
- 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
|
@@ -9434,6 +9434,9 @@
|
|
|
9434
9434
|
this.isViewMode = false;
|
|
9435
9435
|
this.withSideBar = true;
|
|
9436
9436
|
this.defaultCpfNumber = null;
|
|
9437
|
+
this.isOnlyView = new core.EventEmitter();
|
|
9438
|
+
this.isOnlyEdit = new core.EventEmitter();
|
|
9439
|
+
this.isOnlyDelete = new core.EventEmitter();
|
|
9437
9440
|
this.visibleChange = new core.EventEmitter();
|
|
9438
9441
|
this.ngUnsubscribe = new rxjs.Subject();
|
|
9439
9442
|
this.orderBy = {
|
|
@@ -9473,7 +9476,7 @@
|
|
|
9473
9476
|
_this.visible = true;
|
|
9474
9477
|
}
|
|
9475
9478
|
else {
|
|
9476
|
-
_this.
|
|
9479
|
+
_this.isOnlyView.emit(true);
|
|
9477
9480
|
}
|
|
9478
9481
|
},
|
|
9479
9482
|
},
|
|
@@ -9487,7 +9490,7 @@
|
|
|
9487
9490
|
_this.visible = true;
|
|
9488
9491
|
}
|
|
9489
9492
|
else {
|
|
9490
|
-
_this.
|
|
9493
|
+
_this.isOnlyEdit.emit(true);
|
|
9491
9494
|
}
|
|
9492
9495
|
},
|
|
9493
9496
|
},
|
|
@@ -9500,7 +9503,7 @@
|
|
|
9500
9503
|
_this.deleteAnnuityItem(key);
|
|
9501
9504
|
}
|
|
9502
9505
|
else {
|
|
9503
|
-
_this.
|
|
9506
|
+
_this.isOnlyDelete.emit(true);
|
|
9504
9507
|
}
|
|
9505
9508
|
},
|
|
9506
9509
|
},
|
|
@@ -9804,6 +9807,15 @@
|
|
|
9804
9807
|
__decorate([
|
|
9805
9808
|
core.Input()
|
|
9806
9809
|
], HistoricalPixAccountComponent.prototype, "permission", void 0);
|
|
9810
|
+
__decorate([
|
|
9811
|
+
core.Output()
|
|
9812
|
+
], HistoricalPixAccountComponent.prototype, "isOnlyView", void 0);
|
|
9813
|
+
__decorate([
|
|
9814
|
+
core.Output()
|
|
9815
|
+
], HistoricalPixAccountComponent.prototype, "isOnlyEdit", void 0);
|
|
9816
|
+
__decorate([
|
|
9817
|
+
core.Output()
|
|
9818
|
+
], HistoricalPixAccountComponent.prototype, "isOnlyDelete", void 0);
|
|
9807
9819
|
__decorate([
|
|
9808
9820
|
core.Input()
|
|
9809
9821
|
], HistoricalPixAccountComponent.prototype, "dateChange", null);
|
|
@@ -10468,7 +10480,7 @@
|
|
|
10468
10480
|
this.endPoint = "hcm/payroll/queries/historicalEmployeePixQuery";
|
|
10469
10481
|
this.keyPayload = "historicalEmployeePix";
|
|
10470
10482
|
this.withSidebar = true;
|
|
10471
|
-
this.isOnlyView =
|
|
10483
|
+
this.isOnlyView = new core.EventEmitter();
|
|
10472
10484
|
this.enableView = new core.EventEmitter();
|
|
10473
10485
|
this.ngUnsubscribe = new rxjs.Subject();
|
|
10474
10486
|
this.loading = true;
|
|
@@ -10539,12 +10551,12 @@
|
|
|
10539
10551
|
if (_this.isAllowToViewHistorical) {
|
|
10540
10552
|
var dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, _this.dateFormat).format("YYYY-MM-DD");
|
|
10541
10553
|
if (_this.withSidebar) {
|
|
10554
|
+
_this.isOnlyView.emit(true);
|
|
10542
10555
|
_this.router.navigate(["historical-pix-account/" + dateChange], {
|
|
10543
10556
|
relativeTo: _this.activatedRoute,
|
|
10544
10557
|
});
|
|
10545
10558
|
}
|
|
10546
10559
|
else {
|
|
10547
|
-
_this.isOnlyView = true;
|
|
10548
10560
|
_this.enableView.emit(dateChange);
|
|
10549
10561
|
}
|
|
10550
10562
|
}
|
|
@@ -10702,7 +10714,7 @@
|
|
|
10702
10714
|
core.Input()
|
|
10703
10715
|
], HistoricalPixAccountListComponent.prototype, "withSidebar", void 0);
|
|
10704
10716
|
__decorate([
|
|
10705
|
-
core.
|
|
10717
|
+
core.Output()
|
|
10706
10718
|
], HistoricalPixAccountListComponent.prototype, "isOnlyView", void 0);
|
|
10707
10719
|
__decorate([
|
|
10708
10720
|
core.Output()
|