* Fix currency

This commit is contained in:
Michaël Van Canneyt 2025-02-14 20:40:28 +01:00
parent 44f9c22f18
commit 614a6a6627

View File

@ -1328,7 +1328,11 @@ end;
function TValue.AsExtended: Extended;
begin
if {$IFDEF FPC_DOTTEDUNITS}JSApi.{$ENDIF}JS.isNumber(GetData) then
Result:=Double(GetData)
begin
Result:=Double(GetData);
if TypeInfo=System.TypeInfo(Currency) then
Result:=Result/10000;
end
else
raise EInvalidCast.Create(SErrInvalidTypecast);
end;