bobhr 0.5.28 → 0.5.29

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 517aaa5bb5c24baa4d78f669c1e6ffe70aa3d2024bd5307384ce45d7ff606092
4
- data.tar.gz: a0fd0d5e69441b3fb531abe3a69f71df15505345192168069ff7370f03c151e7
3
+ metadata.gz: 9f50d6a3f23be5df92b26048b13dae9e8b6c566519f8ecd7611ba1a4175ba9d3
4
+ data.tar.gz: 7a71e366f4c6ba73d8fc23dbbf997fc27b2d6ac2a716b576c144a08b70922644
5
5
  SHA512:
6
- metadata.gz: eda0b5d8399ebf9792ec68a06dd6997cd94a3402460bd0cd78576a0462a3124c72df22f82ac3f5b841d2e02460677d6f4ee7cbcdba8c4e4186123257e8182151
7
- data.tar.gz: 27c3aa148f7bc244f7cedced5c84a1c77defe68e5cbe8828dc1cd13d3ac54418f4f1c50247c19caae8d140cc69d27ee9685b8c5dd892ce2f8bc4cbf405311137
6
+ metadata.gz: 43c4b4c0324c8d3fa2ff0820a7f2c294d1e50ead86115ce30b8a8c09453d7f62a545c81f82af404633304497e91b1cf62f898382b3afa55219c512dc2b2a4b76
7
+ data.tar.gz: 8bcd707124afa40ca6bc8173c568e9d36729c382ffcc8320cf7f9ba9edfdd5480aa02ec9538e6f6d3687352fb418edce1ee2f69236bee96cea1d0753e373255f
@@ -20,9 +20,24 @@ module Bob
20
20
 
21
21
  def self.all_leavers(start_date:, end_date:)
22
22
  all({ includeHumanReadable: true, showInactive: true }).select do |employee|
23
+
23
24
  next unless employee.internal.status == 'Inactive' && employee.internal.termination_date.present?
24
25
 
25
- termination_date = Date.parse(employee.internal.termination_date)
26
+ # Don't process employees that left before the period we are looking into
27
+ internal_term_date = Date.parse(employee.internal.termination_date)
28
+ next if internal_term_date.before?(start_date)
29
+
30
+ # Need to fetch lifecycle statuses, as garden leavers have left before the actual internal term date
31
+ lifecycle_statuses = Bob::Employee::LifecycleHistory.all(employee.id)
32
+ garden_leave_status = lifecycle_statuses.find { |status| status.status == 'garden leave' }
33
+
34
+ if garden_leave_status
35
+ lifecycle_statuses = Bob::Employee::LifecycleHistory.all(employee.id)
36
+ garden_leave_status = lifecycle_statuses.find { |status| status.status == 'garden leave' }
37
+ termination_date = Date.parse(garden_leave_status.effective_date)
38
+ end
39
+
40
+ termination_date ||= Date.parse(employee.internal.termination_date)
26
41
  (start_date..end_date).include?(termination_date)
27
42
  end
28
43
  end
data/lib/bob/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bob
4
- VERSION = '0.5.28'
4
+ VERSION = '0.5.29'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bobhr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.28
4
+ version: 0.5.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lien Van Den Steen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-28 00:00:00.000000000 Z
11
+ date: 2023-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json