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
| StaticMethod DragDropDummyTemplates (LibUTF_IterationRun run, Object company, NamedValueTree source_structured,
| NamedValueTree target)
| {
| Description: 'Sample user action execution.'
| TextBody:
| [*
| run.RegisterFailure( 'Not implemented yet.' );
| /*
| target_dto := DTO_DummyTemplate::ConstructNew( run, target );
|
| multiple_source := UI_DummyTemplate::FindMultiple( run, company, source_structured );
| targetinstance := UI_DummyTemplate::FindSingle( run, company, target_dto.ID() );
|
| // Execute product method
| targetinstance.PlanAfter( multiple_source );
| *]
| }
|
|