1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| Quintiq file version 2.0
| #parent: #root
| StaticMethod CreateOrUpdate (
| MacroPlan macroPlan,
| String name,
| Boolean isDefault
| ) as UnitOfMeasure_MP
| {
| TextBody:
| [*
| // yypsybs Aug-14-2023 (created)
|
| result := UnitOfMeasure_MP::FindByName( macroPlan, name );
|
| if( isnull( result ) ) {
| result := macroPlan.UnitOfMeasure_MP( relnew, Name := name, IsDefault := isDefault, IsManuallyConfigured := false, IsSoftDeleted := false );
| } else {
| result.Update( name, isDefault, true );
| }
|
| return result;
| *]
| }
|
|