AccumulatedMoneyStorage Object



 
The AccumulatedMoneyStorage object provides information about the sales accumulated since the last reset of this object.


Members Table

Remarks
    This object is available through the object SiteCash. Use the AccumulatedMoneyStorage object to receive or modify the information about the sales accumulated since the last reset.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
Examples
    The following example shows the total sales amount accumulated since the last reset in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    var AMStorage = SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage;
    alert(AMStorage.TotalCurrentMoney);
    </SCRIPT>

Applies to
    SiteKiosk v6.5 (and later versions).

Back to top