mpxj 15.3.0 → 16.0.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 +369 -233
- data/lib/mpxj/jackson-annotations-2.21.jar +0 -0
- data/lib/mpxj/{jackson-core-2.20.1.jar → jackson-core-2.21.1.jar} +0 -0
- data/lib/mpxj/{jackson-databind-2.20.1.jar → jackson-databind-2.21.1.jar} +0 -0
- data/lib/mpxj/{jsoup-1.21.2.jar → jsoup-1.22.1.jar} +0 -0
- data/lib/mpxj/{junit-jupiter-api-5.14.1.jar → junit-jupiter-api-5.14.3.jar} +0 -0
- data/lib/mpxj/{junit-jupiter-engine-5.14.1.jar → junit-jupiter-engine-5.14.3.jar} +0 -0
- data/lib/mpxj/{junit-platform-commons-1.14.1.jar → junit-platform-commons-1.14.3.jar} +0 -0
- data/lib/mpxj/{junit-platform-engine-1.14.1.jar → junit-platform-engine-1.14.3.jar} +0 -0
- data/lib/mpxj/{junit-platform-launcher-1.14.1.jar → junit-platform-launcher-1.14.3.jar} +0 -0
- data/lib/mpxj/mpxj.jar +0 -0
- data/lib/mpxj/resource_methods.rb +168 -0
- data/lib/mpxj/{sqlite-jdbc-3.51.1.0.jar → sqlite-jdbc-3.51.2.0.jar} +0 -0
- data/lib/mpxj/task_methods.rb +40 -8
- data/lib/mpxj/version.rb +1 -1
- metadata +12 -12
- data/lib/mpxj/jackson-annotations-2.20.jar +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/mpxj/mpxj.jar
CHANGED
|
Binary file
|
|
@@ -32,6 +32,13 @@ module MPXJ
|
|
|
32
32
|
get_date_value(attribute_values['actual_finish'])
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
# Retrieve the Actual Material value
|
|
36
|
+
#
|
|
37
|
+
# @return Actual Material value
|
|
38
|
+
def actual_material
|
|
39
|
+
get_float_value(attribute_values['actual_material'])
|
|
40
|
+
end
|
|
41
|
+
|
|
35
42
|
# Retrieve the Actual Overtime Cost value
|
|
36
43
|
#
|
|
37
44
|
# @return Actual Overtime Cost value
|
|
@@ -53,6 +60,20 @@ module MPXJ
|
|
|
53
60
|
get_duration_value(attribute_values['actual_overtime_work_protected'])
|
|
54
61
|
end
|
|
55
62
|
|
|
63
|
+
# Retrieve the Actual Regular Cost value
|
|
64
|
+
#
|
|
65
|
+
# @return Actual Regular Cost value
|
|
66
|
+
def actual_regular_cost
|
|
67
|
+
get_float_value(attribute_values['actual_regular_cost'])
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# Retrieve the Actual Regular Work value
|
|
71
|
+
#
|
|
72
|
+
# @return Actual Regular Work value
|
|
73
|
+
def actual_regular_work
|
|
74
|
+
get_duration_value(attribute_values['actual_regular_work'])
|
|
75
|
+
end
|
|
76
|
+
|
|
56
77
|
# Retrieve the Actual Start value
|
|
57
78
|
#
|
|
58
79
|
# @return Actual Start value
|
|
@@ -158,6 +179,13 @@ module MPXJ
|
|
|
158
179
|
get_date_value(attribute_values['baseline10_finish'])
|
|
159
180
|
end
|
|
160
181
|
|
|
182
|
+
# Retrieve the Baseline10 Material value
|
|
183
|
+
#
|
|
184
|
+
# @return Baseline10 Material value
|
|
185
|
+
def baseline10_material
|
|
186
|
+
get_float_value(attribute_values['baseline10_material'])
|
|
187
|
+
end
|
|
188
|
+
|
|
161
189
|
# Retrieve the Baseline10 Start value
|
|
162
190
|
#
|
|
163
191
|
# @return Baseline10 Start value
|
|
@@ -200,6 +228,13 @@ module MPXJ
|
|
|
200
228
|
get_date_value(attribute_values['baseline1_finish'])
|
|
201
229
|
end
|
|
202
230
|
|
|
231
|
+
# Retrieve the Baseline1 Material value
|
|
232
|
+
#
|
|
233
|
+
# @return Baseline1 Material value
|
|
234
|
+
def baseline1_material
|
|
235
|
+
get_float_value(attribute_values['baseline1_material'])
|
|
236
|
+
end
|
|
237
|
+
|
|
203
238
|
# Retrieve the Baseline1 Start value
|
|
204
239
|
#
|
|
205
240
|
# @return Baseline1 Start value
|
|
@@ -242,6 +277,13 @@ module MPXJ
|
|
|
242
277
|
get_date_value(attribute_values['baseline2_finish'])
|
|
243
278
|
end
|
|
244
279
|
|
|
280
|
+
# Retrieve the Baseline2 Material value
|
|
281
|
+
#
|
|
282
|
+
# @return Baseline2 Material value
|
|
283
|
+
def baseline2_material
|
|
284
|
+
get_float_value(attribute_values['baseline2_material'])
|
|
285
|
+
end
|
|
286
|
+
|
|
245
287
|
# Retrieve the Baseline2 Start value
|
|
246
288
|
#
|
|
247
289
|
# @return Baseline2 Start value
|
|
@@ -284,6 +326,13 @@ module MPXJ
|
|
|
284
326
|
get_date_value(attribute_values['baseline3_finish'])
|
|
285
327
|
end
|
|
286
328
|
|
|
329
|
+
# Retrieve the Baseline3 Material value
|
|
330
|
+
#
|
|
331
|
+
# @return Baseline3 Material value
|
|
332
|
+
def baseline3_material
|
|
333
|
+
get_float_value(attribute_values['baseline3_material'])
|
|
334
|
+
end
|
|
335
|
+
|
|
287
336
|
# Retrieve the Baseline3 Start value
|
|
288
337
|
#
|
|
289
338
|
# @return Baseline3 Start value
|
|
@@ -326,6 +375,13 @@ module MPXJ
|
|
|
326
375
|
get_date_value(attribute_values['baseline4_finish'])
|
|
327
376
|
end
|
|
328
377
|
|
|
378
|
+
# Retrieve the Baseline4 Material value
|
|
379
|
+
#
|
|
380
|
+
# @return Baseline4 Material value
|
|
381
|
+
def baseline4_material
|
|
382
|
+
get_float_value(attribute_values['baseline4_material'])
|
|
383
|
+
end
|
|
384
|
+
|
|
329
385
|
# Retrieve the Baseline4 Start value
|
|
330
386
|
#
|
|
331
387
|
# @return Baseline4 Start value
|
|
@@ -368,6 +424,13 @@ module MPXJ
|
|
|
368
424
|
get_date_value(attribute_values['baseline5_finish'])
|
|
369
425
|
end
|
|
370
426
|
|
|
427
|
+
# Retrieve the Baseline5 Material value
|
|
428
|
+
#
|
|
429
|
+
# @return Baseline5 Material value
|
|
430
|
+
def baseline5_material
|
|
431
|
+
get_float_value(attribute_values['baseline5_material'])
|
|
432
|
+
end
|
|
433
|
+
|
|
371
434
|
# Retrieve the Baseline5 Start value
|
|
372
435
|
#
|
|
373
436
|
# @return Baseline5 Start value
|
|
@@ -410,6 +473,13 @@ module MPXJ
|
|
|
410
473
|
get_date_value(attribute_values['baseline6_finish'])
|
|
411
474
|
end
|
|
412
475
|
|
|
476
|
+
# Retrieve the Baseline6 Material value
|
|
477
|
+
#
|
|
478
|
+
# @return Baseline6 Material value
|
|
479
|
+
def baseline6_material
|
|
480
|
+
get_float_value(attribute_values['baseline6_material'])
|
|
481
|
+
end
|
|
482
|
+
|
|
413
483
|
# Retrieve the Baseline6 Start value
|
|
414
484
|
#
|
|
415
485
|
# @return Baseline6 Start value
|
|
@@ -452,6 +522,13 @@ module MPXJ
|
|
|
452
522
|
get_date_value(attribute_values['baseline7_finish'])
|
|
453
523
|
end
|
|
454
524
|
|
|
525
|
+
# Retrieve the Baseline7 Material value
|
|
526
|
+
#
|
|
527
|
+
# @return Baseline7 Material value
|
|
528
|
+
def baseline7_material
|
|
529
|
+
get_float_value(attribute_values['baseline7_material'])
|
|
530
|
+
end
|
|
531
|
+
|
|
455
532
|
# Retrieve the Baseline7 Start value
|
|
456
533
|
#
|
|
457
534
|
# @return Baseline7 Start value
|
|
@@ -494,6 +571,13 @@ module MPXJ
|
|
|
494
571
|
get_date_value(attribute_values['baseline8_finish'])
|
|
495
572
|
end
|
|
496
573
|
|
|
574
|
+
# Retrieve the Baseline8 Material value
|
|
575
|
+
#
|
|
576
|
+
# @return Baseline8 Material value
|
|
577
|
+
def baseline8_material
|
|
578
|
+
get_float_value(attribute_values['baseline8_material'])
|
|
579
|
+
end
|
|
580
|
+
|
|
497
581
|
# Retrieve the Baseline8 Start value
|
|
498
582
|
#
|
|
499
583
|
# @return Baseline8 Start value
|
|
@@ -536,6 +620,13 @@ module MPXJ
|
|
|
536
620
|
get_date_value(attribute_values['baseline9_finish'])
|
|
537
621
|
end
|
|
538
622
|
|
|
623
|
+
# Retrieve the Baseline9 Material value
|
|
624
|
+
#
|
|
625
|
+
# @return Baseline9 Material value
|
|
626
|
+
def baseline9_material
|
|
627
|
+
get_float_value(attribute_values['baseline9_material'])
|
|
628
|
+
end
|
|
629
|
+
|
|
539
630
|
# Retrieve the Baseline9 Start value
|
|
540
631
|
#
|
|
541
632
|
# @return Baseline9 Start value
|
|
@@ -578,6 +669,13 @@ module MPXJ
|
|
|
578
669
|
get_date_value(attribute_values['baseline_finish'])
|
|
579
670
|
end
|
|
580
671
|
|
|
672
|
+
# Retrieve the Baseline Material value
|
|
673
|
+
#
|
|
674
|
+
# @return Baseline Material value
|
|
675
|
+
def baseline_material
|
|
676
|
+
get_float_value(attribute_values['baseline_material'])
|
|
677
|
+
end
|
|
678
|
+
|
|
581
679
|
# Retrieve the Baseline Start value
|
|
582
680
|
#
|
|
583
681
|
# @return Baseline Start value
|
|
@@ -2923,6 +3021,13 @@ module MPXJ
|
|
|
2923
3021
|
get_integer_value(attribute_values['location_unique_id'])
|
|
2924
3022
|
end
|
|
2925
3023
|
|
|
3024
|
+
# Retrieve the Material value
|
|
3025
|
+
#
|
|
3026
|
+
# @return Material value
|
|
3027
|
+
def material
|
|
3028
|
+
get_float_value(attribute_values['material'])
|
|
3029
|
+
end
|
|
3030
|
+
|
|
2926
3031
|
# Retrieve the Material Label value
|
|
2927
3032
|
#
|
|
2928
3033
|
# @return Material Label value
|
|
@@ -3329,6 +3434,27 @@ module MPXJ
|
|
|
3329
3434
|
attribute_values['phonetics']
|
|
3330
3435
|
end
|
|
3331
3436
|
|
|
3437
|
+
# Retrieve the Planned Cost value
|
|
3438
|
+
#
|
|
3439
|
+
# @return Planned Cost value
|
|
3440
|
+
def planned_cost
|
|
3441
|
+
get_float_value(attribute_values['planned_cost'])
|
|
3442
|
+
end
|
|
3443
|
+
|
|
3444
|
+
# Retrieve the Planned Material value
|
|
3445
|
+
#
|
|
3446
|
+
# @return Planned Material value
|
|
3447
|
+
def planned_material
|
|
3448
|
+
get_float_value(attribute_values['planned_material'])
|
|
3449
|
+
end
|
|
3450
|
+
|
|
3451
|
+
# Retrieve the Planned Work value
|
|
3452
|
+
#
|
|
3453
|
+
# @return Planned Work value
|
|
3454
|
+
def planned_work
|
|
3455
|
+
get_duration_value(attribute_values['planned_work'])
|
|
3456
|
+
end
|
|
3457
|
+
|
|
3332
3458
|
# Retrieve the Pool value
|
|
3333
3459
|
#
|
|
3334
3460
|
# @return Pool value
|
|
@@ -3399,6 +3525,13 @@ module MPXJ
|
|
|
3399
3525
|
get_float_value(attribute_values['remaining_cost'])
|
|
3400
3526
|
end
|
|
3401
3527
|
|
|
3528
|
+
# Retrieve the Remaining Material value
|
|
3529
|
+
#
|
|
3530
|
+
# @return Remaining Material value
|
|
3531
|
+
def remaining_material
|
|
3532
|
+
get_float_value(attribute_values['remaining_material'])
|
|
3533
|
+
end
|
|
3534
|
+
|
|
3402
3535
|
# Retrieve the Remaining Overtime Cost value
|
|
3403
3536
|
#
|
|
3404
3537
|
# @return Remaining Overtime Cost value
|
|
@@ -3413,6 +3546,20 @@ module MPXJ
|
|
|
3413
3546
|
get_duration_value(attribute_values['remaining_overtime_work'])
|
|
3414
3547
|
end
|
|
3415
3548
|
|
|
3549
|
+
# Retrieve the Remaining Regular Cost value
|
|
3550
|
+
#
|
|
3551
|
+
# @return Remaining Regular Cost value
|
|
3552
|
+
def remaining_regular_cost
|
|
3553
|
+
get_float_value(attribute_values['remaining_regular_cost'])
|
|
3554
|
+
end
|
|
3555
|
+
|
|
3556
|
+
# Retrieve the Remaining Regular Work value
|
|
3557
|
+
#
|
|
3558
|
+
# @return Remaining Regular Work value
|
|
3559
|
+
def remaining_regular_work
|
|
3560
|
+
get_duration_value(attribute_values['remaining_regular_work'])
|
|
3561
|
+
end
|
|
3562
|
+
|
|
3416
3563
|
# Retrieve the Remaining Work value
|
|
3417
3564
|
#
|
|
3418
3565
|
# @return Remaining Work value
|
|
@@ -3929,9 +4076,12 @@ module MPXJ
|
|
|
3929
4076
|
'active' => :boolean,
|
|
3930
4077
|
'actual_cost' => :currency,
|
|
3931
4078
|
'actual_finish' => :date,
|
|
4079
|
+
'actual_material' => :numeric,
|
|
3932
4080
|
'actual_overtime_cost' => :currency,
|
|
3933
4081
|
'actual_overtime_work' => :work,
|
|
3934
4082
|
'actual_overtime_work_protected' => :work,
|
|
4083
|
+
'actual_regular_cost' => :currency,
|
|
4084
|
+
'actual_regular_work' => :work,
|
|
3935
4085
|
'actual_start' => :date,
|
|
3936
4086
|
'actual_work' => :work,
|
|
3937
4087
|
'actual_work_protected' => :work,
|
|
@@ -3947,66 +4097,77 @@ module MPXJ
|
|
|
3947
4097
|
'baseline10_budget_work' => :work,
|
|
3948
4098
|
'baseline10_cost' => :currency,
|
|
3949
4099
|
'baseline10_finish' => :date,
|
|
4100
|
+
'baseline10_material' => :numeric,
|
|
3950
4101
|
'baseline10_start' => :date,
|
|
3951
4102
|
'baseline10_work' => :work,
|
|
3952
4103
|
'baseline1_budget_cost' => :currency,
|
|
3953
4104
|
'baseline1_budget_work' => :work,
|
|
3954
4105
|
'baseline1_cost' => :currency,
|
|
3955
4106
|
'baseline1_finish' => :date,
|
|
4107
|
+
'baseline1_material' => :numeric,
|
|
3956
4108
|
'baseline1_start' => :date,
|
|
3957
4109
|
'baseline1_work' => :work,
|
|
3958
4110
|
'baseline2_budget_cost' => :currency,
|
|
3959
4111
|
'baseline2_budget_work' => :work,
|
|
3960
4112
|
'baseline2_cost' => :currency,
|
|
3961
4113
|
'baseline2_finish' => :date,
|
|
4114
|
+
'baseline2_material' => :numeric,
|
|
3962
4115
|
'baseline2_start' => :date,
|
|
3963
4116
|
'baseline2_work' => :work,
|
|
3964
4117
|
'baseline3_budget_cost' => :currency,
|
|
3965
4118
|
'baseline3_budget_work' => :work,
|
|
3966
4119
|
'baseline3_cost' => :currency,
|
|
3967
4120
|
'baseline3_finish' => :date,
|
|
4121
|
+
'baseline3_material' => :numeric,
|
|
3968
4122
|
'baseline3_start' => :date,
|
|
3969
4123
|
'baseline3_work' => :work,
|
|
3970
4124
|
'baseline4_budget_cost' => :currency,
|
|
3971
4125
|
'baseline4_budget_work' => :work,
|
|
3972
4126
|
'baseline4_cost' => :currency,
|
|
3973
4127
|
'baseline4_finish' => :date,
|
|
4128
|
+
'baseline4_material' => :numeric,
|
|
3974
4129
|
'baseline4_start' => :date,
|
|
3975
4130
|
'baseline4_work' => :work,
|
|
3976
4131
|
'baseline5_budget_cost' => :currency,
|
|
3977
4132
|
'baseline5_budget_work' => :work,
|
|
3978
4133
|
'baseline5_cost' => :currency,
|
|
3979
4134
|
'baseline5_finish' => :date,
|
|
4135
|
+
'baseline5_material' => :numeric,
|
|
3980
4136
|
'baseline5_start' => :date,
|
|
3981
4137
|
'baseline5_work' => :work,
|
|
3982
4138
|
'baseline6_budget_cost' => :currency,
|
|
3983
4139
|
'baseline6_budget_work' => :work,
|
|
3984
4140
|
'baseline6_cost' => :currency,
|
|
3985
4141
|
'baseline6_finish' => :date,
|
|
4142
|
+
'baseline6_material' => :numeric,
|
|
3986
4143
|
'baseline6_start' => :date,
|
|
3987
4144
|
'baseline6_work' => :work,
|
|
3988
4145
|
'baseline7_budget_cost' => :currency,
|
|
3989
4146
|
'baseline7_budget_work' => :work,
|
|
3990
4147
|
'baseline7_cost' => :currency,
|
|
3991
4148
|
'baseline7_finish' => :date,
|
|
4149
|
+
'baseline7_material' => :numeric,
|
|
3992
4150
|
'baseline7_start' => :date,
|
|
3993
4151
|
'baseline7_work' => :work,
|
|
3994
4152
|
'baseline8_budget_cost' => :currency,
|
|
3995
4153
|
'baseline8_budget_work' => :work,
|
|
3996
4154
|
'baseline8_cost' => :currency,
|
|
3997
4155
|
'baseline8_finish' => :date,
|
|
4156
|
+
'baseline8_material' => :numeric,
|
|
3998
4157
|
'baseline8_start' => :date,
|
|
3999
4158
|
'baseline8_work' => :work,
|
|
4000
4159
|
'baseline9_budget_cost' => :currency,
|
|
4001
4160
|
'baseline9_budget_work' => :work,
|
|
4002
4161
|
'baseline9_cost' => :currency,
|
|
4003
4162
|
'baseline9_finish' => :date,
|
|
4163
|
+
'baseline9_material' => :numeric,
|
|
4004
4164
|
'baseline9_start' => :date,
|
|
4005
4165
|
'baseline9_work' => :work,
|
|
4006
4166
|
'baseline_budget_cost' => :currency,
|
|
4007
4167
|
'baseline_budget_work' => :work,
|
|
4008
4168
|
'baseline_cost' => :currency,
|
|
4009
4169
|
'baseline_finish' => :date,
|
|
4170
|
+
'baseline_material' => :numeric,
|
|
4010
4171
|
'baseline_start' => :date,
|
|
4011
4172
|
'baseline_work' => :work,
|
|
4012
4173
|
'base_calendar' => :string,
|
|
@@ -4342,6 +4503,7 @@ module MPXJ
|
|
|
4342
4503
|
'leveling_delay' => :duration,
|
|
4343
4504
|
'linked_fields' => :boolean,
|
|
4344
4505
|
'location_unique_id' => :integer,
|
|
4506
|
+
'material' => :numeric,
|
|
4345
4507
|
'material_label' => :string,
|
|
4346
4508
|
'max_units' => :units,
|
|
4347
4509
|
'modify_on_integrate' => :boolean,
|
|
@@ -4400,6 +4562,9 @@ module MPXJ
|
|
|
4400
4562
|
'per_day' => :numeric,
|
|
4401
4563
|
'phone' => :string,
|
|
4402
4564
|
'phonetics' => :string,
|
|
4565
|
+
'planned_cost' => :currency,
|
|
4566
|
+
'planned_material' => :numeric,
|
|
4567
|
+
'planned_work' => :work,
|
|
4403
4568
|
'pool' => :numeric,
|
|
4404
4569
|
'primary_role_unique_id' => :integer,
|
|
4405
4570
|
'priority' => :numeric,
|
|
@@ -4410,8 +4575,11 @@ module MPXJ
|
|
|
4410
4575
|
'rate' => :numeric,
|
|
4411
4576
|
'regular_work' => :work,
|
|
4412
4577
|
'remaining_cost' => :currency,
|
|
4578
|
+
'remaining_material' => :numeric,
|
|
4413
4579
|
'remaining_overtime_cost' => :currency,
|
|
4414
4580
|
'remaining_overtime_work' => :work,
|
|
4581
|
+
'remaining_regular_cost' => :currency,
|
|
4582
|
+
'remaining_regular_work' => :work,
|
|
4415
4583
|
'remaining_work' => :work,
|
|
4416
4584
|
'request_demand' => :string,
|
|
4417
4585
|
'resource_code_values' => :code_values,
|
|
Binary file
|
data/lib/mpxj/task_methods.rb
CHANGED
|
@@ -95,6 +95,20 @@ module MPXJ
|
|
|
95
95
|
get_duration_value(attribute_values['actual_overtime_work_protected'])
|
|
96
96
|
end
|
|
97
97
|
|
|
98
|
+
# Retrieve the Actual Regular Cost value
|
|
99
|
+
#
|
|
100
|
+
# @return Actual Regular Cost value
|
|
101
|
+
def actual_regular_cost
|
|
102
|
+
get_float_value(attribute_values['actual_regular_cost'])
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# Retrieve the Actual Regular Work value
|
|
106
|
+
#
|
|
107
|
+
# @return Actual Regular Work value
|
|
108
|
+
def actual_regular_work
|
|
109
|
+
get_duration_value(attribute_values['actual_regular_work'])
|
|
110
|
+
end
|
|
111
|
+
|
|
98
112
|
# Retrieve the Actual Start value
|
|
99
113
|
#
|
|
100
114
|
# @return Actual Start value
|
|
@@ -5849,6 +5863,20 @@ module MPXJ
|
|
|
5849
5863
|
get_duration_value(attribute_values['remaining_overtime_work'])
|
|
5850
5864
|
end
|
|
5851
5865
|
|
|
5866
|
+
# Retrieve the Remaining Regular Cost value
|
|
5867
|
+
#
|
|
5868
|
+
# @return Remaining Regular Cost value
|
|
5869
|
+
def remaining_regular_cost
|
|
5870
|
+
get_float_value(attribute_values['remaining_regular_cost'])
|
|
5871
|
+
end
|
|
5872
|
+
|
|
5873
|
+
# Retrieve the Remaining Regular Work value
|
|
5874
|
+
#
|
|
5875
|
+
# @return Remaining Regular Work value
|
|
5876
|
+
def remaining_regular_work
|
|
5877
|
+
get_duration_value(attribute_values['remaining_regular_work'])
|
|
5878
|
+
end
|
|
5879
|
+
|
|
5852
5880
|
# Retrieve the Remaining Work value
|
|
5853
5881
|
#
|
|
5854
5882
|
# @return Remaining Work value
|
|
@@ -6325,13 +6353,6 @@ module MPXJ
|
|
|
6325
6353
|
get_float_value(attribute_values['spi'])
|
|
6326
6354
|
end
|
|
6327
6355
|
|
|
6328
|
-
# Retrieve the Splits value
|
|
6329
|
-
#
|
|
6330
|
-
# @return Splits value
|
|
6331
|
-
def splits
|
|
6332
|
-
attribute_values['splits']
|
|
6333
|
-
end
|
|
6334
|
-
|
|
6335
6356
|
# Retrieve the Sprint value
|
|
6336
6357
|
#
|
|
6337
6358
|
# @return Sprint value
|
|
@@ -6948,6 +6969,13 @@ module MPXJ
|
|
|
6948
6969
|
attribute_values['work_contour']
|
|
6949
6970
|
end
|
|
6950
6971
|
|
|
6972
|
+
# Retrieve the Work Splits value
|
|
6973
|
+
#
|
|
6974
|
+
# @return Work Splits value
|
|
6975
|
+
def work_splits
|
|
6976
|
+
attribute_values['work_splits']
|
|
6977
|
+
end
|
|
6978
|
+
|
|
6951
6979
|
# Retrieve the Work Variance value
|
|
6952
6980
|
#
|
|
6953
6981
|
# @return Work Variance value
|
|
@@ -6969,6 +6997,8 @@ module MPXJ
|
|
|
6969
6997
|
'actual_overtime_cost' => :currency,
|
|
6970
6998
|
'actual_overtime_work' => :work,
|
|
6971
6999
|
'actual_overtime_work_protected' => :work,
|
|
7000
|
+
'actual_regular_cost' => :currency,
|
|
7001
|
+
'actual_regular_work' => :work,
|
|
6972
7002
|
'actual_start' => :date,
|
|
6973
7003
|
'actual_work' => :work,
|
|
6974
7004
|
'actual_work_labor' => :duration,
|
|
@@ -7791,6 +7821,8 @@ module MPXJ
|
|
|
7791
7821
|
'remaining_late_start' => :date,
|
|
7792
7822
|
'remaining_overtime_cost' => :currency,
|
|
7793
7823
|
'remaining_overtime_work' => :work,
|
|
7824
|
+
'remaining_regular_cost' => :currency,
|
|
7825
|
+
'remaining_regular_work' => :work,
|
|
7794
7826
|
'remaining_work' => :work,
|
|
7795
7827
|
'remaining_work_labor' => :duration,
|
|
7796
7828
|
'remaining_work_nonlabor' => :duration,
|
|
@@ -7859,7 +7891,6 @@ module MPXJ
|
|
|
7859
7891
|
'show_on_board' => :string,
|
|
7860
7892
|
'show_start_text' => :boolean,
|
|
7861
7893
|
'spi' => :numeric,
|
|
7862
|
-
'splits' => :date_range_list,
|
|
7863
7894
|
'sprint' => :string,
|
|
7864
7895
|
'sprint_finish' => :date,
|
|
7865
7896
|
'sprint_id' => :integer,
|
|
@@ -7948,6 +7979,7 @@ module MPXJ
|
|
|
7948
7979
|
'workers_per_day' => :integer,
|
|
7949
7980
|
'work_area_code' => :string,
|
|
7950
7981
|
'work_contour' => :work_contour,
|
|
7982
|
+
'work_splits' => :date_range_list,
|
|
7951
7983
|
'work_variance' => :duration,
|
|
7952
7984
|
}.freeze
|
|
7953
7985
|
|
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:
|
|
4
|
+
version: 16.0.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: 2026-
|
|
11
|
+
date: 2026-03-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -131,21 +131,21 @@ files:
|
|
|
131
131
|
- lib/mpxj/container.rb
|
|
132
132
|
- lib/mpxj/istack-commons-runtime-4.0.1.jar
|
|
133
133
|
- lib/mpxj/jackcess-4.0.10.jar
|
|
134
|
-
- lib/mpxj/jackson-annotations-2.
|
|
135
|
-
- lib/mpxj/jackson-core-2.
|
|
136
|
-
- lib/mpxj/jackson-databind-2.
|
|
134
|
+
- lib/mpxj/jackson-annotations-2.21.jar
|
|
135
|
+
- lib/mpxj/jackson-core-2.21.1.jar
|
|
136
|
+
- lib/mpxj/jackson-databind-2.21.1.jar
|
|
137
137
|
- lib/mpxj/jakarta.activation-2.0.1.jar
|
|
138
138
|
- lib/mpxj/jakarta.xml.bind-api-3.0.1.jar
|
|
139
139
|
- lib/mpxj/jaxb-core-3.0.2.jar
|
|
140
140
|
- lib/mpxj/jaxb-runtime-3.0.2.jar
|
|
141
141
|
- lib/mpxj/jgoodies-binding-2.13.0.jar
|
|
142
142
|
- lib/mpxj/jgoodies-common-1.8.1.jar
|
|
143
|
-
- lib/mpxj/jsoup-1.
|
|
144
|
-
- lib/mpxj/junit-jupiter-api-5.14.
|
|
145
|
-
- lib/mpxj/junit-jupiter-engine-5.14.
|
|
146
|
-
- lib/mpxj/junit-platform-commons-1.14.
|
|
147
|
-
- lib/mpxj/junit-platform-engine-1.14.
|
|
148
|
-
- lib/mpxj/junit-platform-launcher-1.14.
|
|
143
|
+
- lib/mpxj/jsoup-1.22.1.jar
|
|
144
|
+
- lib/mpxj/junit-jupiter-api-5.14.3.jar
|
|
145
|
+
- lib/mpxj/junit-jupiter-engine-5.14.3.jar
|
|
146
|
+
- lib/mpxj/junit-platform-commons-1.14.3.jar
|
|
147
|
+
- lib/mpxj/junit-platform-engine-1.14.3.jar
|
|
148
|
+
- lib/mpxj/junit-platform-launcher-1.14.3.jar
|
|
149
149
|
- lib/mpxj/log4j-api-2.24.3.jar
|
|
150
150
|
- lib/mpxj/mpxj.jar
|
|
151
151
|
- lib/mpxj/opentest4j-1.3.0.jar
|
|
@@ -160,7 +160,7 @@ files:
|
|
|
160
160
|
- lib/mpxj/resource_methods.rb
|
|
161
161
|
- lib/mpxj/rtfparserkit-1.16.0.jar
|
|
162
162
|
- lib/mpxj/runtime_error.rb
|
|
163
|
-
- lib/mpxj/sqlite-jdbc-3.51.
|
|
163
|
+
- lib/mpxj/sqlite-jdbc-3.51.2.0.jar
|
|
164
164
|
- lib/mpxj/task.rb
|
|
165
165
|
- lib/mpxj/task_methods.rb
|
|
166
166
|
- lib/mpxj/txw2-3.0.2.jar
|
|
Binary file
|