Kevin Kok Khah Whey
2023-10-18 d5e46a7a9f2cb9123b9aafb39a20e14059faa2e4
_Main/BL/Type_GlobalDTOTable/Method_InitTestData#12.qbl
@@ -6,34 +6,35 @@
{
  TextBody:
  [*
    // yypsybs Oct-7-2023 (created)
    productCodeList := selectuniquevalues( macroPlan, Product_MP, item, item.ID() );
    debuginfo( "productCodeList : " + [String]productCodeList.Size() );
    if( this.Global_MappingAnnualBudgetData( relsize ) = 0 ) {
      debuginfo( "create Global_MappingAnnualBudgetData test data" );
      id := 1;
      for( year := Date::ActualDate().Year() - 10; year <= Date::ActualDate().Year() + 5; year := year + 1 ) {
        for( i := 1; i <= productCodeList.Size(); i := i + 1 ) {
          productCode := productCodeList.Element( i - 1 );
          mappingAnnualBudget := this.Global_MappingAnnualBudgetData( relnew,
                                                                      ID := [String]id,
                                                                      YearNo := [String]year,
                                                                      BusinessType := "事业部" + [String](productCode.Length() mod 3),
                                                                      ProductID := productCode);
          id := id + 1;
          for( month := 1; month <= 12; month := month + 1 ) {
            field := Reflection::FindAttribute( "Global_MappingAnnualBudgetData", "MonthlyModCapacity" + [String]month );
            field.Set( mappingAnnualBudget, [String]Real::Random( 20000.0, 30000.0 ) );
            field := Reflection::FindAttribute( "Global_MappingAnnualBudgetData", "MonthlySheetCapacity" + [String]month );
            field.Set( mappingAnnualBudget, [String]Real::Random( 20000.0, 30000.0 ) );
            field := Reflection::FindAttribute( "Global_MappingAnnualBudgetData", "MonthlySales" + [String]month );
            field.Set( mappingAnnualBudget, [String]Real::Random( 20000.0, 30000.0 ) );
          }
        }
      }
      result2 := selectset( this, Global_MappingAnnualBudgetData, item, true );
      debuginfo( "test MappingAnnualBudget size : " + [String]result2.Size() );
    }
    //// yypsybs Oct-7-2023 (created)
    //productCodeList := selectuniquevalues( macroPlan, Product_MP, item, item.ID() );
    //debuginfo( "productCodeList : " + [String]productCodeList.Size() );
    //
    //this.Global_MappingAnnualBudgetData( relflush );
    //if( this.Global_MappingAnnualBudgetData( relsize ) = 0 ) {
    //  debuginfo( "create Global_MappingAnnualBudgetData test data" );
    //  id := 1;
    //  for( year := Date::ActualDate().Year() - 10; year <= Date::ActualDate().Year() + 5; year := year + 1 ) {
    //    for( i := 1; i <= productCodeList.Size(); i := i + 1 ) {
    //      productCode := productCodeList.Element( i - 1 );
    //      mappingAnnualBudget := this.Global_MappingAnnualBudgetData( relnew,
    //                                                                  ID := [String]id,
    //                                                                  YearNo := [String]year,
    //                                                                  BusinessType := "事业部" + [String](productCode.Length() mod 3),
    //                                                                  ProductID := productCode);
    //      id := id + 1;
    //      for( month := 1; month <= 12; month := month + 1 ) {
    //        field := Reflection::FindAttribute( "Global_MappingAnnualBudgetData", "MonthlyModCapacity" + [String]month );
    //        field.Set( mappingAnnualBudget, [String]Real::Random( 20000.0, 30000.0 ) );
    //        field := Reflection::FindAttribute( "Global_MappingAnnualBudgetData", "MonthlySheetCapacity" + [String]month );
    //        field.Set( mappingAnnualBudget, [String]Real::Random( 20000.0, 30000.0 ) );
    //        field := Reflection::FindAttribute( "Global_MappingAnnualBudgetData", "MonthlySales" + [String]month );
    //        field.Set( mappingAnnualBudget, [String]Real::Random( 20000.0, 30000.0 ) );
    //      }
    //    }
    //  }
    //  result2 := selectset( this, Global_MappingAnnualBudgetData, item, true );
    //  debuginfo( "test MappingAnnualBudget size : " + [String]result2.Size() );
    //}
  *]
}