| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 | | Quintiq file version 2.0 |  | #parent: MatrixEditor |  | Response OnEndEdit ( |  |   SWF_Step cell, |  |   Date newvalue |  | ) id:Response_SWF_FormStepDueDate_MatrixEditor_OnEndEdit |  | { |  |   #keys: '[113694.2.1101341586]' |  |   Body: |  |   [* |  |     // Override the due date of the |  |     SWF_WorkflowDataset.Service().TR_CreateUpdateStep |  |                 ( cell.ID() |  |                 , cell.Name() |  |                 , guard( cell.ParentStep().ID(), Key::ZeroKey() ) |  |                 , cell.HasExpectedCompletionDateManual() |  |                 , cell.ExpectedCompletionDateManual() |  |                 , true |  |                 , newvalue |  |                 , guard( cell.AssignedAuthorization().DisplayName(), '' ) |  |                 ); |  |                                |  |     this.EndEdit( false ); |  |   *] |  |   CanBindMultiple: false |  |   DefinitionID: 'Responsedef_MatrixEditor_OnEndEdit' |  |   Precondition: |  |   [* |  |     return SWF_WorkflowDataset.GetCurrentUser().CanProcessStep( feedback, |  |                                                                 cell, |  |                                                                 SWF_Step::ACTION_OverrideDueDate() ); |  |   *] |  | } | 
 |