mpxj 15.3.1 → 16.1.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 +561 -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 +136 -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
|
@@ -53,6 +53,34 @@ module MPXJ
|
|
|
53
53
|
get_float_value(attribute_values['actual_cost'])
|
|
54
54
|
end
|
|
55
55
|
|
|
56
|
+
# Retrieve the Actual Cost Expense value
|
|
57
|
+
#
|
|
58
|
+
# @return Actual Cost Expense value
|
|
59
|
+
def actual_cost_expense
|
|
60
|
+
get_float_value(attribute_values['actual_cost_expense'])
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# Retrieve the Actual Cost Labor value
|
|
64
|
+
#
|
|
65
|
+
# @return Actual Cost Labor value
|
|
66
|
+
def actual_cost_labor
|
|
67
|
+
get_float_value(attribute_values['actual_cost_labor'])
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# Retrieve the Actual Cost Material value
|
|
71
|
+
#
|
|
72
|
+
# @return Actual Cost Material value
|
|
73
|
+
def actual_cost_material
|
|
74
|
+
get_float_value(attribute_values['actual_cost_material'])
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Retrieve the Actual Cost Non Labor value
|
|
78
|
+
#
|
|
79
|
+
# @return Actual Cost Non Labor value
|
|
80
|
+
def actual_cost_non_labor
|
|
81
|
+
get_float_value(attribute_values['actual_cost_non_labor'])
|
|
82
|
+
end
|
|
83
|
+
|
|
56
84
|
# Retrieve the Actual Duration value
|
|
57
85
|
#
|
|
58
86
|
# @return Actual Duration value
|
|
@@ -95,6 +123,20 @@ module MPXJ
|
|
|
95
123
|
get_duration_value(attribute_values['actual_overtime_work_protected'])
|
|
96
124
|
end
|
|
97
125
|
|
|
126
|
+
# Retrieve the Actual Regular Cost value
|
|
127
|
+
#
|
|
128
|
+
# @return Actual Regular Cost value
|
|
129
|
+
def actual_regular_cost
|
|
130
|
+
get_float_value(attribute_values['actual_regular_cost'])
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
# Retrieve the Actual Regular Work value
|
|
134
|
+
#
|
|
135
|
+
# @return Actual Regular Work value
|
|
136
|
+
def actual_regular_work
|
|
137
|
+
get_duration_value(attribute_values['actual_regular_work'])
|
|
138
|
+
end
|
|
139
|
+
|
|
98
140
|
# Retrieve the Actual Start value
|
|
99
141
|
#
|
|
100
142
|
# @return Actual Start value
|
|
@@ -5674,6 +5716,34 @@ module MPXJ
|
|
|
5674
5716
|
get_float_value(attribute_values['planned_cost'])
|
|
5675
5717
|
end
|
|
5676
5718
|
|
|
5719
|
+
# Retrieve the Planned Cost Expense value
|
|
5720
|
+
#
|
|
5721
|
+
# @return Planned Cost Expense value
|
|
5722
|
+
def planned_cost_expense
|
|
5723
|
+
get_float_value(attribute_values['planned_cost_expense'])
|
|
5724
|
+
end
|
|
5725
|
+
|
|
5726
|
+
# Retrieve the Planned Cost Labor value
|
|
5727
|
+
#
|
|
5728
|
+
# @return Planned Cost Labor value
|
|
5729
|
+
def planned_cost_labor
|
|
5730
|
+
get_float_value(attribute_values['planned_cost_labor'])
|
|
5731
|
+
end
|
|
5732
|
+
|
|
5733
|
+
# Retrieve the Planned Cost Material value
|
|
5734
|
+
#
|
|
5735
|
+
# @return Planned Cost Material value
|
|
5736
|
+
def planned_cost_material
|
|
5737
|
+
get_float_value(attribute_values['planned_cost_material'])
|
|
5738
|
+
end
|
|
5739
|
+
|
|
5740
|
+
# Retrieve the Planned Cost Non Labor value
|
|
5741
|
+
#
|
|
5742
|
+
# @return Planned Cost Non Labor value
|
|
5743
|
+
def planned_cost_non_labor
|
|
5744
|
+
get_float_value(attribute_values['planned_cost_non_labor'])
|
|
5745
|
+
end
|
|
5746
|
+
|
|
5677
5747
|
# Retrieve the Planned Duration value
|
|
5678
5748
|
#
|
|
5679
5749
|
# @return Planned Duration value
|
|
@@ -5800,6 +5870,34 @@ module MPXJ
|
|
|
5800
5870
|
get_float_value(attribute_values['remaining_cost'])
|
|
5801
5871
|
end
|
|
5802
5872
|
|
|
5873
|
+
# Retrieve the Remaining Cost Expense value
|
|
5874
|
+
#
|
|
5875
|
+
# @return Remaining Cost Expense value
|
|
5876
|
+
def remaining_cost_expense
|
|
5877
|
+
get_float_value(attribute_values['remaining_cost_expense'])
|
|
5878
|
+
end
|
|
5879
|
+
|
|
5880
|
+
# Retrieve the Remaining Cost Labor value
|
|
5881
|
+
#
|
|
5882
|
+
# @return Remaining Cost Labor value
|
|
5883
|
+
def remaining_cost_labor
|
|
5884
|
+
get_float_value(attribute_values['remaining_cost_labor'])
|
|
5885
|
+
end
|
|
5886
|
+
|
|
5887
|
+
# Retrieve the Remaining Cost Material value
|
|
5888
|
+
#
|
|
5889
|
+
# @return Remaining Cost Material value
|
|
5890
|
+
def remaining_cost_material
|
|
5891
|
+
get_float_value(attribute_values['remaining_cost_material'])
|
|
5892
|
+
end
|
|
5893
|
+
|
|
5894
|
+
# Retrieve the Remaining Cost Non Labor value
|
|
5895
|
+
#
|
|
5896
|
+
# @return Remaining Cost Non Labor value
|
|
5897
|
+
def remaining_cost_non_labor
|
|
5898
|
+
get_float_value(attribute_values['remaining_cost_non_labor'])
|
|
5899
|
+
end
|
|
5900
|
+
|
|
5803
5901
|
# Retrieve the Remaining Duration value
|
|
5804
5902
|
#
|
|
5805
5903
|
# @return Remaining Duration value
|
|
@@ -5849,6 +5947,20 @@ module MPXJ
|
|
|
5849
5947
|
get_duration_value(attribute_values['remaining_overtime_work'])
|
|
5850
5948
|
end
|
|
5851
5949
|
|
|
5950
|
+
# Retrieve the Remaining Regular Cost value
|
|
5951
|
+
#
|
|
5952
|
+
# @return Remaining Regular Cost value
|
|
5953
|
+
def remaining_regular_cost
|
|
5954
|
+
get_float_value(attribute_values['remaining_regular_cost'])
|
|
5955
|
+
end
|
|
5956
|
+
|
|
5957
|
+
# Retrieve the Remaining Regular Work value
|
|
5958
|
+
#
|
|
5959
|
+
# @return Remaining Regular Work value
|
|
5960
|
+
def remaining_regular_work
|
|
5961
|
+
get_duration_value(attribute_values['remaining_regular_work'])
|
|
5962
|
+
end
|
|
5963
|
+
|
|
5852
5964
|
# Retrieve the Remaining Work value
|
|
5853
5965
|
#
|
|
5854
5966
|
# @return Remaining Work value
|
|
@@ -6325,13 +6437,6 @@ module MPXJ
|
|
|
6325
6437
|
get_float_value(attribute_values['spi'])
|
|
6326
6438
|
end
|
|
6327
6439
|
|
|
6328
|
-
# Retrieve the Splits value
|
|
6329
|
-
#
|
|
6330
|
-
# @return Splits value
|
|
6331
|
-
def splits
|
|
6332
|
-
attribute_values['splits']
|
|
6333
|
-
end
|
|
6334
|
-
|
|
6335
6440
|
# Retrieve the Sprint value
|
|
6336
6441
|
#
|
|
6337
6442
|
# @return Sprint value
|
|
@@ -6948,6 +7053,13 @@ module MPXJ
|
|
|
6948
7053
|
attribute_values['work_contour']
|
|
6949
7054
|
end
|
|
6950
7055
|
|
|
7056
|
+
# Retrieve the Work Splits value
|
|
7057
|
+
#
|
|
7058
|
+
# @return Work Splits value
|
|
7059
|
+
def work_splits
|
|
7060
|
+
attribute_values['work_splits']
|
|
7061
|
+
end
|
|
7062
|
+
|
|
6951
7063
|
# Retrieve the Work Variance value
|
|
6952
7064
|
#
|
|
6953
7065
|
# @return Work Variance value
|
|
@@ -6963,12 +7075,18 @@ module MPXJ
|
|
|
6963
7075
|
'activity_status' => :activity_status,
|
|
6964
7076
|
'activity_type' => :activity_type,
|
|
6965
7077
|
'actual_cost' => :currency,
|
|
7078
|
+
'actual_cost_expense' => :currency,
|
|
7079
|
+
'actual_cost_labor' => :currency,
|
|
7080
|
+
'actual_cost_material' => :currency,
|
|
7081
|
+
'actual_cost_non_labor' => :currency,
|
|
6966
7082
|
'actual_duration' => :duration,
|
|
6967
7083
|
'actual_duration_units' => :time_units,
|
|
6968
7084
|
'actual_finish' => :date,
|
|
6969
7085
|
'actual_overtime_cost' => :currency,
|
|
6970
7086
|
'actual_overtime_work' => :work,
|
|
6971
7087
|
'actual_overtime_work_protected' => :work,
|
|
7088
|
+
'actual_regular_cost' => :currency,
|
|
7089
|
+
'actual_regular_work' => :work,
|
|
6972
7090
|
'actual_start' => :date,
|
|
6973
7091
|
'actual_work' => :work,
|
|
6974
7092
|
'actual_work_labor' => :duration,
|
|
@@ -7766,6 +7884,10 @@ module MPXJ
|
|
|
7766
7884
|
'physical_percent_complete' => :percentage,
|
|
7767
7885
|
'placeholder' => :boolean,
|
|
7768
7886
|
'planned_cost' => :currency,
|
|
7887
|
+
'planned_cost_expense' => :currency,
|
|
7888
|
+
'planned_cost_labor' => :currency,
|
|
7889
|
+
'planned_cost_material' => :currency,
|
|
7890
|
+
'planned_cost_non_labor' => :currency,
|
|
7769
7891
|
'planned_duration' => :duration,
|
|
7770
7892
|
'planned_finish' => :date,
|
|
7771
7893
|
'planned_start' => :date,
|
|
@@ -7784,6 +7906,10 @@ module MPXJ
|
|
|
7784
7906
|
'recurring_data' => :binary,
|
|
7785
7907
|
'regular_work' => :duration,
|
|
7786
7908
|
'remaining_cost' => :currency,
|
|
7909
|
+
'remaining_cost_expense' => :currency,
|
|
7910
|
+
'remaining_cost_labor' => :currency,
|
|
7911
|
+
'remaining_cost_material' => :currency,
|
|
7912
|
+
'remaining_cost_non_labor' => :currency,
|
|
7787
7913
|
'remaining_duration' => :duration,
|
|
7788
7914
|
'remaining_early_finish' => :date,
|
|
7789
7915
|
'remaining_early_start' => :date,
|
|
@@ -7791,6 +7917,8 @@ module MPXJ
|
|
|
7791
7917
|
'remaining_late_start' => :date,
|
|
7792
7918
|
'remaining_overtime_cost' => :currency,
|
|
7793
7919
|
'remaining_overtime_work' => :work,
|
|
7920
|
+
'remaining_regular_cost' => :currency,
|
|
7921
|
+
'remaining_regular_work' => :work,
|
|
7794
7922
|
'remaining_work' => :work,
|
|
7795
7923
|
'remaining_work_labor' => :duration,
|
|
7796
7924
|
'remaining_work_nonlabor' => :duration,
|
|
@@ -7859,7 +7987,6 @@ module MPXJ
|
|
|
7859
7987
|
'show_on_board' => :string,
|
|
7860
7988
|
'show_start_text' => :boolean,
|
|
7861
7989
|
'spi' => :numeric,
|
|
7862
|
-
'splits' => :date_range_list,
|
|
7863
7990
|
'sprint' => :string,
|
|
7864
7991
|
'sprint_finish' => :date,
|
|
7865
7992
|
'sprint_id' => :integer,
|
|
@@ -7948,6 +8075,7 @@ module MPXJ
|
|
|
7948
8075
|
'workers_per_day' => :integer,
|
|
7949
8076
|
'work_area_code' => :string,
|
|
7950
8077
|
'work_contour' => :work_contour,
|
|
8078
|
+
'work_splits' => :date_range_list,
|
|
7951
8079
|
'work_variance' => :duration,
|
|
7952
8080
|
}.freeze
|
|
7953
8081
|
|
data/lib/mpxj/version.rb
CHANGED