@senior-gestao-pessoas/payroll-core 9.3.0-fdc2ca03-c046-451a-bb4a-4d788fbde8cb → 9.4.0-09265079-8330-4f2f-92dd-7a1c127ae0ac

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.
@@ -9434,6 +9434,11 @@
9434
9434
  this.isViewMode = false;
9435
9435
  this.withSideBar = true;
9436
9436
  this.defaultCpfNumber = null;
9437
+ this.listDataReciever = [];
9438
+ this.isViewModeActive = new core.EventEmitter();
9439
+ this.isEditModeActive = new core.EventEmitter();
9440
+ this.isDeleteModeActive = new core.EventEmitter();
9441
+ this.listFromApp = [];
9437
9442
  this.visibleChange = new core.EventEmitter();
9438
9443
  this.ngUnsubscribe = new rxjs.Subject();
9439
9444
  this.orderBy = {
@@ -9467,26 +9472,32 @@
9467
9472
  visible: _this.isEditMode,
9468
9473
  label: _this.translateService.instant("hcm.payroll.employees_image_cropper_view"),
9469
9474
  command: function () {
9470
- rowData["index"] = key;
9471
- _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: false };
9472
- _this.visible = true;
9475
+ if (_this.isAllowToViewHistorical) {
9476
+ rowData["index"] = key;
9477
+ _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: false };
9478
+ _this.visible = true;
9479
+ }
9480
+ else {
9481
+ _this.isViewModeActive.emit(true);
9482
+ }
9473
9483
  },
9474
9484
  },
9475
9485
  {
9476
9486
  visible: !!(!_this.isEditMode && _this.withSideBar),
9477
9487
  label: _this.translateService.instant("hcm.payroll.edit"),
9478
9488
  command: function () {
9479
- if (_this.isAllowToEditHistorical && rowData) {
9489
+ if (_this.isAllowToEditHistorical) {
9480
9490
  rowData["index"] = key;
9481
9491
  _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
9482
9492
  _this.visible = true;
9483
9493
  }
9484
9494
  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
- });
9495
+ _this.isEditModeActive.emit(true);
9496
+ if (_this.listFromApp.length == 0) {
9497
+ rowData["index"] = key;
9498
+ _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
9499
+ _this.visible = true;
9500
+ }
9490
9501
  }
9491
9502
  },
9492
9503
  },
@@ -9494,16 +9505,16 @@
9494
9505
  visible: !_this.isEditMode,
9495
9506
  label: _this.translateService.instant("hcm.payroll.delete"),
9496
9507
  command: function () {
9497
- if (_this.isAllowToDeleteHistorical && rowData) {
9508
+ if (_this.isAllowToDeleteHistorical) {
9498
9509
  _this.loading = true;
9499
9510
  _this.deleteAnnuityItem(key);
9500
9511
  }
9501
9512
  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
- });
9513
+ _this.isDeleteModeActive.emit(true);
9514
+ if (_this.listFromApp.length == 0) {
9515
+ _this.loading = true;
9516
+ _this.deleteAnnuityItem(key);
9517
+ }
9507
9518
  }
9508
9519
  },
9509
9520
  },
@@ -9514,6 +9525,11 @@
9514
9525
  HistoricalPixAccountComponent.prototype.ngOnInit = function () {
9515
9526
  this.formGroup.setControl(this.fieldFormGroup, this.historicalPixAccountList);
9516
9527
  };
