GnuCash  5.6-150-g038405b370+
Transaction.h
Go to the documentation of this file.
1 /********************************************************************\
2  * This program is free software; you can redistribute it and/or *
3  * modify it under the terms of the GNU General Public License as *
4  * published by the Free Software Foundation; either version 2 of *
5  * the License, or (at your option) any later version. *
6  * *
7  * This program is distributed in the hope that it will be useful, *
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
10  * GNU General Public License for more details. *
11  * *
12  * You should have received a copy of the GNU General Public License*
13  * along with this program; if not, contact: *
14  * *
15  * Free Software Foundation Voice: +1-617-542-5942 *
16  * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
17  * Boston, MA 02110-1301, USA gnu@gnu.org *
18  * *
19 \********************************************************************/
86 #ifndef XACC_TRANSACTION_H
87 #define XACC_TRANSACTION_H
88 
89 typedef struct _TransactionClass TransactionClass;
90 
91 #include <time.h>
92 
93 #include "gnc-commodity.h"
94 #include "gnc-engine.h"
95 #include "gnc-pricedb.h"
96 #include "Split.h"
97 
98 #ifdef __cplusplus
99 extern "C" {
100 #endif
101 
102 /* --- type macros --- */
103 #define GNC_TYPE_TRANSACTION (gnc_transaction_get_type ())
104 #define GNC_TRANSACTION(o) \
105  (G_TYPE_CHECK_INSTANCE_CAST ((o), GNC_TYPE_TRANSACTION, Transaction))
106 #define GNC_TRANSACTION_CLASS(k) \
107  (G_TYPE_CHECK_CLASS_CAST((k), GNC_TYPE_TRANSACTION, TransactionClass))
108 #define GNC_IS_TRANSACTION(o) \
109  (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNC_TYPE_TRANSACTION))
110 #define GNC_IS_TRANSACTION_CLASS(k) \
111  (G_TYPE_CHECK_CLASS_TYPE ((k), GNC_TYPE_TRANSACTION))
112 #define GNC_TRANSACTION_GET_CLASS(o) \
113  (G_TYPE_INSTANCE_GET_CLASS ((o), GNC_TYPE_TRANSACTION, TransactionClass))
114 GType gnc_transaction_get_type(void);
115 
116 
117 /* FIXME: These macros are not consistent with the type name */
118 #define GNC_IS_TRANS(obj) GNC_IS_TRANSACTION(obj)
119 #define GNC_TRANS(obj) GNC_TRANSACTION(obj)
120 
124 #define TXN_TYPE_UNCACHED '?'
125 #define TXN_TYPE_NONE '\0'
126 #define TXN_TYPE_INVOICE 'I'
127 #define TXN_TYPE_PAYMENT 'P'
128 #define TXN_TYPE_LINK 'L'
131 /* --------------------------------------------------------------- */
132 /* Transactions */
133 
141 Transaction * xaccMallocTransaction (QofBook *book);
142 
157 void xaccTransDestroy (Transaction *trans);
158 
163 Transaction * xaccTransClone (const Transaction *t);
164 
169 Transaction * xaccTransCloneNoKvp (const Transaction *t);
170 
194 gboolean xaccTransEqual(const Transaction *ta,
195  const Transaction *tb,
196  gboolean check_guids,
197  gboolean check_splits,
198  gboolean check_balances,
199  gboolean assume_ordered);
200 
204 void xaccTransBeginEdit (Transaction *trans);
205 
211 void xaccTransCommitEdit (Transaction *trans);
212 
218 void xaccTransRollbackEdit (Transaction *trans);
219 
226 gboolean xaccTransIsOpen (const Transaction *trans);
227 
231 /*@ dependent @*//*@ null @*/
232 Transaction * xaccTransLookup (const GncGUID *guid, QofBook *book);
233 #define xaccTransLookupDirect(g,b) xaccTransLookup(&(g),b)
234 
235 /*################## Added for Reg2 #################*/
236 
241 Transaction * xaccTransCopyToClipBoard(const Transaction *from_trans);
242 
246 void xaccTransCopyOnto(const Transaction *from_trans, Transaction *to_trans);
247 
265 void xaccTransCopyFromClipBoard(const Transaction *from_trans, Transaction *to_trans,
266  const Account *from_acc, Account *to_acc, gboolean no_date);
267 
268 /*################## Added for Reg2 #################*/
269 
270 
271 Split * xaccTransFindSplitByAccount(const Transaction *trans,
272  const Account *acc);
273 
281 void xaccTransScrubGains (Transaction *trans, Account *gain_acc);
282 
283 
288 guint gnc_book_count_transactions(QofBook *book);
289 
299 gboolean xaccTransUseTradingAccounts(const Transaction *trans);
300 
304 void xaccTransSortSplits (Transaction *trans);
305 
312 void xaccTransSetTxnType (Transaction *trans, char type);
313 
320 char xaccTransGetTxnType (Transaction *trans);
321 
327 void xaccTransSetNum (Transaction *trans, const char *num);
328 
330 void xaccTransSetDescription (Transaction *trans, const char *desc);
331 
333 void xaccTransSetDocLink (Transaction *trans, const char *doclink);
334 
338 void xaccTransSetNotes (Transaction *trans, const char *notes);
339 
345 const char * xaccTransGetNum (const Transaction *trans);
347 const char * xaccTransGetDescription (const Transaction *trans);
349 const char * xaccTransGetDocLink(const Transaction *trans);
353 const char * xaccTransGetNotes (const Transaction *trans);
354 
355 
357 void xaccTransSetIsClosingTxn (Transaction *trans, gboolean is_closing);
358 
360 gboolean xaccTransGetIsClosingTxn (const Transaction *trans);
361 
372 void xaccTransClearSplits(Transaction* trans);
373 
381 #define xaccTransAppendSplit(t, s) xaccSplitSetParent((s), (t))
382 
392 Split* xaccTransGetSplit (const Transaction *trans, int i);
393 
395 int xaccTransGetSplitIndex(const Transaction *trans, const Split *split);
396 
402 /*@ dependent @*/
403 SplitList * xaccTransGetSplitList (const Transaction *trans);
404 
410 SplitList * xaccTransGetPaymentAcctSplitList (const Transaction *trans);
411 
417 SplitList * xaccTransGetAPARAcctSplitList (const Transaction *trans, gboolean strict);
418 
419 
420 gboolean xaccTransStillHasSplit(const Transaction *trans, const Split *s);
421 
428 Split * xaccTransGetFirstPaymentAcctSplit (const Transaction *trans);
429 
436 Split * xaccTransGetFirstAPARAcctSplit (const Transaction *trans, gboolean strict);
437 
443 void xaccTransSetReadOnly (Transaction *trans, const char *reason);
444 void xaccTransClearReadOnly (Transaction *trans);
445 
448 const char * xaccTransGetReadOnly (Transaction *trans);
449 
453 gboolean xaccTransIsReadonlyByPostedDate(const Transaction *trans);
454 
456 int xaccTransCountSplits (const Transaction *trans);
457 
459 gboolean xaccTransHasReconciledSplits (const Transaction *trans);
461 gboolean xaccTransHasReconciledSplitsByAccount (const Transaction *trans,
462  const Account *account);
463 
465 gboolean xaccTransHasSplitsInState (const Transaction *trans, const char state);
467 gboolean xaccTransHasSplitsInStateByAccount (const Transaction *trans,
468  const char state,
469  const Account *account);
470 
471 
479 /*@ dependent @*/
480 gnc_commodity * xaccTransGetCurrency (const Transaction *trans);
481 
483 void xaccTransSetCurrency (Transaction *trans, gnc_commodity *curr);
484 
500 gnc_numeric xaccTransGetImbalanceValue (const Transaction * trans);
501 
508 MonetaryList *xaccTransGetImbalance (const Transaction * trans);
509 
512 gboolean xaccTransIsBalanced(const Transaction * trans);
513 
520 gnc_numeric xaccTransGetAccountValue (const Transaction *trans,
521  const Account *account);
522 
524 gnc_numeric xaccTransGetAccountAmount (const Transaction *trans,
525  const Account *account);
526 
527 /* Compute the conversion rate for the transaction to this account.
528  * Any "split value" (which is in the transaction currency),
529  * multiplied by this conversion rate, will give you the value you
530  * should display for this account.
531  *
532  * If 'acc' is NULL, return unity.
533  */
534 gnc_numeric xaccTransGetAccountConvRate(const Transaction *txn, const Account *acc);
535 
538 gnc_numeric xaccTransGetAccountBalance (const Transaction *trans,
539  const Account *account);
540 
559 int xaccTransOrder (const Transaction *ta, const Transaction *tb);
560 
561 
581 int xaccTransOrder_num_action (const Transaction *ta, const char *actna,
582  const Transaction *tb, const char *actnb);
583 
600 void xaccTransSetDate (Transaction *trans,
601  int day, int mon, int year);
602 
610 void xaccTransSetDatePostedGDate (Transaction *trans, GDate date);
611 
621 void xaccTransSetDatePostedSecs (Transaction *trans, time64 time);
622 
632 void xaccTransSetDatePostedSecsNormalized (Transaction *trans, time64 time);
633 
636 void xaccTransSetDateEnteredSecs (Transaction *trans, time64 time);
637 
639 void xaccTransSetDateDue (Transaction * trans, time64 time);
640 
645 time64 xaccTransGetDate (const Transaction *trans);
650 time64 xaccTransRetDatePosted (const Transaction *trans);
653 GDate xaccTransGetDatePostedGDate (const Transaction *trans);
654 
655 /*################## Added for Reg2 #################*/
658 time64 xaccTransGetDateEntered (const Transaction *trans);
659 /*################## Added for Reg2 #################*/
662 time64 xaccTransRetDateEntered (const Transaction *trans);
663 
665 time64 xaccTransRetDateDue (const Transaction *trans);
670 /********************************************************************\
671  * Miscellaneous utility routines.
672 \********************************************************************/
673 
674 
687 void xaccTransVoid(Transaction *transaction,
688  const char *reason);
689 
697 void xaccTransUnvoid(Transaction *transaction);
698 
710 Transaction * xaccTransReverse(Transaction *transaction);
711 
719 Transaction * xaccTransGetReversedBy(const Transaction *trans);
720 
728 gboolean xaccTransGetVoidStatus(const Transaction *transaction);
729 
737 const char *xaccTransGetVoidReason(const Transaction *transaction);
738 
746 time64 xaccTransGetVoidTime(const Transaction *tr);
752 #define TRANS_KVP "kvp"
753 #define TRANS_NUM "num"
754 #define TRANS_DESCRIPTION "desc"
755 #define TRANS_DATE_ENTERED "date-entered"
756 #define TRANS_DATE_POSTED "date-posted"
757 #define TRANS_DATE_DUE "date-due"
758 #define TRANS_IMBALANCE "trans-imbalance"
759 #define TRANS_IS_BALANCED "trans-balanced?"
760 #define TRANS_IS_CLOSING "trans-is-closing?"
761 #define TRANS_NOTES "notes"
762 #define TRANS_DOCLINK "doclink"
763 #define TRANS_TYPE "type"
764 #define TRANS_VOID_STATUS "void-p"
765 #define TRANS_VOID_REASON "void-reason"
766 #define TRANS_VOID_TIME "void-time"
767 #define TRANS_SPLITLIST "split-list" /* for guid_match_all */
768 
770 #ifdef DUMP_FUNCTIONS
771 void xaccTransDump (const Transaction *trans, const char *tag);
772 #endif
773 
780 void xaccTransRecordPrice (Transaction *trans, PriceSource source);
781 
782 
783 #define RECONCILED_MATCH_TYPE "reconciled-match"
784 
786 #define xaccTransGetBook(X) qof_instance_get_book (QOF_INSTANCE(X))
787 
788 #define xaccTransGetGUID(X) qof_entity_get_guid(QOF_INSTANCE(X))
789 
790 #ifdef __cplusplus
791 } /* extern "C" */
792 #endif
793 
794 #endif /* XACC_TRANSACTION_H */
795 
gboolean xaccTransHasReconciledSplits(const Transaction *trans)
FIXME: document me.
Transaction * xaccMallocTransaction(QofBook *book)
The xaccMallocTransaction() will malloc memory and initialize it.
void xaccTransSetDatePostedSecsNormalized(Transaction *trans, time64 time)
This function sets the posted date of the transaction, specified by a time64 (see ctime(3))...
void xaccTransClearSplits(Transaction *trans)
Remove all splits from the transaction.
gboolean xaccTransHasSplitsInStateByAccount(const Transaction *trans, const char state, const Account *account)
FIXME: document me.
Split * xaccTransGetSplit(const Transaction *trans, int i)
Return a pointer to the indexed split in this transaction&#39;s split list.
time64 xaccTransGetDate(const Transaction *trans)
Retrieve the posted date of the transaction.
gboolean xaccTransUseTradingAccounts(const Transaction *trans)
Determine whether this transaction should use commodity trading accounts.
gboolean xaccTransIsReadonlyByPostedDate(const Transaction *trans)
Returns TRUE if this Transaction is read-only because its posted-date is older than the "auto-readonl...
gboolean xaccTransIsOpen(const Transaction *trans)
The xaccTransIsOpen() method returns TRUE if the transaction is open for editing. ...
a simple price database for gnucash
gnc_numeric xaccTransGetAccountBalance(const Transaction *trans, const Account *account)
Get the account balance for the specified account after the last split in the specified transaction...
char xaccTransGetTxnType(Transaction *trans)
Returns the Transaction Type: note this type will be derived from the transaction splits...
void xaccTransSetNotes(Transaction *trans, const char *notes)
Sets the transaction Notes.
const char * xaccTransGetVoidReason(const Transaction *transaction)
Returns the user supplied textual reason why a transaction was voided.
STRUCTS.
const char * xaccTransGetReadOnly(Transaction *trans)
Returns a non-NULL value if this Transaction was marked as read-only with some specific "reason" text...
void xaccTransSetDescription(Transaction *trans, const char *desc)
Sets the transaction Description.
void xaccTransSetNum(Transaction *trans, const char *num)
Sets the transaction Number (or ID) field; rather than use this function directly, see &#39;gnc_set_num_action&#39; in engine/engine-helpers.c & .h which takes a user-set book option for selecting the source for the num-cell (the transaction-number or the split-action field) in registers/reports into account automatically.
void xaccTransRecordPrice(Transaction *trans, PriceSource source)
The xaccTransRecordPrice() method iterates through the splits and and record the non-currency equival...
void xaccTransCopyOnto(const Transaction *from_trans, Transaction *to_trans)
Copy a transaction to another using the function below without changing any account information...
API for Transactions and Splits (journal entries)
gboolean xaccTransIsBalanced(const Transaction *trans)
Returns true if the transaction is balanced according to the rules currently in effect.
const char * xaccTransGetNum(const Transaction *trans)
Gets the transaction Number (or ID) field; rather than use this function directly, see &#39;gnc_get_num_action&#39; and &#39;gnc_get_action_num&#39; in engine/engine-helpers.c & .h which takes a user-set book option for selecting the source for the num-cell (the transaction-number or the split-action field) in registers/reports into account automatically.
int xaccTransOrder_num_action(const Transaction *ta, const char *actna, const Transaction *tb, const char *actnb)
The xaccTransOrder_num_action(ta,actna,tb,actnb) method is useful for sorting.
Split * xaccTransGetFirstPaymentAcctSplit(const Transaction *trans)
The xaccTransGetFirstPaymentAcctSplit() method returns a pointer to the first split in this transacti...
void xaccTransSetDatePostedGDate(Transaction *trans, GDate date)
This method modifies posted date of the transaction, specified by a GDate.
const char * xaccTransGetDocLink(const Transaction *trans)
Gets the transaction Document Link.
gboolean xaccTransHasReconciledSplitsByAccount(const Transaction *trans, const Account *account)
FIXME: document me.
void xaccTransSetCurrency(Transaction *trans, gnc_commodity *curr)
Set the commodity of this transaction.
void xaccTransDestroy(Transaction *trans)
Destroys a transaction.
const char * xaccTransGetNotes(const Transaction *trans)
Gets the transaction Notes.
Transaction * xaccTransLookup(const GncGUID *guid, QofBook *book)
The xaccTransLookup() subroutine will return the transaction associated with the given id...
void xaccTransSetIsClosingTxn(Transaction *trans, gboolean is_closing)
Sets whether or not this transaction is a "closing transaction".
int xaccTransCountSplits(const Transaction *trans)
Returns the number of splits in this transaction.
void xaccTransSetTxnType(Transaction *trans, char type)
Set the Transaction Type: note the type will be saved into the Transaction kvp property as a backward...
GList SplitList
GList of Split.
Definition: gnc-engine.h:207
gboolean xaccTransHasSplitsInState(const Transaction *trans, const char state)
FIXME: document me.
gboolean xaccTransEqual(const Transaction *ta, const Transaction *tb, gboolean check_guids, gboolean check_splits, gboolean check_balances, gboolean assume_ordered)
Equality.
gnc_numeric xaccTransGetImbalanceValue(const Transaction *trans)
The xaccTransGetImbalanceValue() method returns the total value of the transaction.
void xaccTransSetReadOnly(Transaction *trans, const char *reason)
Set the transaction to be ReadOnly by setting a non-NULL value as "reason".
void xaccTransVoid(Transaction *transaction, const char *reason)
xaccTransVoid voids a transaction.
Transaction * xaccTransClone(const Transaction *t)
The xaccTransClone() method will create a complete copy of an existing transaction.
time64 xaccTransRetDatePosted(const Transaction *trans)
Retrieve the posted date of the transaction.
void xaccTransCopyFromClipBoard(const Transaction *from_trans, Transaction *to_trans, const Account *from_acc, Account *to_acc, gboolean no_date)
This function explicitly must robustly handle some unusual input.
void xaccTransScrubGains(Transaction *trans, Account *gain_acc)
The xaccTransScrubGains() routine performs a number of cleanup functions on the indicated transaction...
Transaction * xaccTransCloneNoKvp(const Transaction *t)
The xaccTransCloneNoKvp() method will create a complete copy of an existing transaction except that ...
const char * xaccTransGetDescription(const Transaction *trans)
Gets the transaction Description.
void xaccTransSetDate(Transaction *trans, int day, int mon, int year)
The xaccTransSetDate() method does the same thing as xaccTransSetDate[Posted]Secs(), but takes a convenient day-month-year format.
void xaccTransSetDateDue(Transaction *trans, time64 time)
Dates and txn-type for A/R and A/P "invoice" postings.
void xaccTransCommitEdit(Transaction *trans)
The xaccTransCommitEdit() method indicates that the changes to the transaction and its splits are com...
void xaccTransBeginEdit(Transaction *trans)
The xaccTransBeginEdit() method must be called before any changes are made to a transaction or any of...
int xaccTransGetSplitIndex(const Transaction *trans, const Split *split)
Inverse of xaccTransGetSplit()
SplitList * xaccTransGetAPARAcctSplitList(const Transaction *trans, gboolean strict)
The xaccTransGetAPARSplitList() method returns a GList of the splits in a transaction that belong to ...
void xaccTransUnvoid(Transaction *transaction)
xaccTransUnvoid restores a voided transaction to its original state.
All type declarations for the whole Gnucash engine.
time64 xaccTransGetVoidTime(const Transaction *tr)
Returns the time that a transaction was voided.
time64 xaccTransGetDateEntered(const Transaction *trans)
Retrieve the date of when the transaction was entered.
Transaction * xaccTransReverse(Transaction *transaction)
xaccTransReverse creates a Transaction that reverses the given transaction by inverting all the numer...
guint gnc_book_count_transactions(QofBook *book)
void xaccTransSetDatePostedSecs(Transaction *trans, time64 time)
The xaccTransSetDatePostedSecs() method will modify the posted date of the transaction, specified by a time64 (see ctime(3)).
Split * xaccTransGetFirstAPARAcctSplit(const Transaction *trans, gboolean strict)
The xaccTransGetFirstPaymentAcctSplit() method returns a pointer to the first split in this transacti...
gboolean xaccTransGetVoidStatus(const Transaction *transaction)
Retrieve information on whether or not a transaction has been voided.
SplitList * xaccTransGetPaymentAcctSplitList(const Transaction *trans)
The xaccTransGetPaymentAcctSplitList() method returns a GList of the splits in a transaction that bel...
gboolean xaccTransGetIsClosingTxn(const Transaction *trans)
Returns whether this transaction is a "closing transaction".
gnc_commodity * xaccTransGetCurrency(const Transaction *trans)
Returns the valuation commodity of this transaction.
MonetaryList * xaccTransGetImbalance(const Transaction *trans)
The xaccTransGetImbalance method returns a list giving the value of the transaction in each currency ...
void xaccTransSetDocLink(Transaction *trans, const char *doclink)
Sets the transaction Document Link.
PriceSource
Price source enum.
Definition: gnc-pricedb.h:169
Transaction * xaccTransGetReversedBy(const Transaction *trans)
Returns the transaction that reversed the given transaction.
int xaccTransOrder(const Transaction *ta, const Transaction *tb)
The xaccTransOrder(ta,tb) method is useful for sorting.
gint64 time64
Most systems that are currently maintained, including Microsoft Windows, BSD-derived Unixes and Linux...
Definition: gnc-date.h:87
void xaccTransSetDateEnteredSecs(Transaction *trans, time64 time)
Modify the date of when the transaction was entered.
time64 xaccTransRetDateEntered(const Transaction *trans)
Retrieve the date of when the transaction was entered.
void xaccTransSortSplits(Transaction *trans)
Sorts the splits in a transaction, putting the debits first, followed by the credits.
GDate xaccTransGetDatePostedGDate(const Transaction *trans)
Retrieve the posted date of the transaction.
The type used to store guids in C.
Definition: guid.h:75
time64 xaccTransRetDateDue(const Transaction *trans)
Dates and txn-type for A/R and A/P "invoice" postings.
SplitList * xaccTransGetSplitList(const Transaction *trans)
The xaccTransGetSplitList() method returns a GList of the splits in a transaction.
Commodity handling public routines.
void xaccTransRollbackEdit(Transaction *trans)
The xaccTransRollbackEdit() routine rejects all edits made, and sets the transaction back to where it...
Transaction * xaccTransCopyToClipBoard(const Transaction *from_trans)
Copy a transaction to the &#39;clipboard&#39; transaction using dupe_transaction.
gnc_numeric xaccTransGetAccountAmount(const Transaction *trans, const Account *account)
Same as xaccTransGetAccountValue, but uses the Account&#39;s commodity.
gnc_numeric xaccTransGetAccountValue(const Transaction *trans, const Account *account)
The xaccTransGetAccountValue() method returns the total value applied to a particular account...