@senior-gestao-pessoas/payroll-core 9.3.0 → 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.
@@ -9422,17 +9422,23 @@
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;
9433
9434
  this.isViewMode = false;
9434
9435
  this.withSideBar = true;
9435
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 = [];
9436
9442
  this.visibleChange = new core.EventEmitter();
9437
9443
  this.ngUnsubscribe = new rxjs.Subject();
9438
9444
  this.orderBy = {
@@ -9466,26 +9472,50 @@
9466
9472
  visible: _this.isEditMode,
9467
9473
  label: _this.translateService.instant("hcm.payroll.employees_image_cropper_view"),
9468
9474
  command: function () {
9469
- rowData["index"] = key;
9470
- _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: false };
9471
- _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
+ }
9472
9483
  },
9473
9484
  },
9474
9485
  {
9475
9486
  visible: !!(!_this.isEditMode && _this.withSideBar),
9476
9487
  label: _this.translateService.instant("hcm.payroll.edit"),
9477
9488
  command: function () {
9478
- rowData["index"] = key;
9479
- _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
9480
- _this.visible = true;
9489
+ if (_this.isAllowToEditHistorical) {
9490
+ rowData["index"] = key;
9491
+ _this.pixAccountItemInput = { currentItem: rowData, listData: _this.listDataNoPage, isEditMode: true };
9492
+ _this.visible = true;
9493
+ }
9494
+ else {
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
+ }
9501
+ }
9481
9502
  },
9482
9503
  },
9483
9504
  {
9484
9505
  visible: !_this.isEditMode,
9485
9506
  label: _this.translateService.instant("hcm.payroll.delete"),
9486
9507
  command: function () {
9487
- _this.loading = true;
9488
- _this.deleteAnnuityItem(key);
9508
+ if (_this.isAllowToDeleteHistorical) {
9509
+ _this.loading = true;
9510
+ _this.deleteAnnuityItem(key);
9511
+ }
9512
+ else {
9513
+ _this.isDeleteModeActive.emit(true);
9514
+ if (_this.listFromApp.length == 0) {
9515
+ _this.loading = true;
9516
+ _this.deleteAnnuityItem(key);
9517
+ }
9518
+ }
9489
9519
  },
9490
9520
  },
9491
9521
  ];
@@ -9495,6 +9525,11 @@
9495
9525
  HistoricalPixAccountComponent.prototype.ngOnInit = function () {
9496
9526
  this.formGroup.setControl(this.fieldFormGroup, this.historicalPixAccountList);
9497
9527
  };
9528
+ HistoricalPixAccountComponent.prototype.ngOnChanges = function (changes) {
9529
+ if (changes['listDataReciever'] && changes['listDataReciever'].currentValue) {
9530
+ this.listFromApp = changes['listDataReciever'].currentValue;
9531
+ }
9532
+ };
9498
9533
  HistoricalPixAccountComponent.prototype.createFormGroup = function () {
9499
9534
  this.historicalPixAccountList = this.formBuilder.group({
9500
9535
  historicalPixAccountList: this.formBuilder.control(null),
@@ -9551,6 +9586,13 @@
9551
9586
  this.pixAccountItemInput = {};
9552
9587
  this.visible = true;
9553
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
+ };
9554
9596
  HistoricalPixAccountComponent.prototype.deleteAnnuityItem = function (index) {
9555
9597
  var newlist = __spread(this.getHistoricalPixAccountList());
9556
9598
  newlist.sort(compareValues(this.orderBy.field, this.orderBy.direction));
@@ -9696,10 +9738,39 @@
9696
9738
  HistoricalPixAccountComponent.prototype.getFormattedPercentage = function (value) {
9697
9739
  return FormatUtilsService.getFormattedPercentage(value);
9698
9740
  };
9741
+ Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToAddHistorical", {
9742
+ get: function () {
9743
+ return (this.permission["incluir"]);
9744
+ },
9745
+ enumerable: true,
9746
+ configurable: true
9747
+ });
9748
+ Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToDeleteHistorical", {
9749
+ get: function () {
9750
+ return (this.permission["excluir"]);
9751
+ },
9752
+ enumerable: true,
9753
+ configurable: true
9754
+ });
9755
+ Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToEditHistorical", {
9756
+ get: function () {
9757
+ return (this.permission["editar"]);
9758
+ },
9759
+ enumerable: true,
9760
+ configurable: true
9761
+ });
9762
+ Object.defineProperty(HistoricalPixAccountComponent.prototype, "isAllowToViewHistorical", {
9763
+ get: function () {
9764
+ return (this.permission["visualizar"]);
9765
+ },
9766
+ enumerable: true,
9767
+ configurable: true
9768
+ });
9699
9769
  HistoricalPixAccountComponent.ctorParameters = function () { return [
9700
9770
  { type: core$1.TranslateService },
9701
9771
  { type: core.ChangeDetectorRef },
9702
- { type: forms.FormBuilder }
9772
+ { type: forms.FormBuilder },
9773
+ { type: api.MessageService }
9703
9774
  ]; };
