@senior-gestao-pessoas/payroll-core 9.0.0-b36a631e-7e77-4983-9677-da5464d1db9a → 9.0.0-f44aac23-5fd8-44f9-a182-eb241bcff9ac

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.
@@ -3593,6 +3593,7 @@
3593
3593
  InputRestAutoCompleteEmployeeModelComponent.prototype.getParamsRest = function (search) {
3594
3594
  var returnFilter = {
3595
3595
  valueSearch: search,
3596
+ timeTrackingResumeType: { key: "FIRED" },
3596
3597
  };
3597
3598
  if (this.company) {
3598
3599
  returnFilter['company'] = this.company;
@@ -3603,9 +3604,6 @@
3603
3604
  if (this.employeeType) {
3604
3605
  returnFilter['employeeType'] = this.employeeType;
3605
3606
  }
3606
- if (this.timeTrackingResumeType) {
3607
- returnFilter['timeTrackingResumeType'] = { key: "FIRED" };
3608
- }
3609
3607
  return returnFilter;
3610
3608
  };
3611
3609
  /**