rislai
2024-06-21 e4724fcc72232d94e939d39a51234ce89b8c61e3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Quintiq file version 2.0
#parent: #root
StaticMethod Compared (
  RecycleBin recycleBin,
  const ArchivePR baseVersion,
  const ArchivePR compareVersion
) as LocalTable
{
  TextBody:
  [*
    // rislai Jun-20-2024 (created)
    // archive := baseVersion.Archive(); // archive不可设置为只读
    
    table := recycleBin.LocalTable( relnew );
    
    baseVersion.Load( table ); 
    compareVersion.Load( table ); 
    
    return table;
  *]
}