JSMA entry

Overview

The JSMA entry provides functionality for handling entries (financial bookings)

What can JSMA entry do for me?

You could easily use the JSMA entry to edit an entry

Index

Usage

reading data

Here is an example on how to read data from a JSMA entry:

... 
var creationDate = entry.creationDate();
...

Methods

The JSMA entry provides the following methods:

entry.account

Returns the account of the entry

Example

... 
entry.account
...

entry.contraAccount

Returns the contra-account of the entry

Example

... 
entry.contraAccount
...

entry.creationDate

Returns the date of when the entry was created.

Example

... 
var creationDate = entry.creationDate;
...

entry.creationUser

Returns the user that created the entry

Example

... 
entry.creationUser
...

entry.currency

Returns the currency of the entry

Example

... 
entry.currency
...

entry.description

Returns the description of the entry

Example

... 
entry.description
...

entry.group

Returns the group of the entry

Example

... 
entry.group
...

entry.orderUuid

Returns the order-uuid of the entry

Example

... 
entry.orderUuid
...

entry.value

Returns the value of the entry

Example

... 
entry.value
...