コード例 #1
0
        //method that occurs when a cell in any of the grids is clicked: it
        //gets the cell's respective account's name, data, and balance
        private void DataGridCell_MouseDown(object sender, MouseButtonEventArgs e)
        {
            //open a new window for the account
            SingleAccount accountWindow = new SingleAccount();

            accountWindow.Show();

            //get the account name and set in new window
            DataGridCell cell        = (DataGridCell)sender;
            string       cellName    = cell.ToString();
            int          index       = cellName.IndexOf(":");
            string       accountName = cellName.Substring(index + 2);

            accountWindow.accountName.Content = accountName;

            //get account data
            Entry_tacc tacc = new Entry_tacc();

            for (int i = 0; i < Database.TEntries.Count; i++)
            {
                if (accountName.Equals(Database.TEntries[i].Account))
                {
                    tacc.Debit.AddRange(Database.TEntries[i].Debit);
                    tacc.Credit.AddRange(Database.TEntries[i].Credit);
                    tacc.Balance = Database.TEntries[i].Balance;
                }
            }

            //set account data in new window

            for (int i = 0; i < tacc.Debit.Count; i++)
            {
                Account account = new Account();
                account.Debit = tacc.Debit[i];
                if (account.Debit != 0)
                {
                    accountWindow.debitGrid.Items.Add(account);
                }
            }
            for (int i = 0; i < tacc.Credit.Count; i++)
            {
                Account account = new Account();
                account.Credit = tacc.Credit[i];
                if (account.Credit != 0)
                {
                    accountWindow.creditGrid.Items.Add(account);
                }
            }

            accountWindow.balanceLbl.Content = tacc.Balance.ToString();

            //to clear duplicate cells that pop up after user clicks a cell
            Refresh();
        }
コード例 #2
0
        //method that creates two temporary t-accounts that corresponds to a journal entry
        public static List <Entry_tacc> get_taccs(Entry entry)
        {
            //create a new list of t-account entries
            List <Entry_tacc> tempAccounts = new List <Entry_tacc>();

            //create two t-accounts and populate with data from journal entry

            //account 1
            Entry_tacc acc1 = new Entry_tacc();

            acc1.Date    = entry.Date;
            acc1.Account = entry.Account1.Trim();
            acc1.Type    = entry.Type1;
            acc1.Debit.Add(entry.Debit);
            acc1.Credit.Add(0);
            acc1.TotalDebit = entry.Debit;

            //calculate balance
            if (acc1.Type == "Asset" || acc1.Type == "Expense" || acc1.Type == "Withdrawal")
            {
                acc1.Balance = acc1.Debit[0] - acc1.Credit[0];
            }
            else
            {
                acc1.Balance = acc1.Credit[0] - acc1.Debit[0];
            }

            //account 2
            Entry_tacc acc2 = new Entry_tacc();

            acc2.Date    = entry.Date;
            acc2.Account = entry.Account2.Trim();
            acc2.Type    = entry.Type2;
            acc2.Debit.Add(0);
            acc2.Credit.Add(entry.Credit);
            acc2.TotalCredit = entry.Credit;

            //calculate balance
            if (acc2.Type == "Asset" || acc2.Type == "Expense" || acc2.Type == "Withdrawal")
            {
                acc2.Balance = acc2.Debit[0] - acc2.Credit[0];
            }
            else
            {
                acc2.Balance = acc2.Credit[0] - acc2.Debit[0];
            }

            //add t-accounts to list
            tempAccounts.Add(acc1);
            tempAccounts.Add(acc2);

            //return the t-accounts
            return(tempAccounts);
        }
コード例 #3
0
        public void Refresh()
        {
            // I don't know what is wrong but I need to do this else textboxes 1-4 will be null.
            if (!can_Refresh)
            {
                return;
            }

            textbox1.Clear();
            textbox2.Clear();
            textbox3.Clear();
            textbox4.Clear();

            DateTime from        = Database.sooe_date.from_date;
            DateTime to          = Database.sooe_date.to_date;
            double   equity      = 0;
            double   withdrawals = 0;

            for (int i = 0; i < Database.TEntries.Count; i++)
            {
                Entry_tacc _tacc = Database.TEntries[i];
                DateTime   td    = _tacc.Date;
                if (td.Day >= from.Day && td.Month >= from.Month && td.Year >= from.Year &&
                    td.Day <= to.Day && td.Month <= to.Month && td.Year <= to.Year)
                {
                    if (_tacc.Type == "Owners Equity")
                    {
                        equity += _tacc.TotalCredit;
                    }

                    if (_tacc.Type == "Withdrawal")
                    {
                        withdrawals += _tacc.TotalDebit;
                    }
                }
            }

            textbox1.Text = equity.ToString();
            textbox2.Text = Database.net_income.ToString();
            textbox3.Text = withdrawals.ToString();
            textbox4.Text = ((equity + Database.net_income) - withdrawals).ToString();

            //get data and put into database
            Database.SoeData.start_capital     = equity;
            Database.SoeData.net_income        = Database.net_income;
            Database.SoeData.total_withdrawals = withdrawals;
            Database.SoeData.final_capital     = (equity + Database.net_income) - withdrawals;
        }
