yanweiyuan3
2023-10-27 d1d15b61dfcf7fd0f800b32359f082cf580ed556
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Quintiq file version 2.0
#parent: #root
Method NewInventorySpecification (
  internal[GUIComponent] parent,
  ProductInStockingPointInPeriod pispip
) as InventorySpecification id:Method_DialogCreateEditInventorySpecification_NewInventorySpecification
{
  #keys: '[105706.0.1322690604]'
  Body:
  [*
    // New inventory specification
    
    Dialog.ShowHideComponentForBatchEdit( false, true );
    
    stockingpoint := guard( pispip.ProductInStockingPoint_MP().StockingPoint_MP(), null( StockingPoint_MP ) );
    owner := guard( pispip.ProductInStockingPoint_MP().Product_MP(), InventorySpecification::GetDefaultOwner( MacroPlan, stockingpoint ) );
    
    // Start
    pispipstart := guard( pispip.Start().Date(), MacroPlan.StartOfPlanning().Date() );
    data := owner.InventorySpecification( relshadow, StockingPointID := stockingpoint.ID(), ProductID := owner.ID(), Start := pispipstart );
    data.StockingPoint_MP( relset, stockingpoint );
    
    Dialog.Data( data );
    Dialog.SetDefaultValue( pispip );
    
    result := Dialog.DoModal( parent );
    newobj := null( InventorySpecification );
    
    if( result > 0 )
    {
      newobj := InventorySpecification::Create( data.Product_MP(),
                                                data.StockingPoint_MP(),
                                                data.Start(),
                                                false,
                                                0.0,
                                                0.0,
                                                data.HasMinLevelInDays(),
                                                data.MinLevelInDays(),
                                                data.MinLevelInQuantity(),
                                                data.HasMaxLevel(),
                                                data.HasMaxLevelInDays(),
                                                data.MaxLevelInDays(),
                                                data.MaxLevelInQuantity(),
                                                false,
                                                false );
    }
    
    return newobj;
  *]
}