@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.
@@ -1298,9 +1298,6 @@
1298
1298
  EmployeeSummaryService.prototype.getEmployeeBasicInformations = function () {
1299
1299
  return this.employeeBasicInformations.asObservable();
1300
1300
  };
1301
- EmployeeSummaryService.prototype.findEmployeeCompleteParameterizable = function (path, autocompleteEmployee) {
1302
- return this.http.post("hcm/payroll/queries/" + path, autocompleteEmployee);
1303
- };
1304
1301
  EmployeeSummaryService.ctorParameters = function () { return [
1305
1302
  { type: http.HttpClient }
1306
1303
  ]; };
@@ -3610,8 +3607,12 @@
3610
3607
  if (this.employeeType) {
3611
3608
  returnFilter['employeeType'] = this.employeeType;
3612
3609
  }
3613
- if (this.useWorkflow === false) {
3614
- returnFilter['timeTrackingResumeType'] = { key: "AWAY" };
3610
+ /**
3611
+ * If para uso do BPO
3612
+ * Serve para tirar os colaboradores demitidos do dropbox do autocomplete
3613
+ */
3614
+ if (this.useWorkflow) {
3615
+ returnFilter['timeTrackingResumeType'] = { key: "FIRED" };
3615
3616
  }
3616
3617
  return returnFilter;
3617
3618
  };