xiaoding721
2024-10-21 4668a16a939a1d4d4fdfe11416158f8cd53a536d
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;
  *]
}