1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| Quintiq file version 2.0
| #parent: #root
| Method GetActualCosts (
| Period_MP period
| ) remote as Real
| {
| Description:
| [*
| Return the total cost of which this account cost is assigned to.
| E.g Unit Plant, Cost driver volume, Period 1 Jan 2017, Total cost: 5000
| Output: Real
| *]
| IsAbstract: true
| TextBody:
| [*
| // Override in subclass
| return 0.0;
| *]
| }
|
|