lazhen
2025-01-09 8afe90b633046db39042aada36b88193062f8cff
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
Quintiq file version 2.0
#parent: #root
Method New (
  SalesSegment_MP parentsalessegment,
  FormSalesSegments formSalesSegments
) id:Method_DialogCreateEditSalesSegment_New
{
  #keys: '[135040.0.183105624]'
  Body:
  [*
    // Create a new sales segment
    // Select an owner
    owner := MacroPlan;
    obj   := owner.SalesSegment_MP( relshadow, Name := "" ); // Temporary set Name to empty, will be based on user assigned value
    obj.Parent( relset, parentsalessegment );
    
    DataHolderForm.Data( formSalesSegments );
    
    // Set data to dataholder because Form cannot bind to shadow yet
    DataHolderDialogData.Data( &obj );
    
    Form.SetDefaultValue();
    
    ApplicationMacroPlanner.ShowFormModal( this );
  *]
}