9528
+ HistoricalPixAccountComponent.prototype.ngOnChanges = function (changes) {
9529
+ if (changes['listDataReciever'] && changes['listDataReciever'].currentValue) {
9530
+ this.listFromApp = changes['listDataReciever'].currentValue;
9531
+ }
9532
+ };
9517
9533
  HistoricalPixAccountComponent.prototype.createFormGroup = function () {
9518
9534
  this.historicalPixAccountList = this.formBuilder.group({
9519
9535
  historicalPixAccountList: this.formBuilder.control(null),
@@ -9570,6 +9586,13 @@
9570
9586
  this.pixAccountItemInput = {};
9571
9587
  this.visible = true;
9572
9588
  };
9589
+ HistoricalPixAccountComponent.prototype.isNotAllowMessage = function () {
9590
+ this.messageService.add({
9591
+ severity: "error",
9592
+ summary: this.translateService.instant("hcm.payroll.error"),
9593
+ detail: this.translateService.instant("hcm.payroll.permission_error_not_allowed"),
9594
+ });
9595
+ };
9573
9596
  HistoricalPixAccountComponent.prototype.deleteAnnuityItem = function (index) {
9574
9597
  var newlist = __spread(this.getHistoricalPixAccountList());
9575
9598
  newlist.sort(compareValues(this.orderBy.field, this.orderBy.direction));
@@ -9715,23 +9738,30 @@
9715
9738
  HistoricalPixAccountComponent.prototype.getFormattedPercentage = function (value) {
9716
9739
  return FormatUtilsService.getFormattedPercentage(value);
9717
9740
  };
9741
+ Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToAddHistorical", {
9742
+ get: function () {
9743
+ return (this.permission["incluir"]);
9744
+ },
9745
+ enumerable: true,
9746
+ configurable: true
9747
+ });
9718
9748
  Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToDeleteHistorical", {
9719
9749
  get: function () {
9720
- return (this.permission["Excluir"]);
9750
+ return (this.permission["excluir"]);
9721
9751
  },
9722
9752
  enumerable: true,
9723
9753
  configurable: true
9724
9754
  });
9725
9755
  Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToEditHistorical", {
9726
9756
  get: function () {
9727
- return (this.permission["Editar"]);
9757
+ return (this.permission["editar"]);
9728
9758
  },
9729
9759
  enumerable: true,
9730
9760
  configurable: true
9731
9761
  });
9732
9762
  Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToViewHistorical", {
9733
9763
  get: function () {
9734
- return (this.permission["Visualizar"]);
9764
+ return (this.permission["visualizar"]);
9735
9765
  },
9736
9766
  enumerable: true,
9737
9767
  configurable: true
@@ -9793,6 +9823,18 @@
9793
9823
  __decorate([
9794
9824
  core.Input()
9795
9825
  ], HistoricalPixAccountComponent.prototype, "permission", void 0);
9826
+ __decorate([
9827
+ core.Input()
9828
+ ], HistoricalPixAccountComponent.prototype, "listDataReciever", void 0);
9829
+ __decorate([
9830
+ core.Output()
9831
+ ], HistoricalPixAccountComponent.prototype, "isViewModeActive", void 0);
9832
+ __decorate([
9833
+ core.Output()
9834
+ ], HistoricalPixAccountComponent.prototype, "isEditModeActive", void 0);
9835
+ __decorate([
9836
+ core.Output()
9837
+ ], HistoricalPixAccountComponent.prototype, "isDeleteModeActive", void 0);
9796
9838
  __decorate([
9797
9839
  core.Input()
9798
9840
  ], HistoricalPixAccountComponent.prototype, "dateChange", null);
@@ -10457,6 +10499,7 @@
10457
10499
  this.endPoint = "hcm/payroll/queries/historicalEmployeePixQuery";
10458
10500
  this.keyPayload = "historicalEmployeePix";
10459
10501
  this.withSidebar = true;
10502
+ this.isOnlyView = new core.EventEmitter();
10460
10503
  this.enableView = new core.EventEmitter();
10461
10504
  this.ngUnsubscribe = new rxjs.Subject();
10462
10505
  this.loading = true;
