| Quintiq file version 2.0 | 
| #parent: #root | 
| Method NewLaneCost ( | 
|   internal[GUIComponent] parent, | 
|   shadow[Lane] owner, | 
|   Currency_MP currency, | 
|   UnitOfMeasure_MP unitofmeasure | 
| ) id:Method_DialogCreateEditLaneCost_NewLaneCost_303 | 
| { | 
|   #keys: '[124808.1.1620737695]' | 
|   Body: | 
|   [* | 
|     // New lane shadow cost | 
|     data := owner.LaneCost( relnew, | 
|                             ID := MacroPlan.IDHolder().GetLaneCostID() ); | 
|      | 
|     Dialog.Data( data ); | 
|      | 
|     // Set default value | 
|     Dialog.SetDefaultValue(); | 
|      | 
|     Dialog.SetHolders( currency, unitofmeasure ); | 
|      | 
|     Dialog.SetValueForStringSelections( LaneLegCost::GetDefinitionName() ); | 
|      | 
|     result := Dialog.DoModal( parent ); | 
|      | 
|     if( result > 0 ) | 
|     { | 
|       data.Commit(); | 
|     } | 
|     else | 
|     { | 
|       // If user cancels, delete the instance | 
|       data.Delete(); | 
|     } | 
|   *] | 
| } |