9704
9775
  __decorate([
9705
9776
  core.ViewChild(angularComponents.CustomFieldsComponent, { static: false })
@@ -9749,6 +9820,21 @@
9749
9820
  __decorate([
9750
9821
  core.Input()
9751
9822
  ], HistoricalPixAccountComponent.prototype, "defaultCpfNumber", void 0);
9823
+ __decorate([
9824
+ core.Input()
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);
9752
9838
  __decorate([
9753
9839
  core.Input()
9754
9840
  ], HistoricalPixAccountComponent.prototype, "dateChange", null);
@@ -9980,6 +10066,7 @@
9980
10066
  percentage: this.formBuilder.control(null, forms.Validators.compose(__spread(this.initialValidatorOfPercentage, [
9981
10067
  forms.Validators.max(this.maxValuePercentage),
9982
10068
  ]))),
10069
+ externalId: this.formBuilder.control(null),
9983
10070
  customFields: this.formBuilder.control(null),
9984
10071
  });
9985
10072
  };
@@ -10412,6 +10499,7 @@
10412
10499
  this.endPoint = "hcm/payroll/queries/historicalEmployeePixQuery";
10413
10500
  this.keyPayload = "historicalEmployeePix";
10414
10501
  this.withSidebar = true;
10502
+ this.isOnlyView = new core.EventEmitter();
10415
10503
  this.enableView = new core.EventEmitter();
10416
10504
  this.ngUnsubscribe = new rxjs.Subject();
10417
10505
  this.loading = true;
@@ -10479,13 +10567,21 @@
10479
10567
  {
10480
10568
  label: this.translateService.instant("hcm.payroll.employees_image_cropper_view"),
10481
10569
  command: function () {
10482
- var dateChange = rowData && rowData.dateChange && moment$e(rowData.dateChange, _this.dateFormat).format("YYYY-MM-DD");
10483
- if (_this.withSidebar)
10484
- _this.router.navigate(["historical-pix-account/" + dateChange], {
10485
- relativeTo: _this.activatedRoute,
10486
- });
10487
- else
10488
- _this.enableView.emit(dateChange);
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
+ }
10581
+ }
10582
+ else {
10583
+ _this.isNotAllowMessage();
10584
+ }
10489
10585
  },
10490
10586
  },
10491
10587
  {
@@ -10495,11 +10591,7 @@
10495
10591
  _this.delete(rowData.id, rowData.dateChange);
10496
10592
  }
10497
10593
  else {
10498
- _this.messageService.add({
10499
- severity: "error",
10500
- summary: _this.translateService.instant("hcm.payroll.error"),
10501
- detail: _this.translateService.instant("hcm.payroll.permission_error_not_allowed"),
10502
- });
10594
+ _this.isNotAllowMessage();
10503
10595
  }
10504
10596
  },
10505
10597
  },
@@ -10557,6 +10649,13 @@
10557
10649
  });
10558
10650
  }
10559
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
+ };
10560
10659
  HistoricalPixAccountListComponent.prototype.onGridLoad = function (payload) {
10561
10660
  if (payload && payload.length) {
10562
10661
  this.lastRecord = payload[0];
@@ -10576,6 +10675,13 @@
10576
10675
  enumerable: true,
10577
10676
  configurable: true
10578
10677
  });
10678
+ Object.defineProperty(HistoricalPixAccountListComponent.prototype, "isAllowToViewHistorical", {
10679
+ get: function () {
10680
+ return (this.permission["visualizar"]);
10681
+ },
10682
+ enumerable: true,
10683
+ configurable: true
10684
+ });
10579
10685
  Object.defineProperty(HistoricalPixAccountListComponent.prototype, "scopedActions", {
10580
10686
  get: function () {
10581
10687
  return this.getMenuActions.bind(this);
@@ -10626,6 +10732,9 @@
10626
10732
  __decorate([
10627
10733
  core.Input()
10628
10734
  ], HistoricalPixAccountListComponent.prototype, "withSidebar", void 0);
10735
+ __decorate([
10736
+ core.Output()
10737
+ ], HistoricalPixAccountListComponent.prototype, "isOnlyView", void 0);
10629
10738
  __decorate([
10630
10739
  core.Output()
10631
10740
  ], HistoricalPixAccountListComponent.prototype, "enableView", void 0);