コード例 #4
0
        //method that processes temporary t-accounts by either
        //adding them to the t-account list or updating t-account list
        //with the temporary t-account data
        public static void add_taccs(List <Entry_tacc> tempAccounts)
        {
            //process each temporary account
            Entry_tacc acc1 = tempAccounts[0];
            Entry_tacc acc2 = tempAccounts[1];

            //if database is empty of t-accounts
            if (Database.TEntries.Count == 0)
            {
                //add accounts to database
                Database.TEntries.Add(acc1);
                Database.TEntries.Add(acc2);
            }

            //if database is not empty,
            //compare and either update an existing account
            //or add the account to the database
            else
            {
                //variables to keep track of whether or not a t-account has been updated
                bool updated1 = false;
                bool updated2 = false;

                for (int i = 0; i < Database.TEntries.Count; i++)
                {
                    //if first t-account exists already
                    if (acc1.Account.Equals(Database.TEntries[i].Account))
                    {
                        //add the temporary t-account debit and credit to the original
                        Database.TEntries[i].Debit.Add(acc1.Debit[0]);
                        Database.TEntries[i].Debit.Add(acc1.Credit[0]);

                        //get sum of all current debits
                        double sumDebit = 0;
                        for (int j = 0; j < Database.TEntries[i].Debit.Count; j++)
                        {
                            sumDebit += Database.TEntries[i].Debit[j];
                        }

                        //get sum of all current credits
                        double sumCredit = 0;
                        for (int j = 0; j < Database.TEntries[i].Credit.Count; j++)
                        {
                            sumCredit += Database.TEntries[i].Credit[j];
                        }

                        //if it is an asset, withdrawal, or expense type
                        if (Database.TEntries[i].Type.Equals("Asset") || Database.TEntries[i].Type.Equals("Expense") || Database.TEntries[i].Type.Equals("Withdrawal"))
                        {
                            //update the original account's balance by subtracting the credit from the debit
                            Database.TEntries[i].Balance = sumDebit - sumCredit;
                        }
                        //if it is a liability, revenue, or owner's equity type
                        else
                        {
                            //update the original account's balance by subtracting the debit from the credit
                            Database.TEntries[i].Balance = sumCredit - sumDebit;
                        }

                        Database.TEntries[i].TotalCredit = sumCredit;
                        Database.TEntries[i].TotalDebit  = sumDebit;

                        updated1 = true;
                    }
                    //if end of list reached and the t-account does not exist,
                    //update the account's properties and add account to database
                    else if (i == Database.TEntries.Count - 1 && !(acc1.Account.Equals(Database.TEntries[i].Account)) && !updated1)
                    {
                        Database.TEntries.Add(acc1);
                        break;
                    }
                }
                for (int i = 0; i < Database.TEntries.Count; i++)
                {
                    //if first t-account exists already
                    if (acc2.Account.Equals(Database.TEntries[i].Account))
                    {
                        //add the temporary t-account credit and debit to the original
                        Database.TEntries[i].Debit.Add(acc2.Debit[0]);
                        Database.TEntries[i].Credit.Add(acc2.Credit[0]);

                        //get sum of all current debits
                        double sumDebit = 0;
                        for (int j = 0; j < Database.TEntries[i].Debit.Count; j++)
                        {
                            sumDebit += Database.TEntries[i].Debit[j];
                        }

                        //get sum of all current credits
                        double sumCredit = 0;
                        for (int j = 0; j < Database.TEntries[i].Credit.Count; j++)
                        {
                            sumCredit += Database.TEntries[i].Credit[j];
                        }

                        //if it is an asset, withdrawal, or expense type
                        if (Database.TEntries[i].Type.Equals("Asset") || Database.TEntries[i].Type.Equals("Expense") || Database.TEntries[i].Type.Equals("Withdrawal"))
                        {
                            //update the original account's balance by subtracting the credit from the debit
                            Database.TEntries[i].Balance = sumDebit - sumCredit;
                        }
                        //if it is a liability, revenue, or owner's equity type
                        else
                        {
                            //update the original account's balance by subtracting the debit from the credit
                            Database.TEntries[i].Balance = sumCredit - sumDebit;
                        }

                        Database.TEntries[i].TotalCredit = sumCredit;
                        Database.TEntries[i].TotalDebit  = sumDebit;

                        updated2 = true;
                    }
                    //else, if end of list reached and the t-account does not exist,
                    //add account to list
                    else if (i == Database.TEntries.Count - 1 && !(acc2.Account.Equals(Database.TEntries[i].Account)) && !updated2)
                    {
                        Database.TEntries.Add(acc2);
                        break;
                    }
                }
            }

            //once list of accounts is updated, update list of accounts for balance sheet and income statement

            //clear existing data
            Database.BalanceData.assetsList.Clear();
            Database.BalanceData.loeList.Clear();
            Database.IncomeData.revenueList.Clear();
            Database.IncomeData.expenseList.Clear();

            //remove zeros from list of debits and credits
            for (int i = 0; i < Database.TEntries.Count; i++)
            {
                for (int j = 0; j < Database.TEntries[i].Debit.Count; j++)
                {
                    if (Database.TEntries[i].Debit[j] == 0)
                    {
                        Database.TEntries[i].Debit.RemoveAt(j);
                    }
                }
                for (int j = 0; j < Database.TEntries[i].Credit.Count; j++)
                {
                    if (Database.TEntries[i].Credit[j] == 0)
                    {
                        Database.TEntries[i].Credit.RemoveAt(j);
                    }
                }
            }

            //enter updated data
            for (int i = 0; i < Database.TEntries.Count; i++)
            {
                if (Database.TEntries[i].Type == "Asset")
                {
                    Database.BalanceData.assetsList.Add(Database.TEntries[i]);
                }
                else
                {
                    Database.BalanceData.loeList.Add(Database.TEntries[i]);
                }

                if (Database.TEntries[i].Type == "Revenue")
                {
                    Database.IncomeData.revenueList.Add(Database.TEntries[i]);
                }
                else if (Database.TEntries[i].Type == "Expense")
                {
                    Database.IncomeData.expenseList.Add(Database.TEntries[i]);
                }
            }
        }
