limj
2023-09-22 692b3cc6b28b294f374245eb0a8643bb59fa5131
_Main/BL/Type_ScenarioManager/StaticMethod_AvailableBusinessTypes.qbl
@@ -1,17 +1,22 @@
Quintiq file version 2.0
#parent: #root
StaticMethod AvailableBusinessTypes () as String
StaticMethod AvailableBusinessTypes (
  GlobalOTDTable globalOTDTable
) as String
{
  TextBody:
  [*
    // yypsybs Aug-23-2023 (created)
    strings := "集团面板;专业显示事业部;外卖CELL;非显;运动健康;运动健康事业部;手机事业部;特种显示;汽车电子事业部;车载显示事业部;IT事业部;";
    //strings := "集团面板;专业显示事业部;外卖CELL;非显;运动健康;运动健康事业部;手机事业部;特种显示;汽车电子事业部;车载显示事业部;IT事业部;";
    
    //table := KB_BusinessTypesTable;
    //
    //if( strings.EndsWith( ";" ) ) {
    //    strings := strings.SubString( 0, strings.Length() - 1 );
    //}
    
    if( strings.EndsWith( ";" ) ) {
        strings := strings.SubString( 0, strings.Length() - 1 );
    }
    // 使用businessType获取数据
    strings := BusinessType::GetBusinessNameStr( globalOTDTable);
    
    return strings;
  *]