1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| Quintiq file version 2.0
| #parent: #root
| Method EditShiftPattern (
| ShiftPattern selection,
| internal[GUIComponent] parent
| ) as Number id:Method_DialogCreateEditShiftPattern_EditShiftPattern
| {
| #keys: '[11660.0.14170024]'
| Body:
| [*
| // Edit shift pattern
|
| this.Data( selection );
|
| result := this.DoModal( parent );
|
| if( result > 0 )
| {
| selection.Update( EditorName.Text(), [Number]EditorNumberOfDays.Text(), selection.MinimumDuration(), false );
| }
|
| return result;
| *]
| }
|
|