lazhen
2024-11-06 53ebeae81e7979c6b684b84367f3a866efe51a3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Quintiq file version 2.0
#parent: #root
Method LinkProductAndStockingPoint (
  Product_MP product,
  StockingPoint_MP stockingpoint,
  Boolean isinput
)
{
  Description: 'Given product and stocking point, Create or use existing pisp  and link to the operation as operation input/output.'
  TextBody:
  [*
    // DWE2 Mar-27-2016 (created)
    
    pisps := construct( ProductInStockingPoint_MPs );
    
    pisp := product.AddToStockingPoint( stockingpoint );
    
    pisps.Add( pisp );
    this.LinkPISPs( pisps, isinput );
  *]
}