mpxj 12.7.0 → 12.8.0

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: c4db888547c5675f0b27a3e5b7d35a5091b6f0a35f544b950f5b4fdf6639a186
4
- data.tar.gz: 0a34f49df6c68c2cb422d0d4c917554317fb556cc49291367f496d4868c7c169
3
+ metadata.gz: d9b7f9088b3e1b8f7d8d7a67ccd319f4c32c8e37e7a65dc2d0b99a0c89602ce8
4
+ data.tar.gz: dc4981ae372bfe2f37eb835f979deff05687f011e46a856612a639fd4844970d
5
5
  SHA512:
6
- metadata.gz: 4a243d64f38a2d5709aba5e8531f3b5ec59a4c859c1c0d6e4c1e1ddc210eed2e52d5ed9bc2999c742d3f11678cbeae3d22afe09730aa3a44bcb13f29e6b7e1e1
7
- data.tar.gz: dc7adbb1fdc51690ddacb3b1012058b0faed1e64d1da9312bed30f00543da2351a3c2d76310d3bf4eabf459ca56a2695f5dbfb31aff450a9b19d1311c7e56ad1
6
+ metadata.gz: 889f9bac4140fecef404c7f41ff13cf3fbafe4d72cb390d3c76fa9d2fad8f6627463fc7f037e2ae5802edd517009f999097f7efa41de3bc09b38764d0eb5c112
7
+ data.tar.gz: 09938f32d420151ccea37cdb3c61ebab79d7ce6ab94caae238bd3ef5849499f8db97f22ea195fe0af90bb3df522bb82f5e563f5a7653baec70dd39b710f77eaa
data/lib/mpxj/mpxj.jar CHANGED
Binary file
@@ -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.7.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.7.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-02-07 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