@@ -10524,14 +10567,20 @@
10524
10567
  {
10525
10568
  label: this.translateService.instant("hcm.payroll.employees_image_cropper_view"),
10526
10569
  command: function () {
10527
- var dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, _this.dateFormat).format("YYYY-MM-DD");
10528
- if (_this.withSidebar) {
10529
- _this.router.navigate(["historical-pix-account/" + dateChange], {
10530
- relativeTo: _this.activatedRoute,
10531
- });
10570
+ if (_this.isAllowToViewHistorical) {
10571
+ var dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, _this.dateFormat).format("YYYY-MM-DD");
10572
+ if (_this.withSidebar) {
10573
+ _this.isOnlyView.emit(true);
10574
+ _this.router.navigate(["historical-pix-account/" + dateChange], {
10575
+ relativeTo: _this.activatedRoute,
10576
+ });
10577
+ }
10578
+ else {
10579
+ _this.enableView.emit(dateChange);
10580
+ }
10532
10581
  }
10533
10582
  else {
10534
- _this.enableView.emit(dateChange);
10583
+ _this.isNotAllowMessage();
10535
10584
  }
10536
10585
  },
10537
10586
  },
@@ -10542,11 +10591,7 @@
10542
10591
  _this.delete(rowData.id, rowData.dateChange);
10543
10592
  }
10544
10593
  else {
10545
- _this.messageService.add({
10546
- severity: "error",
10547
- summary: _this.translateService.instant("hcm.payroll.error"),
10548
- detail: _this.translateService.instant("hcm.payroll.permission_error_not_allowed"),
10549
- });
10594
+ _this.isNotAllowMessage();
10550
10595
  }
10551
10596
  },
10552
10597
  },
@@ -10604,6 +10649,13 @@
10604
10649
  });
10605
10650
  }
10606
10651
  };
10652
+ HistoricalPixAccountListComponent.prototype.isNotAllowMessage = function () {
10653
+ this.messageService.add({
10654
+ severity: "error",
10655
+ summary: this.translateService.instant("hcm.payroll.error"),
10656
+ detail: this.translateService.instant("hcm.payroll.permission_error_not_allowed"),
10657
+ });
10658
+ };
10607
10659
  HistoricalPixAccountListComponent.prototype.onGridLoad = function (payload) {
10608
10660
  if (payload && payload.length) {
10609
10661
  this.lastRecord = payload[0];
@@ -10611,21 +10663,21 @@
10611
10663
  };
10612
10664
  Object.defineProperty(HistoricalPixAccountListComponent.prototype, "isAllowToAddHistorical", {
10613
10665
  get: function () {
10614
- return (this.permission["Incluir"]);
10666
+ return (this.permission["incluir"]);
10615
10667
  },
10616
10668
  enumerable: true,
10617
10669
  configurable: true
10618
10670
  });
10619
10671
  Object.defineProperty(HistoricalPixAccountListComponent.prototype, "isAllowToDeleteHistorical", {
10620
10672
  get: function () {
10621
- return (this.permission["Excluir"]);
10673
+ return (this.permission["excluir"]);
10622
10674
  },
10623
10675
  enumerable: true,
10624
10676
  configurable: true
10625
10677
  });
10626
10678
  Object.defineProperty(HistoricalPixAccountListComponent.prototype, "isAllowToViewHistorical", {
10627
10679
  get: function () {
10628
- return (this.permission["Visualizar"]);
10680
+ return (this.permission["visualizar"]);
10629
10681
  },
10630
10682
  enumerable: true,
10631
10683
  configurable: true
@@ -10680,6 +10732,9 @@
10680
10732
  __decorate([
10681
10733
  core.Input()
10682
10734
  ], HistoricalPixAccountListComponent.prototype, "withSidebar", void 0);
10735
+ __decorate([
10736
+ core.Output()
10737
+ ], HistoricalPixAccountListComponent.prototype, "isOnlyView", void 0);
10683
10738
  __decorate([
10684
10739
  core.Output()
10685
10740
  ], HistoricalPixAccountListComponent.prototype, "enableView", void 0);