update inbox list
This commit is contained in:
32
vendor/scrivo/highlight.php/test/detect/axapta/default.txt
vendored
Normal file
32
vendor/scrivo/highlight.php/test/detect/axapta/default.txt
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
class ExchRateLoadBatch extends RunBaseBatch {
|
||||
ExchRateLoad rbc;
|
||||
container currencies;
|
||||
boolean actual;
|
||||
boolean overwrite;
|
||||
date beg;
|
||||
date end;
|
||||
|
||||
#define.CurrentVersion(5)
|
||||
|
||||
#localmacro.CurrentList
|
||||
currencies,
|
||||
actual,
|
||||
beg,
|
||||
end
|
||||
#endmacro
|
||||
}
|
||||
|
||||
public boolean unpack(container packedClass) {
|
||||
container base;
|
||||
boolean ret;
|
||||
Integer version = runbase::getVersion(packedClass);
|
||||
|
||||
switch (version) {
|
||||
case #CurrentVersion:
|
||||
[version, #CurrentList] = packedClass;
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
Reference in New Issue
Block a user