bobhr 0.5.32 → 0.5.33

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29fe6ef3d705dfdcb583e4ebf400ee9e3b3957fc504fd2516e7048d9ef62f4b2
4
- data.tar.gz: fc2b40de9306ae742ae22cae4e83b2e789164aea5f148f414807b07bb790eb11
3
+ metadata.gz: a51b60f5c4ce454ba34104e17e5d7c9043b60a49ade8878ced0f3464cb6dde28
4
+ data.tar.gz: 96aff1182f54706bb5cb4fde06d94abb665f1ad361333df941a7a6e9a305c020
5
5
  SHA512:
6
- metadata.gz: 3d68b24386672b1235fb822d91249ab8263d95fd8d3edefd70e56f4dd427aa37cb7680a8466ca825882734ab7ebabb5762e1170585bef7c0bf5c89b87976c9dd
7
- data.tar.gz: f05383c71f9ef8077fedccc8f0fa6d4ec1283c43801f340960c7006a8220bca0f240163487135a457b51cc87025f65d8158356e7a71c93cfd91c2d9b383ed053
6
+ metadata.gz: 91687da4b837df04d75160c36b5057c8f4809df7cea5a16ddcb15a793e775003370cde593afa787acbbe1e6d9d8fcc95756464b15c9ea1745e7059fc3bb91d84
7
+ data.tar.gz: cf7f4bfbd9e63dcb7d7029a62fb7d947df61e55fde6a961f0819dbc7836bac10fc332b5754a5f3ec1c46cc51a9af57231b08036c779e7ceccffe0bd14abc051f
@@ -43,19 +43,6 @@ module Bob
43
43
  end
44
44
  end
45
45
 
46
- def self.all_anniversaries_this_month
47
- current_month = Date.current.month
48
-
49
- all.select do |employee|
50
- # Don't process employees that have an internal term date
51
- internal_term_date = Date.parse(employee.internal.termination_date)
52
- next if internal_term_date.present?
53
-
54
- parsed_start_date = Date.parse(employee.start_date)
55
- parsed_start_date.month == current_month
56
- end
57
- end
58
-
59
46
  def self.all_people_managers(params = { includeHumanReadable: true })
60
47
  response = get('people', params)
61
48
  EmployeeParser.new(response).managers
@@ -85,5 +85,22 @@ module Models
85
85
  def linkedin_profile
86
86
  human_readable.about.social_data&.linkedin
87
87
  end
88
+
89
+ def currency
90
+ payroll.salary.payment.currency
91
+ end
92
+
93
+ def base_pay
94
+ payroll.salary.payment.value
95
+ end
96
+
97
+ def variable_pay
98
+ # TODO: check if we handle all the types with this field
99
+ payroll.variable.field_255298499.amount&.value || 0.0
100
+ end
101
+
102
+ def job_role_id
103
+ human_readable.custom.category_1645574919835.field_1657052825123
104
+ end
88
105
  end
89
106
  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.32'
4
+ VERSION = '0.5.33'
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.32
4
+ version: 0.5.33
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-07-17 00:00:00.000000000 Z
11
+ date: 2023-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json