@senior-gestao-pessoas/payroll-core 9.0.0-92e64623-4edd-487f-9063-76ad386a5921 → 9.0.0-a2b82985-d263-40b2-96b2-8837862deecd

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.
@@ -1132,9 +1132,6 @@ var EmployeeSummaryService = /** @class */ (function () {
1132
1132
  EmployeeSummaryService.prototype.getEmployeeBasicInformations = function () {
1133
1133
  return this.employeeBasicInformations.asObservable();
1134
1134
  };
1135
- EmployeeSummaryService.prototype.findEmployeeCompleteParameterizable = function (path, autocompleteEmployee) {
1136
- return this.http.post("hcm/payroll/queries/" + path, autocompleteEmployee);
1137
- };
1138
1135
  EmployeeSummaryService.ctorParameters = function () { return [
1139
1136
  { type: HttpClient }
1140
1137
  ]; };
@@ -3444,8 +3441,12 @@ var InputRestAutoCompleteEmployeeModelComponent = /** @class */ (function () {
3444
3441
  if (this.employeeType) {
3445
3442
  returnFilter['employeeType'] = this.employeeType;
3446
3443
  }
3447
- if (this.useWorkflow === false) {
3448
- returnFilter['timeTrackingResumeType'] = { key: "AWAY" };
3444
+ /**
3445
+ * If para uso do BPO
3446
+ * Serve para tirar os colaboradores demitidos do dropbox do autocomplete
3447
+ */
3448
+ if (this.useWorkflow) {
3449
+ returnFilter['timeTrackingResumeType'] = { key: "FIRED" };
3449
3450
  }
3450
3451
  return returnFilter;
3451
3452
  };