Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method GetIsWithinPISPIP ( 
 | 
  ProductInStockingPointInPeriodPlanning pispipp 
 | 
) declarative remote as Boolean 
 | 
{ 
 | 
  TextBody: 
 | 
  [* 
 | 
    period := pispipp.Period_MP(); 
 | 
    actualdate := this.Date(); 
 | 
     
 | 
    // e.g. if I have 2 weeks: Jan.1-Jan-8, Jan-8-Jan.15 
 | 
    // Actual from Jan 1 - 7 will be applied to first week, and Jan 8 - 14 will be applied to second week 
 | 
     
 | 
    return actualdate >= period.StartDate() 
 | 
           and actualdate < period.EndDate(); 
 | 
  *] 
 | 
} 
 |