@senior-gestao-pessoas/payroll-core 9.0.0-e0d978a5-4bcc-4d90-975a-199ff4cd698c → 9.0.0-ffa996ad-435c-4748-b85e-90746de85131

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