mpxj 13.7.0 → 13.9.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 +4 -4
- data/lib/mpxj/assignment_methods.rb +8 -0
- data/lib/mpxj/{commons-codec-1.17.0.jar → commons-codec-1.17.1.jar} +0 -0
- data/lib/mpxj/commons-io-2.18.0.jar +0 -0
- data/lib/mpxj/log4j-api-2.24.3.jar +0 -0
- data/lib/mpxj/mpxj.jar +0 -0
- data/lib/mpxj/{poi-5.3.0.jar → poi-5.4.0.jar} +0 -0
- data/lib/mpxj/property_methods.rb +8 -0
- data/lib/mpxj/resource_methods.rb +24 -0
- data/lib/mpxj/version.rb +1 -1
- metadata +6 -6
- data/lib/mpxj/commons-io-2.16.1.jar +0 -0
- data/lib/mpxj/log4j-api-2.23.1.jar +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b2104625765e389c62fc924c765ecc23dd51b0acb039a06ce61f78c9b301382
|
4
|
+
data.tar.gz: aa5b79f295d6550af0b25fd13e65f0d3e07b613eb347894c63515d296b97bc4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1edcf863de1ae971c55bb0849b4c9e4b578ba7c89010f3a6f08093203d4c16619fa10a16a75fc4691d981d43becf62124d1029beebf8e8e82a11ee633a2e1e2
|
7
|
+
data.tar.gz: 3b69506a33190bfa7615c43431c009f79e76c7bc6fedde25f0cef4307ff584ad37f194100fb8a5117657bed2749ac39fffa8de8ef20548a0277da531d991d33f
|
@@ -2881,6 +2881,13 @@ module MPXJ
|
|
2881
2881
|
get_duration_value(attribute_values['remaining_work'])
|
2882
2882
|
end
|
2883
2883
|
|
2884
|
+
# Retrieve the Resource Assignment Code Values value
|
2885
|
+
#
|
2886
|
+
# @return Resource Assignment Code Values value
|
2887
|
+
def resource_assignment_code_values
|
2888
|
+
attribute_values['resource_assignment_code_values']
|
2889
|
+
end
|
2890
|
+
|
2884
2891
|
# Retrieve the Resource ID value
|
2885
2892
|
#
|
2886
2893
|
# @return Resource ID value
|
@@ -3944,6 +3951,7 @@ module MPXJ
|
|
3944
3951
|
'remaining_overtime_cost' => :currency,
|
3945
3952
|
'remaining_overtime_work' => :work,
|
3946
3953
|
'remaining_work' => :work,
|
3954
|
+
'resource_assignment_code_values' => :code_values,
|
3947
3955
|
'resource_id' => :integer,
|
3948
3956
|
'resource_name' => :string,
|
3949
3957
|
'resource_request_type' => :resource_request_type,
|
Binary file
|
Binary file
|
Binary file
|
data/lib/mpxj/mpxj.jar
CHANGED
Binary file
|
Binary file
|
@@ -984,6 +984,13 @@ module MPXJ
|
|
984
984
|
get_boolean_value(attribute_values['preserve_scheduled_early_and_late_dates'])
|
985
985
|
end
|
986
986
|
|
987
|
+
# Retrieve the Project Code Values value
|
988
|
+
#
|
989
|
+
# @return Project Code Values value
|
990
|
+
def project_code_values
|
991
|
+
attribute_values['project_code_values']
|
992
|
+
end
|
993
|
+
|
987
994
|
# Retrieve the Project Externally Edited value
|
988
995
|
#
|
989
996
|
# @return Project Externally Edited value
|
@@ -1363,6 +1370,7 @@ module MPXJ
|
|
1363
1370
|
'presentation_format' => :string,
|
1364
1371
|
'preserve_minimum_float_when_leveling' => :duration,
|
1365
1372
|
'preserve_scheduled_early_and_late_dates' => :boolean,
|
1373
|
+
'project_code_values' => :code_values,
|
1366
1374
|
'project_externally_edited' => :boolean,
|
1367
1375
|
'project_file_path' => :string,
|
1368
1376
|
'project_id' => :string,
|
@@ -830,6 +830,13 @@ module MPXJ
|
|
830
830
|
get_date_value(attribute_values['created'])
|
831
831
|
end
|
832
832
|
|
833
|
+
# Retrieve the Currency Unique ID value
|
834
|
+
#
|
835
|
+
# @return Currency Unique ID value
|
836
|
+
def currency_unique_id
|
837
|
+
get_integer_value(attribute_values['currency_unique_id'])
|
838
|
+
end
|
839
|
+
|
833
840
|
# Retrieve the CV value
|
834
841
|
#
|
835
842
|
# @return CV value
|
@@ -3420,6 +3427,13 @@ module MPXJ
|
|
3420
3427
|
attribute_values['request_demand']
|
3421
3428
|
end
|
3422
3429
|
|
3430
|
+
# Retrieve the Resource Code Values value
|
3431
|
+
#
|
3432
|
+
# @return Resource Code Values value
|
3433
|
+
def resource_code_values
|
3434
|
+
attribute_values['resource_code_values']
|
3435
|
+
end
|
3436
|
+
|
3423
3437
|
# Retrieve the Resource ID value
|
3424
3438
|
#
|
3425
3439
|
# @return Resource ID value
|
@@ -3441,6 +3455,13 @@ module MPXJ
|
|
3441
3455
|
get_boolean_value(attribute_values['role'])
|
3442
3456
|
end
|
3443
3457
|
|
3458
|
+
# Retrieve the Role Code Values value
|
3459
|
+
#
|
3460
|
+
# @return Role Code Values value
|
3461
|
+
def role_code_values
|
3462
|
+
attribute_values['role_code_values']
|
3463
|
+
end
|
3464
|
+
|
3444
3465
|
# Retrieve the Sequence Number value
|
3445
3466
|
#
|
3446
3467
|
# @return Sequence Number value
|
@@ -4022,6 +4043,7 @@ module MPXJ
|
|
4022
4043
|
'cost_rate_table' => :short,
|
4023
4044
|
'cost_variance' => :currency,
|
4024
4045
|
'created' => :date,
|
4046
|
+
'currency_unique_id' => :integer,
|
4025
4047
|
'cv' => :currency,
|
4026
4048
|
'date1' => :date,
|
4027
4049
|
'date10' => :date,
|
@@ -4392,9 +4414,11 @@ module MPXJ
|
|
4392
4414
|
'remaining_overtime_work' => :work,
|
4393
4415
|
'remaining_work' => :work,
|
4394
4416
|
'request_demand' => :string,
|
4417
|
+
'resource_code_values' => :code_values,
|
4395
4418
|
'resource_id' => :string,
|
4396
4419
|
'response_pending' => :boolean,
|
4397
4420
|
'role' => :boolean,
|
4421
|
+
'role_code_values' => :code_values,
|
4398
4422
|
'sequence_number' => :integer,
|
4399
4423
|
'shift_unique_id' => :integer,
|
4400
4424
|
'standard_rate' => :rate,
|
data/lib/mpxj/version.rb
CHANGED
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: 13.
|
4
|
+
version: 13.9.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:
|
11
|
+
date: 2025-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -123,9 +123,9 @@ files:
|
|
123
123
|
- lib/mpxj/calendar_exception.rb
|
124
124
|
- lib/mpxj/calendar_hours.rb
|
125
125
|
- lib/mpxj/calendar_week.rb
|
126
|
-
- lib/mpxj/commons-codec-1.17.
|
126
|
+
- lib/mpxj/commons-codec-1.17.1.jar
|
127
127
|
- lib/mpxj/commons-collections4-4.4.jar
|
128
|
-
- lib/mpxj/commons-io-2.
|
128
|
+
- lib/mpxj/commons-io-2.18.0.jar
|
129
129
|
- lib/mpxj/commons-lang3-3.10.jar
|
130
130
|
- lib/mpxj/commons-logging-1.2.jar
|
131
131
|
- lib/mpxj/commons-math3-3.6.1.jar
|
@@ -141,10 +141,10 @@ files:
|
|
141
141
|
- lib/mpxj/jgoodies-common-1.8.1.jar
|
142
142
|
- lib/mpxj/jsoup-1.15.3.jar
|
143
143
|
- lib/mpxj/junit-4.13.1.jar
|
144
|
-
- lib/mpxj/log4j-api-2.
|
144
|
+
- lib/mpxj/log4j-api-2.24.3.jar
|
145
145
|
- lib/mpxj/mpxj.jar
|
146
146
|
- lib/mpxj/password_protected.rb
|
147
|
-
- lib/mpxj/poi-5.
|
147
|
+
- lib/mpxj/poi-5.4.0.jar
|
148
148
|
- lib/mpxj/project.rb
|
149
149
|
- lib/mpxj/properties.rb
|
150
150
|
- lib/mpxj/property_methods.rb
|
Binary file
|
Binary file
|