lazhen
2024-10-18 9e7f6bf445c0cc04a2626596a6f2ee7b80f51ee6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Quintiq file version 2.0
#parent: #root
StaticMethod GetSearchRows (
  Factorys factorys,
  ProductGenerations generations,
  ProductPowers powers,
  ProductMLBMQBs mlbmqls
) as Number
{
  Description: '获取查询条件行数'
  TextBody:
  [*
    // 甄兰鸽 Oct-18-2024 (created)
    searchrows                  := construct( Numbers );
    searchrows.Add( factorys.Size() );
    searchrows.Add( generations.Size() );
    searchrows.Add( powers.Size() );
    searchrows.Add( mlbmqls.Size() );
    searchrowsize               := max( searchrows, Elements, e, e );
    return searchrowsize;
  *]
}