@senior-gestao-pessoas/payroll-core 9.3.0-784091e9-e857-4112-9344-e47026fdac80 → 9.3.0-d99b0dbd-5fc0-4b98-979b-fe30c751fa36

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.
@@ -9422,11 +9422,12 @@
9422
9422
  }());
9423
9423
 
9424
9424
  var HistoricalPixAccountComponent = /** @class */ (function () {
9425
- function HistoricalPixAccountComponent(translateService, cd, formBuilder) {
9425
+ function HistoricalPixAccountComponent(translateService, cd, formBuilder, messageService) {
9426
9426
  var _this = this;
9427
9427
  this.translateService = translateService;
9428
9428
  this.cd = cd;
9429
9429
  this.formBuilder = formBuilder;
9430
+ this.messageService = messageService;
9430
9431
  this.recordByRow = 1;
9431
9432
  this.showDateChange = false;
9432
9433
  this.isEditMode = false;
@@ -9475,17 +9476,35 @@
9475
9476
  visible: !!(!_this.isEditMode && _this.withSideBar),
9476
9477
  label: _this.translateService.instant("hcm.payroll.edit"),
9477
9478
  command: function () {
9478
- rowData["index"] = key;
9479
- _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
9480
- _this.visible = true;
9479
+ if (_this.isAllowToEditHistorical && rowData) {
9480
+ rowData["index"] = key;
9481
+ _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
9482
+ _this.visible = true;
9483
+ }
9484
+ else {
9485
+ _this.messageService.add({
9486
+ severity: "error",
9487
+ summary: _this.translateService.instant("hcm.payroll.error"),
9488
+ detail: _this.translateService.instant("hcm.payroll.permission_error_not_allowed"),
9489
+ });
9490
+ }
9481
9491
  },
9482
9492
  },
9483
9493
  {
9484
9494
  visible: !_this.isEditMode,
9485
9495
  label: _this.translateService.instant("hcm.payroll.delete"),
9486
9496
  command: function () {
9487
- _this.loading = true;
9488
- _this.deleteAnnuityItem(key);
9497
+ if (_this.isAllowToDeleteHistorical && rowData) {
9498
+ _this.loading = true;
9499
+ _this.deleteAnnuityItem(key);
9500
+ }
9501
+ else {
9502
+ _this.messageService.add({
9503
+ severity: "error",
9504
+ summary: _this.translateService.instant("hcm.payroll.error"),
9505
+ detail: _this.translateService.instant("hcm.payroll.permission_error_not_allowed"),
9506
+ });
9507
+ }
9489
9508
  },
9490
9509
  },
9491
9510
  ];
@@ -9696,10 +9715,25 @@
9696
9715
  HistoricalPixAccountComponent.prototype.getFormattedPercentage = function (value) {
9697
9716
  return FormatUtilsService.getFormattedPercentage(value);
9698
9717
  };
9718
+ Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToDeleteHistorical", {
9719
+ get: function () {
9720
+ return (this.permission["Excluir"]);
9721
+ },
9722
+ enumerable: true,
9723
+ configurable: true
9724
+ });
9725
+ Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToEditHistorical", {
9726
+ get: function () {
9727
+ return (this.permission["Editar"]);
9728
+ },
9729
+ enumerable: true,
9730
+ configurable: true
9731
+ });
9699
9732
  HistoricalPixAccountComponent.ctorParameters = function () { return [
9700
9733
  { type: core$1.TranslateService },
9701
9734
  { type: core.ChangeDetectorRef },
9702
- { type: forms.FormBuilder }
9735
+ { type: forms.FormBuilder },
9736
+ { type: api.MessageService }
9703
9737
  ]; };
9704
9738
  __decorate([
9705
9739
  core.ViewChild(angularComponents.CustomFieldsComponent, { static: false })
@@ -9749,6 +9783,9 @@
9749
9783
  __decorate([
9750
9784
  core.Input()
9751
9785
  ], HistoricalPixAccountComponent.prototype, "defaultCpfNumber", void 0);
9786
+ __decorate([
9787
+ core.Input()
9788
+ ], HistoricalPixAccountComponent.prototype, "permission", void 0);
9752
9789
  __decorate([
9753
9790
  core.Input()
9754
9791
  ], HistoricalPixAccountComponent.prototype, "dateChange", null);
@@ -10480,13 +10517,24 @@
10480
10517
  {
10481
10518
  label: this.translateService.instant("hcm.payroll.employees_image_cropper_view"),
10482
10519
  command: function () {
10483
- var dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, _this.dateFormat).format("YYYY-MM-DD");
10484
- if (_this.withSidebar)
10485
- _this.router.navigate(["historical-pix-account/" + dateChange], {
10486
- relativeTo: _this.activatedRoute,
10520
+ if (_this.isAllowToViewHistorical && rowData) {
10521
+ var dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, _this.dateFormat).format("YYYY-MM-DD");
10522
+ if (_this.withSidebar) {
10523
+ _this.router.navigate(["historical-pix-account/" + dateChange], {
10524
+ relativeTo: _this.activatedRoute,
10525
+ });
10526
+ }
10527
+ else {
10528
+ _this.enableView.emit(dateChange);
10529
+ }
10530
+ }
10531
+ else {
10532
+ _this.messageService.add({
10533
+ severity: "error",
10534
+ summary: _this.translateService.instant("hcm.payroll.error"),
10535
+ detail: _this.translateService.instant("hcm.payroll.permission_error_not_allowed"),
10487
10536
  });
10488
- else
10489
- _this.enableView.emit(dateChange);
10537
+ }
10490
10538
  },
10491
10539
  },
10492
10540
  {
@@ -10565,14 +10613,21 @@
10565
10613
  };
10566
10614
  Object.defineProperty(HistoricalPixAccountListComponent.prototype, "isAllowToAddHistorical", {
10567
10615
  get: function () {
10568
- return (this.permission["incluir"]);
10616
+ return (this.permission["Incluir"]);
10569
10617
  },
10570
10618
  enumerable: true,
10571
10619
  configurable: true
10572
10620
  });
10573
10621
  Object.defineProperty(HistoricalPixAccountListComponent.prototype, "isAllowToDeleteHistorical", {
10574
10622
  get: function () {
10575
- return (this.permission["excluir"]);
10623
+ return (this.permission["Excluir"]);
10624
+ },
10625
+ enumerable: true,
10626
+ configurable: true
10627
+ });
10628
+ Object.defineProperty(HistoricalPixAccountListComponent.prototype, "isAllowToViewHistorical", {
10629
+ get: function () {
10630
+ return (this.permission["Visualizar"]);
10576
10631
  },
10577
10632
  enumerable: true,
10578
10633
  configurable: true