2003-08-25 13:36:54 -05:00
|
|
|
/********************************************************************\
|
|
|
|
* cap-gains.c -- Automatically Compute Capital Gains/Losses *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License*
|
|
|
|
* along with this program; if not, contact: *
|
|
|
|
* *
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
|
|
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
|
|
|
\********************************************************************/
|
|
|
|
|
|
|
|
/** @file cap-gains.c
|
|
|
|
* @breif Utilities to Automatically Compute Capital Gains/Losses.
|
|
|
|
* @author Created by Linas Vepstas August 2003
|
|
|
|
* @author Copyright (c) 2003 Linas Vepstas <linas@linas.org>
|
|
|
|
*
|
|
|
|
* This file implements the various routines to automatically
|
|
|
|
* compute and handle Cap Gains/Losses resulting from trading
|
|
|
|
* activities. Some of these routines might have broader
|
|
|
|
* applicability, for handling depreciation * & etc.
|
|
|
|
*
|
|
|
|
* This code is under development, and is 'alpha': many important
|
|
|
|
* routines are missing, many existing routines are not called
|
|
|
|
* from inside the engine as needed, and routines may be buggy.
|
|
|
|
*
|
|
|
|
* This code does not currently handle tax distinctions, e.g
|
|
|
|
* the different tax treatment that short-term and long-term
|
|
|
|
* cap gains have.
|
|
|
|
|
|
|
|
ToDo List:
|
|
|
|
|
|
|
|
o If the amount in a split is changed, then the lot has to be recomputed.
|
|
|
|
This has a potential trickle-through effect on all later lots.
|
|
|
|
Ideally, later lots are dissolved, and recomputed. However, some
|
|
|
|
lots may have been user-hand-built. These should be left alone.
|
|
|
|
|
|
|
|
o Rework gemini in kvp-utils because this is needed to associate
|
|
|
|
split-up splits.
|
|
|
|
|
|
|
|
o XXX if the split has been split, it needs to be reuinfied first?
|
|
|
|
this mains that gains need to be 'reunified' too.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "Account.h"
|
|
|
|
#include "AccountP.h"
|
|
|
|
#include "Group.h"
|
|
|
|
#include "GroupP.h"
|
|
|
|
#include "Transaction.h"
|
|
|
|
#include "TransactionP.h"
|
2003-08-25 15:02:41 -05:00
|
|
|
#include "cap-gains.h"
|
2003-08-25 13:36:54 -05:00
|
|
|
#include "gnc-engine.h"
|
|
|
|
#include "gnc-engine-util.h"
|
|
|
|
#include "gnc-lot.h"
|
|
|
|
#include "gnc-lot-p.h"
|
|
|
|
#include "kvp-util-p.h"
|
|
|
|
#include "messages.h"
|
|
|
|
|
|
|
|
static short module = MOD_LOT;
|
|
|
|
|
|
|
|
|
|
|
|
/* ============================================================== */
|
2003-08-25 15:02:41 -05:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
xaccAccountHasTrades (Account *acc)
|
|
|
|
{
|
|
|
|
gnc_commodity *acc_comm;
|
|
|
|
SplitList *node;
|
|
|
|
|
|
|
|
if (!acc) return FALSE;
|
|
|
|
|
|
|
|
acc_comm = acc->commodity;
|
|
|
|
|
|
|
|
for (node=acc->splits; node; node=node->next)
|
|
|
|
{
|
|
|
|
Split *s = node->data;
|
|
|
|
Transaction *t = s->parent;
|
|
|
|
if (acc_comm != t->common_currency) return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
|
|
|
|
|
|
|
struct early_lot_s
|
|
|
|
{
|
|
|
|
GNCLot *lot;
|
|
|
|
Timespec ts;
|
|
|
|
int (*numeric_pred)(gnc_numeric);
|
|
|
|
};
|
|
|
|
|
|
|
|
static gpointer earliest_helper (GNCLot *lot, gpointer user_data)
|
|
|
|
{
|
|
|
|
struct early_lot_s *els = user_data;
|
|
|
|
Split *s;
|
|
|
|
Transaction *trans;
|
|
|
|
gnc_numeric bal;
|
|
|
|
|
|
|
|
if (gnc_lot_is_closed (lot)) return NULL;
|
|
|
|
|
|
|
|
/* We want a lot whose balance is of the correct sign */
|
|
|
|
bal = gnc_lot_get_balance (lot);
|
|
|
|
if (0 == (els->numeric_pred) (bal)) return NULL;
|
|
|
|
|
|
|
|
s = gnc_lot_get_earliest_split (lot);
|
|
|
|
trans = s->parent;
|
|
|
|
if ((els->ts.tv_sec > trans->date_posted.tv_sec) ||
|
|
|
|
((els->ts.tv_sec == trans->date_posted.tv_sec) &&
|
|
|
|
(els->ts.tv_nsec > trans->date_posted.tv_nsec)))
|
|
|
|
{
|
|
|
|
els->ts = trans->date_posted;
|
|
|
|
els->lot = lot;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GNCLot *
|
|
|
|
xaccAccountFindEarliestOpenLot (Account *acc, gnc_numeric sign)
|
|
|
|
{
|
|
|
|
struct early_lot_s es;
|
|
|
|
|
|
|
|
es.lot = NULL;
|
|
|
|
es.ts.tv_sec = 10000000LL * ((long long) LONG_MAX);
|
|
|
|
es.ts.tv_nsec = 0;
|
|
|
|
|
|
|
|
if (gnc_numeric_positive_p(sign)) es.numeric_pred = gnc_numeric_negative_p;
|
|
|
|
else es.numeric_pred = gnc_numeric_positive_p;
|
|
|
|
|
|
|
|
xaccAccountForEachLot (acc, earliest_helper, &es);
|
|
|
|
return es.lot;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
|
|
|
|
|
|
|
static Timespec
|
|
|
|
gnc_lot_get_close_date (GNCLot *lot)
|
|
|
|
{
|
|
|
|
Split *s = gnc_lot_get_latest_split (lot);
|
|
|
|
Transaction *trans = s->parent;
|
|
|
|
return trans->date_posted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
|
|
|
/* Similar to GetOrMakeAccount, but different in important ways */
|
|
|
|
|
|
|
|
static Account *
|
|
|
|
GetOrMakeLotOrphanAccount (AccountGroup *root, gnc_commodity * currency)
|
|
|
|
{
|
|
|
|
char * accname;
|
|
|
|
Account * acc;
|
|
|
|
|
|
|
|
g_return_val_if_fail (root, NULL);
|
|
|
|
|
|
|
|
/* build the account name */
|
|
|
|
if (!currency)
|
|
|
|
{
|
|
|
|
PERR ("No currency specified!");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
accname = g_strconcat (_("Orphaned Gains"), "-",
|
|
|
|
gnc_commodity_get_mnemonic (currency), NULL);
|
|
|
|
|
|
|
|
/* See if we've got one of these going already ... */
|
|
|
|
acc = xaccGetAccountFromName (root, accname);
|
|
|
|
|
|
|
|
if (acc == NULL)
|
|
|
|
{
|
|
|
|
/* Guess not. We'll have to build one. */
|
|
|
|
acc = xaccMallocAccount (root->book);
|
|
|
|
xaccAccountBeginEdit (acc);
|
|
|
|
xaccAccountSetName (acc, accname);
|
|
|
|
xaccAccountSetCommodity (acc, currency);
|
|
|
|
xaccAccountSetType (acc, INCOME);
|
|
|
|
xaccAccountSetDescription (acc, _("Realized Gain/Loss"));
|
|
|
|
xaccAccountSetNotes (acc,
|
|
|
|
_("Realized Gains or Losses from\n"
|
|
|
|
"Commodity or Trading Accounts\n"
|
|
|
|
"that haven't been recorded elsewhere.\n"));
|
|
|
|
|
|
|
|
/* Hang the account off the root. */
|
|
|
|
xaccGroupInsertAccount (root, acc);
|
|
|
|
xaccAccountCommitEdit (acc);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (accname);
|
|
|
|
|
|
|
|
return acc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
|
|
|
|
|
|
|
void
|
|
|
|
xaccAccountSetDefaultGainAccount (Account *acc, Account *gain_acct)
|
|
|
|
{
|
|
|
|
KvpFrame *cwd;
|
|
|
|
KvpValue *vvv;
|
|
|
|
const char * cur_name;
|
|
|
|
|
|
|
|
if (!acc || !gain_acct) return;
|
|
|
|
|
|
|
|
cwd = xaccAccountGetSlots (acc);
|
|
|
|
cwd = kvp_frame_get_frame_slash (cwd, "/lot-mgmt/gains-act/");
|
|
|
|
|
|
|
|
/* Accounts are indexed by thier unique currency name */
|
|
|
|
cur_name = gnc_commodity_get_unique_name (acc->commodity);
|
|
|
|
|
|
|
|
xaccAccountBeginEdit (acc);
|
|
|
|
vvv = kvp_value_new_guid (xaccAccountGetGUID (gain_acct));
|
|
|
|
kvp_frame_set_slot_nc (cwd, cur_name, vvv);
|
|
|
|
xaccAccountSetSlots_nc (acc, acc->kvp_data);
|
|
|
|
xaccAccountCommitEdit (acc);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
|
|
|
|
|
|
|
Account *
|
|
|
|
xaccAccountGetDefaultGainAccount (Account *acc, gnc_commodity * currency)
|
|
|
|
{
|
|
|
|
Account *gain_acct = NULL;
|
|
|
|
KvpFrame *cwd;
|
|
|
|
KvpValue *vvv;
|
|
|
|
GUID * gain_acct_guid;
|
|
|
|
const char * cur_name;
|
|
|
|
|
|
|
|
if (!acc || !currency) return NULL;
|
|
|
|
|
|
|
|
cwd = xaccAccountGetSlots (acc);
|
|
|
|
cwd = kvp_frame_get_frame_slash (cwd, "/lot-mgmt/gains-act/");
|
|
|
|
|
|
|
|
/* Accounts are indexed by thier unique currency name */
|
|
|
|
cur_name = gnc_commodity_get_unique_name (currency);
|
|
|
|
vvv = kvp_frame_get_slot (cwd, cur_name);
|
|
|
|
gain_acct_guid = kvp_value_get_guid (vvv);
|
|
|
|
|
|
|
|
gain_acct = xaccAccountLookup (gain_acct_guid, acc->book);
|
|
|
|
return gain_acct;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
|
|
|
/* Functionally identical to the following:
|
|
|
|
* if (!xaccAccountGetDefaultGainAccount()) xaccAccountSetDefaultGainAccount ();
|
|
|
|
* except that it saves a few cycles.
|
2003-08-25 13:36:54 -05:00
|
|
|
*/
|
|
|
|
|
2003-08-25 15:02:41 -05:00
|
|
|
static Account *
|
|
|
|
GetOrMakeGainAcct (Account *acc, gnc_commodity * currency)
|
|
|
|
{
|
|
|
|
Account *gain_acct = NULL;
|
|
|
|
KvpFrame *cwd;
|
|
|
|
KvpValue *vvv;
|
|
|
|
GUID * gain_acct_guid;
|
|
|
|
const char * cur_name;
|
|
|
|
|
|
|
|
cwd = xaccAccountGetSlots (acc);
|
|
|
|
cwd = kvp_frame_get_frame_slash (cwd, "/lot-mgmt/gains-act/");
|
|
|
|
|
|
|
|
/* Accounts are indexed by thier unique currency name */
|
|
|
|
cur_name = gnc_commodity_get_unique_name (currency);
|
|
|
|
vvv = kvp_frame_get_slot (cwd, cur_name);
|
|
|
|
gain_acct_guid = kvp_value_get_guid (vvv);
|
|
|
|
|
|
|
|
gain_acct = xaccAccountLookup (gain_acct_guid, acc->book);
|
|
|
|
|
|
|
|
/* If there is no default place to put gains/losses
|
|
|
|
* for this account, then create such a place */
|
|
|
|
if (NULL == gain_acct)
|
|
|
|
{
|
|
|
|
AccountGroup *root;
|
|
|
|
|
|
|
|
xaccAccountBeginEdit (acc);
|
|
|
|
root = xaccAccountGetRoot(acc);
|
|
|
|
gain_acct = GetOrMakeLotOrphanAccount (root, currency);
|
|
|
|
|
|
|
|
vvv = kvp_value_new_guid (xaccAccountGetGUID (gain_acct));
|
|
|
|
kvp_frame_set_slot_nc (cwd, cur_name, vvv);
|
|
|
|
xaccAccountSetSlots_nc (acc, acc->kvp_data);
|
|
|
|
xaccAccountCommitEdit (acc);
|
|
|
|
|
|
|
|
}
|
|
|
|
return gain_acct;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
2003-08-25 13:36:54 -05:00
|
|
|
/* Accounting-policy callback. Given an account and an amount,
|
|
|
|
* this routine should return a lot.
|
|
|
|
*/
|
|
|
|
typedef GNCLot * (*AccountingPolicy) (Account *,
|
|
|
|
Split *,
|
|
|
|
gpointer user_data);
|
|
|
|
static gboolean
|
|
|
|
xaccSplitAssignToLot (Split *split,
|
|
|
|
AccountingPolicy policy, gpointer user_data)
|
|
|
|
{
|
|
|
|
Account *acc;
|
|
|
|
gboolean splits_added = FALSE;
|
|
|
|
GNCLot *lot;
|
|
|
|
|
|
|
|
if (!split) return FALSE;
|
|
|
|
|
|
|
|
ENTER ("split=%p", split);
|
|
|
|
|
|
|
|
/* If this split already belongs to a lot, we are done. */
|
|
|
|
if (split->lot) return FALSE;
|
2003-08-25 15:02:41 -05:00
|
|
|
acc = split->acc;
|
2003-08-25 13:36:54 -05:00
|
|
|
xaccAccountBeginEdit (acc);
|
|
|
|
|
|
|
|
/* If we are here, this split does not belong to any lot.
|
|
|
|
* Lets put it in the earliest one we can find. This
|
|
|
|
* block is written in the form of a while loop, since we
|
|
|
|
* may have to bust a split across several lots.
|
|
|
|
*/
|
|
|
|
while (split)
|
|
|
|
{
|
|
|
|
PINFO ("have split amount=%s", gnc_numeric_to_string (split->amount));
|
|
|
|
lot = policy (acc, split, user_data);
|
|
|
|
if (lot)
|
|
|
|
{
|
|
|
|
/* If the amount is smaller than open balance ... */
|
|
|
|
gnc_numeric baln = gnc_lot_get_balance (lot);
|
|
|
|
int cmp = gnc_numeric_compare (split->amount, baln);
|
|
|
|
|
|
|
|
PINFO ("found open lot with baln=%s", gnc_numeric_to_string (baln));
|
|
|
|
/* cmp == +1 if amt > baln */
|
|
|
|
if (0 < cmp)
|
|
|
|
{
|
|
|
|
Split * new_split;
|
|
|
|
gnc_numeric amt_a, amt_b, amt_tot;
|
|
|
|
gnc_numeric val_a, val_b, val_tot;
|
|
|
|
Transaction *trans;
|
|
|
|
Timespec ts;
|
|
|
|
|
|
|
|
trans = split->parent;
|
|
|
|
xaccTransBeginEdit (trans);
|
|
|
|
|
|
|
|
amt_tot = split->amount;
|
|
|
|
amt_a = gnc_numeric_neg (baln);
|
|
|
|
amt_b = gnc_numeric_sub_fixed (amt_tot, amt_a);
|
|
|
|
|
|
|
|
PINFO ("XXXXXXXXXXXXXXXX splitting split ");
|
|
|
|
/* Compute the value so that it holds in the same proportion:
|
|
|
|
* i.e. so that (amt_a / amt_tot) = (val_a / val_tot)
|
|
|
|
*/
|
|
|
|
val_tot = split->value;
|
|
|
|
val_a = gnc_numeric_mul (amt_a, val_tot, GNC_DENOM_AUTO, GNC_RND_NEVER);
|
|
|
|
val_a = gnc_numeric_div (val_a, amt_tot, gnc_numeric_denom(val_tot), GNC_DENOM_EXACT);
|
|
|
|
|
|
|
|
val_b = gnc_numeric_sub_fixed (val_tot, val_a);
|
|
|
|
|
|
|
|
xaccSplitSetAmount (split, amt_a);
|
|
|
|
xaccSplitSetValue (split, val_a);
|
|
|
|
|
|
|
|
/* Adding this split will have the effect of closing this lot,
|
|
|
|
* because the new balance should be precisely zero. */
|
|
|
|
gnc_lot_add_split (lot, split);
|
|
|
|
|
|
|
|
/* Put the remainder of the balance into a new split, which is
|
|
|
|
* in other respects just a clone of this one */
|
|
|
|
/* XXX FIXME: we should add some kvp markup to indicate that these
|
|
|
|
* two splits used to be one before being 'split' */
|
|
|
|
new_split = xaccMallocSplit (acc->book);
|
|
|
|
|
|
|
|
/* Copy most of the split attributes */
|
|
|
|
xaccSplitSetMemo (new_split, xaccSplitGetMemo (split));
|
|
|
|
xaccSplitSetAction (new_split, xaccSplitGetAction (split));
|
|
|
|
xaccSplitSetReconcile (new_split, xaccSplitGetReconcile (split));
|
|
|
|
ts = xaccSplitRetDateReconciledTS (split);
|
|
|
|
xaccSplitSetDateReconciledTS (new_split, &ts);
|
|
|
|
|
|
|
|
/* Copying the KVP tree seems like the right thing to do,
|
|
|
|
* this is potentially dangerous, depending on how other
|
|
|
|
* users use it.*/
|
|
|
|
xaccSplitSetSlots_nc (new_split, kvp_frame_copy(xaccSplitGetSlots (split)));
|
|
|
|
|
|
|
|
xaccSplitSetAmount (new_split, amt_b);
|
|
|
|
xaccSplitSetValue (new_split, val_b);
|
|
|
|
|
|
|
|
xaccAccountInsertSplit (acc, new_split);
|
|
|
|
xaccTransAppendSplit (trans, new_split);
|
|
|
|
xaccTransCommitEdit (trans);
|
|
|
|
split = new_split;
|
|
|
|
|
|
|
|
splits_added = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gnc_lot_add_split (lot, split);
|
|
|
|
split = NULL;
|
|
|
|
PINFO ("added split to lot, new lot baln=%s",
|
|
|
|
gnc_numeric_to_string (gnc_lot_get_balance(lot)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-08-25 15:02:41 -05:00
|
|
|
gint64 id;
|
|
|
|
char buff[200];
|
|
|
|
|
2003-08-25 13:36:54 -05:00
|
|
|
/* No lot was found. Start a new lot */
|
|
|
|
PINFO ("start new lot");
|
|
|
|
lot = gnc_lot_new (acc->book);
|
|
|
|
gnc_lot_add_split (lot, split);
|
|
|
|
split = NULL;
|
2003-08-25 15:02:41 -05:00
|
|
|
|
|
|
|
/* Provide a reasonable title for the new lot */
|
|
|
|
id = kvp_frame_get_gint64 (xaccAccountGetSlots (acc), "/lot-mgmt/next-id");
|
|
|
|
snprintf (buff, 200, _("Lot %lld"), id);
|
|
|
|
kvp_frame_set_str (gnc_lot_get_slots (lot), "/title", buff);
|
|
|
|
id ++;
|
|
|
|
kvp_frame_set_gint64 (xaccAccountGetSlots (acc), "/lot-mgmt/next-id", id);
|
2003-08-25 13:36:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
xaccAccountCommitEdit (acc);
|
|
|
|
|
|
|
|
LEAVE ("split=%p added=%d", split, splits_added);
|
|
|
|
return splits_added;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GNCLot *
|
|
|
|
FIFOPolicy (Account *acc, Split *split, gpointer user_data)
|
|
|
|
{
|
|
|
|
return xaccAccountFindEarliestOpenLot (acc, split->amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
xaccSplitFIFOAssignToLot (Split *split)
|
|
|
|
{
|
|
|
|
return xaccSplitAssignToLot (split, FIFOPolicy, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================== */
|
|
|
|
/** The xaccSplitComputeCapGains() routine computes the cap gains
|
|
|
|
* or losses for the indicated split. The gains are placed into
|
|
|
|
* the 'gains_acct'. If the gains_acct is NULL, then the appropriate
|
|
|
|
* default account is used (and created, if needed).
|
|
|
|
*
|
|
|
|
* To compute the gains, the split must belong to a lot. If the
|
|
|
|
* split is the 'opening split', i.e. the earliest split in the
|
|
|
|
* lot, then nothing is done, as there are no gains/losses (something
|
|
|
|
* must be bought *and* sold for there to be a gain/loss).
|
|
|
|
*
|
|
|
|
* Note also: the 'amount' of the split must be of opposite sign,
|
|
|
|
* and must be equal to or smaller, than the 'amount' of the opening
|
|
|
|
* split; its an error otherwise. If the 'amount' of the split is
|
|
|
|
* less than the opeing amount, the gains are pro-rated.
|
|
|
|
*
|
|
|
|
* XXX above checks & pro-rating not yet implemented!!
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
xaccSplitComputeCapGains(Split *split, Account *gain_acc)
|
|
|
|
{
|
|
|
|
Split *opening_split;
|
2003-08-25 15:02:41 -05:00
|
|
|
GNCLot *lot;
|
2003-08-25 13:36:54 -05:00
|
|
|
gnc_commodity *currency = NULL;
|
|
|
|
gnc_numeric zero = gnc_numeric_zero();
|
|
|
|
gnc_numeric value = zero;
|
|
|
|
|
2003-08-25 15:02:41 -05:00
|
|
|
if (!split) return;
|
|
|
|
lot = split->lot;
|
2003-08-25 13:36:54 -05:00
|
|
|
if (!lot) return;
|
|
|
|
currency = split->parent->common_currency;
|
|
|
|
|
|
|
|
ENTER ("lot=%s", kvp_frame_get_string (gnc_lot_get_slots (lot), "/title"));
|
|
|
|
|
2003-08-25 15:02:41 -05:00
|
|
|
opening_split = gnc_lot_get_earliest_split(lot);
|
|
|
|
if (split == opening_split)
|
|
|
|
{
|
|
|
|
/* XXX we should check to make sure this split
|
|
|
|
* doesn't have a cap-gain xaction associated with it.
|
|
|
|
* If it does, itshould be trashed.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check to make sure the opening split and this split
|
|
|
|
* use the same currency */
|
2003-08-25 13:36:54 -05:00
|
|
|
if (FALSE == gnc_commodity_equiv (currency,
|
2003-08-25 15:02:41 -05:00
|
|
|
opening_split->parent->common_currency))
|
2003-08-25 13:36:54 -05:00
|
|
|
{
|
2003-08-25 15:02:41 -05:00
|
|
|
/* OK, the purchase and the sale were made in different currencies.
|
|
|
|
* I don't know how to compute cap gains for that. This is not
|
|
|
|
* an error. Just punt, silently.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The cap gains is the difference between the value of the
|
|
|
|
* opening split, and the current split. */
|
|
|
|
value = xaccSplitGetValue (opening_split);
|
2003-08-25 13:36:54 -05:00
|
|
|
value = gnc_numeric_add (value, xaccSplitGetValue (split),
|
|
|
|
GNC_DENOM_AUTO, GNC_DENOM_LCD);
|
|
|
|
PINFO ("Split value=%s Cap Gains=%s",
|
|
|
|
gnc_numeric_to_string (xaccSplitGetValue(split)),
|
|
|
|
gnc_numeric_to_string (value));
|
|
|
|
|
2003-08-25 15:02:41 -05:00
|
|
|
/* XXX pro-rate based on amounts! */
|
2003-08-25 13:36:54 -05:00
|
|
|
|
|
|
|
/* Are the cap gains zero? If not, add a balancing transaction.
|
|
|
|
* As per design doc lots.txt: the transaction has two splits,
|
|
|
|
* with equal & opposite values. The amt of one iz zero (so as
|
|
|
|
* not to upset the lot balance), the amt of the other is the same
|
|
|
|
* as its value (its the realized gain/loss).
|
|
|
|
*/
|
|
|
|
if (FALSE == gnc_numeric_equal (value, zero))
|
|
|
|
{
|
|
|
|
Transaction *trans;
|
|
|
|
Account *lot_acc = lot->account;
|
|
|
|
QofBook *book = lot_acc->book;
|
|
|
|
Split *lot_split, *gain_split;
|
|
|
|
Timespec ts;
|
|
|
|
|
|
|
|
lot_split = xaccMallocSplit (book);
|
|
|
|
gain_split = xaccMallocSplit (book);
|
|
|
|
|
2003-08-25 15:02:41 -05:00
|
|
|
if (NULL == gain_acc)
|
|
|
|
{
|
|
|
|
gain_acc = GetOrMakeGainAcct (lot_acc, currency);
|
|
|
|
}
|
2003-08-25 13:36:54 -05:00
|
|
|
xaccAccountBeginEdit (gain_acc);
|
|
|
|
xaccAccountInsertSplit (gain_acc, gain_split);
|
|
|
|
xaccAccountCommitEdit (gain_acc);
|
|
|
|
|
|
|
|
xaccAccountBeginEdit (lot_acc);
|
|
|
|
xaccAccountInsertSplit (lot_acc, lot_split);
|
|
|
|
xaccAccountCommitEdit (lot_acc);
|
|
|
|
|
2003-08-25 15:02:41 -05:00
|
|
|
/* XXX See if there already is an associated
|
|
|
|
* gains transaction; if there is, adjust its value
|
|
|
|
* as appropriate. Else, create a new gains xaction.
|
|
|
|
*
|
|
|
|
* XXX for new xacton, install KVP markup indicating
|
|
|
|
* that this is the gains trnasaction matching the
|
|
|
|
* orig transaction.
|
|
|
|
*/
|
2003-08-25 13:36:54 -05:00
|
|
|
trans = xaccMallocTransaction (book);
|
|
|
|
|
|
|
|
xaccTransBeginEdit (trans);
|
|
|
|
xaccTransSetCurrency (trans, currency);
|
|
|
|
xaccTransSetDescription (trans, _("Realized Gain/Loss"));
|
|
|
|
ts = gnc_lot_get_close_date (lot);
|
|
|
|
xaccTransSetDatePostedTS (trans, &ts);
|
|
|
|
xaccTransSetDateEnteredSecs (trans, time(0));
|
|
|
|
|
|
|
|
xaccTransAppendSplit (trans, lot_split);
|
|
|
|
xaccTransAppendSplit (trans, gain_split);
|
|
|
|
|
|
|
|
xaccSplitSetMemo (lot_split, _("Realized Gain/Loss"));
|
|
|
|
xaccSplitSetAmount (lot_split, zero);
|
|
|
|
xaccSplitSetValue (lot_split, gnc_numeric_neg (value));
|
|
|
|
gnc_lot_add_split (lot, lot_split);
|
|
|
|
|
|
|
|
xaccSplitSetMemo (gain_split, _("Realized Gain/Loss"));
|
|
|
|
xaccSplitSetAmount (gain_split, value);
|
|
|
|
xaccSplitSetValue (gain_split, value);
|
2003-08-25 15:02:41 -05:00
|
|
|
|
2003-08-25 13:36:54 -05:00
|
|
|
xaccTransCommitEdit (trans);
|
|
|
|
|
|
|
|
}
|
|
|
|
LEAVE ("lot=%s", kvp_frame_get_string (gnc_lot_get_slots (lot), "/title"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* =========================== END OF FILE ======================= */
|