コード例 #5
0
        // method that refreshes the balancesheet grid so that it is updated with current t-account entries
        public void Refresh()
        {
            // Clear all grids
            entryGridA.Items.Clear();
            entryGridTA.Items.Clear();
            entryGridLO.Items.Clear();
            entryGridTLO.Items.Clear();

            double Total_assests = 0;
            double Total_LOE     = 0;

            //add t-accounts to respective grids
            for (int i = 0; i < Database.TEntries.Count; i++)
            {
                Entry_tacc _tacc = Database.TEntries[i];
                DateTime   td    = _tacc.Date;
                DateTime   date  = Database.select_date;
                if (td.Day == date.Day && td.Month == date.Month && td.Year == date.Year)
                {
                    string type = _tacc.Type;
                    switch (type)
                    {
                    case "Asset":
                        entryGridA.Items.Add(_tacc);
                        Total_assests += _tacc.Balance;
                        break;

                    case "Liability":
                        entryGridLO.Items.Add(_tacc);
                        Total_LOE += _tacc.Balance;
                        break;

                    case "Expense":
                    case "Withdrawal":
                        entryGridLO.Items.Add(_tacc);
                        Total_LOE -= _tacc.Balance;
                        break;

                    case "Revenue":
                    case "Owners Equity":
                        entryGridLO.Items.Add(_tacc);
                        Total_LOE += _tacc.Balance;
                        break;
                    }
                }
            }

            // Add the totals
            entryGridTA.Items.Add(new Total()
            {
                total = Total_assests
            });
            entryGridTLO.Items.Add(new Total()
            {
                total = Total_LOE
            });

            //add balance sheet data into database
            Database.BalanceData.total_assets = Total_assests;
            Database.BalanceData.total_loe    = Total_LOE;
        }
コード例 #6
0
        // method that refreshes the income-statement grid so that it is updated with current entries
        public void Refresh()
        {
            // Clear all grids and textbox
            entryGridE.Items.Clear();
            entryGridR.Items.Clear();
            entryGridTE.Items.Clear();
            entryGridTR.Items.Clear();
            textBox1.Clear();

            double Total_revenue  = 0;
            double Total_expenses = 0;

            //add t-accounts to respective grids
            DateTime from = Database.is_date.from_date;
            DateTime to   = Database.is_date.to_date;

            for (int i = 0; i < Database.TEntries.Count; i++)
            {
                Entry_tacc _tacc = Database.TEntries[i];
                DateTime   td    = _tacc.Date;
                if (td.Day >= from.Day && td.Month >= from.Month && td.Year >= from.Year &&
                    td.Day <= to.Day && td.Month <= to.Month && td.Year <= to.Year)
                {
                    string     type = _tacc.Type;
                    string     name = _tacc.Account;
                    Entry_tacc t    = _tacc.Clone();
                    t.Balance = Math.Abs(_tacc.Balance);

                    //and if account is a revenue account
                    if (type == "Revenue")
                    {
                        entryGridR.Items.Add(t);
                        Total_revenue += t.Balance;
                    }

                    //or if account is an expense account
                    if (type == "Expense")
                    {
                        entryGridE.Items.Add(t);
                        Total_expenses += t.Balance;
                    }
                }
            }

            // Add the totals
            entryGridTR.Items.Add(new Total()
            {
                total = Total_revenue
            });
            entryGridTE.Items.Add(new Total()
            {
                total = Total_expenses
            });
            double ni = (Total_revenue - Total_expenses);

            textBox1.Text       = ni.ToString();
            Database.net_income = ni;

            //get the three variables, add them into a new income-data class object
            Database.IncomeData.total_revenue  = Total_revenue;
            Database.IncomeData.total_expenses = Total_expenses;
            Database.IncomeData.net_income     = ni;
        }