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
Quintiq file version 2.0
#parent: #root
Method UpdateTargetInQuantity (
  Real targetinquantity
)
{
  Description: 'Updates the TargetInQuantity of this inventory specification'
  TextBody:
  [*
    // Martijn Dec-1-2016 (created)
    this.Update( this.Product_MP(),
                 this.StockingPoint_MP(),
                 this.Start(),
                 this.HasTargetInDays_DELETED_Nov19(), this.TargetInDays_DELETED_Nov19(), targetinquantity,
                 this.HasMinLevelInDays(), this.MinLevelInDays(), this.MinLevelInQuantity(),
                 this.HasMaxLevel(), this.HasMaxLevelInDays(), this.MaxLevelInDays(), this.MaxLevelInQuantity(),
                 this.IsCalculated(),
                 not this.IsManuallyConfigured() );  // isfromdb
  *]
}