1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| Quintiq file version 2.0
| #parent: #root
| StaticMethod GetInstanceText (
| OperationInputOutput operationio
| ) declarative remote as String
| {
| Description: 'Return the instance text of operation input output.'
| TextBody:
| [*
| // Adhi Nov-21-2015 (created)
| operationname := MacroPlan::GetSubstituteName( guard( operationio.Operation().Name(), '' ) );
| pispname := guard( operationio.ProductInStockingPoint_MP().Name(), '-' );
|
| return Translations::MP_OperationInputOutput_Instance( operationio,
| operationname,
| pispname );
| *]
| }
|
|