yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
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
51
52
53
54
55
56
Quintiq file version 2.0
#parent: #root
StaticMethod ValidateInput (
  output String feedback_o,
  output String sanitycheckfeedback_o,
  Product_MP product,
  StockingPoint_MP stockingpoint,
  Date start,
  Real cost,
  PostponedSalesDemandCost old_postponedsdcost,
  Boolean checkunique
) declarative remote as Boolean
{
  Description: 'Validate input, called from designer'
  TextBody:
  [*
    feedback_o := '';
    
    // Check if the postponed sales demand cost can be created.
    // For editing of postponed sales demand, exclude itself from the checking of the primary key.
    if( checkunique
        and not PostponedSalesDemandCost::IsPrimaryKeysUnique( product, stockingpoint, start, old_postponedsdcost ) )
    {
      feedback_o := Translations::MP_PostponedSalesDemandCost_ValidateInput_IsNotUnique();
      sanitycheckfeedback_o := SanityCheckCategoryLevel::GetSanityCheckCategoryDataIssue() ;
    }
    // Check if cost is valid
    else if( cost < 0 )
    {
      feedback_o := Translations::MP_PostponedSalesDemandCost_ValidateInput_IsNegativeCost( cost );
      sanitycheckfeedback_o := SanityCheckCategoryLevel::GetSanityCheckCategoryDataIssue() ;
    }
    // Check if product is valid
    else if( isnull( product ) )
    {
      feedback_o := Translations::MP_PostponedSalesDemandCost_ValidateInput_IsNullProduct();
      sanitycheckfeedback_o := SanityCheckCategoryLevel::GetSanityCheckCategoryDataWarning() ;
    }
    // Check if stocking point is valid
    else if( isnull( stockingpoint ) )
    {
      feedback_o := Translations::MP_PostponedSalesDemandCost_ValidateInput_IsNullStockingPoint();
      sanitycheckfeedback_o := SanityCheckCategoryLevel::GetSanityCheckCategoryDataWarning() ;
    }
    
    // Add feedback text if there's any precondition above being violated
    if( feedback_o <> '' )
    {
      pispname := MacroPlan::GetSubstituteName( guard( product.Name(), '' ) );
      feedback_o := SanityCheckMessage::GetFormattedMessage( Translations::MP_PostponedSalesDemandCost_Instance( pispname, start ),
                                                             feedback_o );
    }
    
    return feedback_o = '';
  *]
}