mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 13:37:47 +02:00
* Fix currency
This commit is contained in:
parent
44f9c22f18
commit
614a6a6627
@ -1328,7 +1328,11 @@ end;
|
|||||||
function TValue.AsExtended: Extended;
|
function TValue.AsExtended: Extended;
|
||||||
begin
|
begin
|
||||||
if {$IFDEF FPC_DOTTEDUNITS}JSApi.{$ENDIF}JS.isNumber(GetData) then
|
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
|
else
|
||||||
raise EInvalidCast.Create(SErrInvalidTypecast);
|
raise EInvalidCast.Create(SErrInvalidTypecast);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user