dolibarr  13.0.2
Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | List of all members
BankAccounts Class Reference
+ Inheritance diagram for BankAccounts:
+ Collaboration diagram for BankAccounts:

Public Member Functions

 __construct ()
 Constructor.
 
 index ($sortfield="t.rowid", $sortorder= 'ASC', $limit=100, $page=0, $category=0, $sqlfilters= '')
 Get the list of accounts. More...
 
 get ($id)
 Get account by ID. More...
 
 post ($request_data=null)
 Create account object. More...
 
 transfer ($bankaccount_from_id=0, $bankaccount_to_id=0, $date=null, $description="", $amount=0.0, $amount_to=0.0)
 Create an internal wire transfer between two bank accounts. More...
 
 put ($id, $request_data=null)
 Update account. More...
 
 delete ($id)
 Delete account. More...
 
 getLines ($id, $sqlfilters= '')
 Get the list of lines of the account. More...
 
 addLine ($id, $date, $type, $label, $amount, $category=0, $cheque_number= '', $cheque_writer= '', $cheque_bank= '')
 Add a line to an account. More...
 
 addLink ($id, $line_id, $url_id, $url, $label, $type)
 Add a link to an account line. More...
 
- Public Member Functions inherited from DolibarrApi
 __construct ($db, $cachedir= '', $refreshCache=false)
 Constructor. More...
 

Static Public Attributes

static $FIELDS
 array $FIELDS Mandatory fields, checked when creating an object
 

Protected Member Functions

 _cleanObjectDatas ($object)
 Clean sensible object datas. More...
 
- Protected Member Functions inherited from DolibarrApi
 _cleanObjectDatas ($object)
 Executed method when API is called without parameter. More...
 
 _checkFilters ($sqlfilters)
 Return if a $sqlfilters parameter is valid. More...
 

Private Member Functions

 _validate ($data)
 Validate fields before creating an object. More...
 

Additional Inherited Members

- Static Protected Member Functions inherited from DolibarrApi
static _checkAccessToResource ($resource, $resource_id=0, $dbtablename= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid')
 Check user access to a resource. More...
 
static _forge_criteria_callback ($matches)
 Function to forge a SQL criteria. More...
 

Detailed Description

Definition at line 30 of file api_bankaccounts.class.php.

Member Function Documentation

BankAccounts::_cleanObjectDatas (   $object)
protected

Clean sensible object datas.

Parameters
Object$objectObject to clean
Returns
Object Object with cleaned properties

Definition at line 397 of file api_bankaccounts.class.php.

Referenced by get(), getLines(), and index().

BankAccounts::_validate (   $data)
private

Validate fields before creating an object.

Parameters
array | null$dataData to validate
Returns
array
Exceptions
RestException

Definition at line 379 of file api_bankaccounts.class.php.

References $FIELDS.

Referenced by post().

BankAccounts::addLine (   $id,
  $date,
  $type,
  $label,
  $amount,
  $category = 0,
  $cheque_number = '',
  $cheque_writer = '',
  $cheque_bank = '' 
)

Add a line to an account.

Parameters
int$idID of account
int$datePayment date (timestamp) { body} { timestamp}
string$typePayment mode (TYP,VIR,PRE,LIQ,VAD,CB,CHQ...) { body}
string$labelLabel { body}
float$amountAmount (may be 0) { body}
int$categoryCategory
string$cheque_numberCheque numberl { body}
string$cheque_writerName of cheque writer { body}
string$cheque_bankBank of cheque writer { body}
Returns
int ID of line

POST {id}/lines

Definition at line 482 of file api_bankaccounts.class.php.

References db.

BankAccounts::addLink (   $id,
  $line_id,
  $url_id,
  $url,
  $label,
  $type 
)

Add a link to an account line.

Parameters
int$idID of account
int$line_idID of account line
int$url_idID to set in the URL { body}
string$urlURL of the link { body}
string$labelLabel { body}
string$typeType of link ('payment', 'company', 'member', ...) { body}
Returns
int ID of link

POST {id}/lines/{line_id}/links

Definition at line 523 of file api_bankaccounts.class.php.

References db.

BankAccounts::delete (   $id)

Delete account.

Parameters
int$idID of account
Returns
array

Definition at line 348 of file api_bankaccounts.class.php.

References db.

BankAccounts::get (   $id)

Get account by ID.

Parameters
int$idID of account
Returns
array Account object
Exceptions
RestException

Definition at line 133 of file api_bankaccounts.class.php.

References _cleanObjectDatas(), and db.

BankAccounts::getLines (   $id,
  $sqlfilters = '' 
)

Get the list of lines of the account.

Parameters
int$idID of account
Returns
array Array of AccountLine objects
Exceptions
RestExceptionGET {id}/lines
Parameters
string$sqlfiltersOther criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.import_key:<:'20160101')"

Definition at line 418 of file api_bankaccounts.class.php.

References DolibarrApi\_checkFilters(), _cleanObjectDatas(), and db.

BankAccounts::index (   $sortfield = "t.rowid",
  $sortorder = 'ASC',
  $limit = 100,
  $page = 0,
  $category = 0,
  $sqlfilters = '' 
)

Get the list of accounts.

Parameters
string$sortfieldSort field
string$sortorderSort order
int$limitLimit for list
int$pagePage number
int$categoryUse this param to filter list by category
string$sqlfiltersOther criteria to filter answers separated by a comma. Syntax example "(t.ref:like:'SO-%') and (t.import_key:<:'20160101')"
Returns
array List of account objects
Exceptions
RestException

Definition at line 66 of file api_bankaccounts.class.php.

References DolibarrApi\_checkFilters(), _cleanObjectDatas(), db, and dol_syslog().

BankAccounts::post (   $request_data = null)

Create account object.

Parameters
array$request_dataRequest data
Returns
int ID of account

Definition at line 154 of file api_bankaccounts.class.php.

References _validate(), and db.

BankAccounts::put (   $id,
  $request_data = null 
)

Update account.

Parameters
int$idID of account
array$request_datadata
Returns
int

Definition at line 317 of file api_bankaccounts.class.php.

References db.

BankAccounts::transfer (   $bankaccount_from_id = 0,
  $bankaccount_to_id = 0,
  $date = null,
  $description = "",
  $amount = 0.0,
  $amount_to = 0.0 
)

Create an internal wire transfer between two bank accounts.

Parameters
int$bankaccount_from_idBankAccount ID to use as the source of the internal wire transfer { body}{ true}
int$bankaccount_to_idBankAccount ID to use as the destination of the internal wire transfer { body}{ true}
string$dateDate of the internal wire transfer (UNIX timestamp) { body}{ true}{ timestamp}
string$descriptionDescription of the internal wire transfer { body}{ true}
float$amountAmount to transfer from the source to the destination BankAccount { body}{ true}
float$amount_toAmount to transfer to the destination BankAccount (only when accounts does not share the same currency) { body}{ false}

POST /transfer

Returns
array

201

Exceptions
RestException401 Unauthorized: User does not have permission to configure bank accounts
RestException404 Not Found: Either the source or the destination bankaccount for the provided id does not exist
RestException422 Unprocessable Entity: Refer to detailed exception message for the cause
RestException500 Internal Server Error: Error(s) returned by the RDBMS

Creating bank line records

Creating links between bank line record and its source

Definition at line 199 of file api_bankaccounts.class.php.

References db, price2num(), and Account\TYPE_CASH.


The documentation for this class was generated from the following file: