cash_drawer_transaction_entity - Cash Drawer Transaction Entity
This holds a transaction line for a cash drawer. Transaction lines can be in the form of a withdrawal or a deposit. Furthermore, they can either be reconciled or unreconciled.
Column | Data Type | Column Info | Value Notes | Other |
id | int(11) | The id of the entity | ||
cash_drawer_id | int(11) | Associated cash drawer id | ||
loan_id | int(11) | The id of the associated loan account | ||
payment_id | int(11) | Associated payment id | ||
description | varchar(255) | The description of the entity instance | ||
category | int(11) | Transaction category | ||
type | char(30) | Identifier for the entity type | transaction.type.deposit, transaction.type.withdrawl | |
amount | decimal(11,2) | Charge amount | ||
balance | decimal(11,2) | Cash Drawer balance after the transaction | ||
date | date | Disbursement date | ||
is_reconciled | tinyint(1) | Whether or not it has been reconciled | 1 - yes, 0 - no | |
reconciliation_date | datetime | Reconciliation date time | ||
deleted | tinyint(1) | Whether or not the entity was deleted | 1 - yes, 0 - no | |
lastUpdated | timestamp | Timestamp of when the entity was last updated |