mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 13:37:47 +02:00
* Fix currency treatment
This commit is contained in:
parent
827b95af79
commit
e06f74d512
@ -1334,8 +1334,9 @@ end;
|
||||
|
||||
function TValue.AsCurrency: Currency;
|
||||
begin
|
||||
// The actual data is not multiplied by 10000. The
|
||||
if {$IFDEF FPC_DOTTEDUNITS}JSApi.{$ENDIF}JS.isNumber(GetData) then
|
||||
Result:=Currency(GetData)
|
||||
Result:=Currency(GetData)/10000
|
||||
else
|
||||
raise EInvalidCast.Create(SErrInvalidTypecast);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user