mpxj 12.6.0 → 12.8.0

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: 8984eb4073a8d9a00f9130d08657048d5b5a0cbc6979ffd00bfd11163fc0759a
4
- data.tar.gz: c654d842ebbb1c3fc2302706203a544d0bf54f8c5f8cd5042f7547596b6d5ffe
3
+ metadata.gz: d9b7f9088b3e1b8f7d8d7a67ccd319f4c32c8e37e7a65dc2d0b99a0c89602ce8
4
+ data.tar.gz: dc4981ae372bfe2f37eb835f979deff05687f011e46a856612a639fd4844970d
5
5
  SHA512:
6
- metadata.gz: b8401c851a3828eb71ec89256c745cf47068316f8817a89ffe3112cd634c5b2743261c4cd2026db3f10fa9f286ef63623202dd6a18aa24678df096143270abf4
7
- data.tar.gz: 440dcfc4cc763fe3866f35cd23c9907a2c959bbfbdd38586905dd789560b61be64ca60d9002112c6bc96a22947953ea946ac990e2631987c780fa6a7993affaa
6
+ metadata.gz: 889f9bac4140fecef404c7f41ff13cf3fbafe4d72cb390d3c76fa9d2fad8f6627463fc7f037e2ae5802edd517009f999097f7efa41de3bc09b38764d0eb5c112
7
+ data.tar.gz: 09938f32d420151ccea37cdb3c61ebab79d7ce6ab94caae238bd3ef5849499f8db97f22ea195fe0af90bb3df522bb82f5e563f5a7653baec70dd39b710f77eaa
data/lib/mpxj/mpxj.jar CHANGED
Binary file
@@ -200,6 +200,13 @@ module MPXJ
200
200
  get_date_value(attribute_values['baseline9_date'])
201
201
  end
202
202
 
203
+ # Retrieve the Baseline Calendar Name value
204
+ #
205
+ # @return Baseline Calendar Name value
206
+ def baseline_calendar_name
207
+ attribute_values['baseline_calendar_name']
208
+ end
209
+
203
210
  # Retrieve the Baseline Cost value
204
211
  #
205
212
  # @return Baseline Cost value
@@ -1223,6 +1230,7 @@ module MPXJ
1223
1230
  'baseline7_date' => :date,
1224
1231
  'baseline8_date' => :date,
1225
1232
  'baseline9_date' => :date,
1233
+ 'baseline_calendar_name' => :string,
1226
1234
  'baseline_cost' => :currency,
1227
1235
  'baseline_date' => :date,
1228
1236
  'baseline_duration' => :duration,
@@ -102,6 +102,20 @@ module MPXJ
102
102
  get_duration_value(attribute_values['actual_work'])
103
103
  end
104
104
 
105
+ # Retrieve the Actual Work (Labor) value
106
+ #
107
+ # @return Actual Work (Labor) value
108
+ def actual_work_labor
109
+ get_duration_value(attribute_values['actual_work_labor'])
110
+ end
111
+
112
+ # Retrieve the Actual Work (Nonlabor) value
113
+ #
114
+ # @return Actual Work (Nonlabor) value
115
+ def actual_work_nonlabor
116
+ get_duration_value(attribute_values['actual_work_nonlabor'])
117
+ end
118
+
105
119
  # Retrieve the Actual Work Protected value
106
120
  #
107
121
  # @return Actual Work Protected value
@@ -5639,6 +5653,20 @@ module MPXJ
5639
5653
  get_duration_value(attribute_values['planned_work'])
5640
5654
  end
5641
5655
 
5656
+ # Retrieve the Planned Work (Labor) value
5657
+ #
5658
+ # @return Planned Work (Labor) value
5659
+ def planned_work_labor
5660
+ get_duration_value(attribute_values['planned_work_labor'])
5661
+ end
5662
+
5663
+ # Retrieve the Planned Work (Nonlabor) value
5664
+ #
5665
+ # @return Planned Work (Nonlabor) value
5666
+ def planned_work_nonlabor
5667
+ get_duration_value(attribute_values['planned_work_nonlabor'])
5668
+ end
5669
+
5642
5670
  # Retrieve the Predecessors value
5643
5671
  #
5644
5672
  # @return Predecessors value
@@ -5779,6 +5807,20 @@ module MPXJ
5779
5807
  get_duration_value(attribute_values['remaining_work'])
5780
5808
  end
5781
5809
 
5810
+ # Retrieve the Remaining Work (Labor) value
5811
+ #
5812
+ # @return Remaining Work (Labor) value
5813
+ def remaining_work_labor
5814
+ get_duration_value(attribute_values['remaining_work_labor'])
5815
+ end
5816
+
5817
+ # Retrieve the Remaining Work (Nonlabor) value
5818
+ #
5819
+ # @return Remaining Work (Nonlabor) value
5820
+ def remaining_work_nonlabor
5821
+ get_duration_value(attribute_values['remaining_work_nonlabor'])
5822
+ end
5823
+
5782
5824
  # Retrieve the Request/Demand value
5783
5825
  #
5784
5826
  # @return Request/Demand value
@@ -6851,6 +6893,8 @@ module MPXJ
6851
6893
  'actual_overtime_work_protected' => :work,
6852
6894
  'actual_start' => :date,
6853
6895
  'actual_work' => :work,
6896
+ 'actual_work_labor' => :duration,
6897
+ 'actual_work_nonlabor' => :duration,
6854
6898
  'actual_work_protected' => :work,
6855
6899
  'acwp' => :currency,
6856
6900
  'assignment' => :boolean,
@@ -7642,6 +7686,8 @@ module MPXJ
7642
7686
  'planned_finish' => :date,
7643
7687
  'planned_start' => :date,
7644
7688
  'planned_work' => :work,
7689
+ 'planned_work_labor' => :duration,
7690
+ 'planned_work_nonlabor' => :duration,
7645
7691
  'predecessors' => :relation_list,
7646
7692
  'preleveled_finish' => :date,
7647
7693
  'preleveled_start' => :date,
@@ -7662,6 +7708,8 @@ module MPXJ
7662
7708
  'remaining_overtime_cost' => :currency,
7663
7709
  'remaining_overtime_work' => :work,
7664
7710
  'remaining_work' => :work,
7711
+ 'remaining_work_labor' => :duration,
7712
+ 'remaining_work_nonlabor' => :duration,
7665
7713
  'request_demand' => :string,
7666
7714
  'resource_enterprise_multi_value_code20' => :string,
7667
7715
  'resource_enterprise_multi_value_code21' => :string,
data/lib/mpxj/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # MPXJ gem module
2
2
  module MPXJ
3
3
  # MPXJ gem version number
4
- VERSION = "12.6.0"
4
+ VERSION = "12.8.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mpxj
3
3
  version: !ruby/object:Gem::Version
4
- version: 12.6.0
4
+ version: 12.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Iles
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-22 00:00:00.000000000 Z
11
+ date: 2024-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler