3 gnucash_simple.py -- A helper file to convert Gnucash objects into 4 dictionaries for easier conversion to JSON 6 Copyright (C) 2013 Tom Lofts <dev@loftx.co.uk> 8 This program is free software; you can redistribute it and/or 9 modify it under the terms of the GNU General Public License as 10 published by the Free Software Foundation; either version 2 of 11 the License, or (at your option) any later version. 13 This program is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 GNU General Public License for more details. 18 You should have received a copy of the GNU General Public License 19 along with this program; if not, contact: 21 Free Software Foundation Voice: +1-617-542-5942 22 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 23 Boston, MA 02110-1301, USA gnu@gnu.org 25 @author Tom Lofts <dev@loftx.co.uk> 30 from gnucash.gnucash_business
import Entry, Split, Account
32 def addressToDict(address):
37 simple_address[
'name'] = address.GetName()
38 simple_address[
'line_1'] = address.GetAddr1()
39 simple_address[
'line_2'] = address.GetAddr2()
40 simple_address[
'line_3'] = address.GetAddr3()
41 simple_address[
'line_4'] = address.GetAddr4()
42 simple_address[
'phone'] = address.GetPhone()
43 simple_address[
'fax'] = address.GetFax()
44 simple_address[
'email'] = address.GetEmail()
48 def vendorToDict(vendor):
54 simple_vendor[
'name'] = vendor.GetName()
55 simple_vendor[
'id'] = vendor.GetID()
56 simple_vendor[
'guid'] = vendor.GetGUID().to_string()
57 simple_vendor[
'notes'] = vendor.GetNotes()
58 simple_vendor[
'active'] = vendor.GetActive()
59 simple_vendor[
'currency'] = vendor.GetCurrency().get_mnemonic()
61 simple_vendor[
'address'] = addressToDict(vendor.GetAddr())
62 simple_vendor[
'tax_included'] = vendor.GetTaxIncluded()
66 def customerToDict(customer):
72 simple_customer[
'name'] = customer.GetName()
73 simple_customer[
'id'] = customer.GetID()
74 simple_customer[
'guid'] = customer.GetGUID().to_string()
75 simple_customer[
'notes'] = customer.GetNotes()
76 simple_customer[
'active'] = customer.GetActive()
77 simple_customer[
'discount'] = customer.GetDiscount().to_double()
78 simple_customer[
'credit'] = customer.GetCredit().to_double()
79 simple_customer[
'currency'] = customer.GetCurrency().get_mnemonic()
81 simple_customer[
'address'] = addressToDict(customer.GetAddr())
82 simple_customer[
'shipping_address'] = addressToDict(
83 customer.GetShipAddr())
84 simple_customer[
'tax_included'] = customer.GetTaxIncluded()
86 return simple_customer
88 def transactionToDict(transaction, entities):
89 if transaction
is None:
92 simple_transaction = {}
93 simple_transaction[
'guid'] = transaction.GetGUID().to_string()
94 simple_transaction[
'num'] = transaction.GetNum()
95 simple_transaction[
'notes'] = transaction.GetNotes()
96 simple_transaction[
'is_closing_txn'] = transaction.GetIsClosingTxn()
98 if 'splits' in entities:
99 simple_transaction[
'splits'] = []
100 for split
in transaction.GetSplitList():
101 if type(split) != Split:
102 split=Split(instance=split)
103 simple_transaction[
'splits'].append(
104 splitToDict(split, [
'account']))
106 simple_transaction[
'count_splits'] = transaction.CountSplits()
107 simple_transaction[
'has_reconciled_splits'] = \
108 transaction.HasReconciledSplits()
109 simple_transaction[
'currency'] = transaction.GetCurrency(
111 simple_transaction[
'imbalance_value'] = transaction.GetImbalanceValue(
113 simple_transaction[
'is_balanced'] = transaction.IsBalanced()
114 simple_transaction[
'date'] = transaction.GetDate().strftime(
'%Y-%m-%d')
115 simple_transaction[
'date_posted'] = transaction.RetDatePosted(
116 ).strftime(
'%Y-%m-%d')
117 simple_transaction[
'date_entered'] = transaction.RetDateEntered(
118 ).strftime(
'%Y-%m-%d')
119 simple_transaction[
'date_due'] = transaction.RetDateDue().strftime(
121 simple_transaction[
'void_status'] = transaction.GetVoidStatus()
122 simple_transaction[
'void_time'] = transaction.GetVoidTime().strftime(
125 simple_transaction[
'description'] = transaction.GetDescription()
127 return simple_transaction
129 def splitToDict(split, entities):
134 simple_split[
'guid'] = split.GetGUID().to_string()
135 if 'account' in entities:
136 simple_split[
'account'] = accountToDict(split.GetAccount())
137 if 'transaction' in entities:
138 simple_split[
'transaction'] = transactionToDict(
139 split.GetParent(), [])
140 if 'other_split' in entities:
141 simple_split[
'other_split'] = splitToDict(
142 split.GetOtherSplit(), [
'account'])
143 simple_split[
'amount'] = split.GetAmount().to_double()
144 simple_split[
'value'] = split.GetValue().to_double()
145 simple_split[
'balance'] = split.GetBalance().to_double()
146 simple_split[
'cleared_balance'] = split.GetClearedBalance().to_double()
147 simple_split[
'reconciled_balance'] = split.GetReconciledBalance(
151 def invoiceToDict(invoice):
157 simple_invoice[
'id'] = invoice.GetID()
158 simple_invoice[
'type'] = invoice.GetType()
159 simple_invoice[
'date_opened'] = invoice.GetDateOpened().strftime(
161 if invoice.GetDatePosted().strftime(
'%Y-%m-%d') ==
'1970-01-01':
162 simple_invoice[
'date_posted'] =
None 164 simple_invoice[
'date_posted'] = invoice.GetDatePosted().strftime(
166 if not invoice.GetDateDue()
or invoice.GetDateDue().strftime(
'%Y-%m-%d') ==
'1970-01-01':
167 simple_invoice[
'date_due'] =
None 169 simple_invoice[
'date_due'] = invoice.GetDateDue().strftime(
171 simple_invoice[
'notes'] = invoice.GetNotes()
172 simple_invoice[
'active'] = invoice.GetActive()
173 simple_invoice[
'currency'] = invoice.GetCurrency().get_mnemonic()
174 owner = invoice.GetOwner()
175 if type(owner) == gnucash.gnucash_business.Job:
176 owner = owner.GetOwner()
177 simple_invoice[
'owner'] = vendorToDict(owner)
178 simple_invoice[
'owner_type'] = invoice.GetOwnerType()
179 simple_invoice[
'billing_id'] = invoice.GetBillingID()
180 simple_invoice[
'to_charge_amount'] = invoice.GetToChargeAmount().to_double()
181 simple_invoice[
'posted_txn'] = transactionToDict(invoice.GetPostedTxn(), [])
182 simple_invoice[
'total'] = invoice.GetTotal().to_double()
183 simple_invoice[
'total_subtotal'] = invoice.GetTotalSubtotal(
185 simple_invoice[
'total_tax'] = invoice.GetTotalTax().to_double()
187 simple_invoice[
'entries'] = []
188 for n, entry
in enumerate(invoice.GetEntries()):
189 if type(entry) != Entry:
190 entry=Entry(instance=entry)
191 simple_invoice[
'entries'].append(entryToDict(entry))
193 simple_invoice[
'posted'] = invoice.IsPosted()
194 simple_invoice[
'paid'] = invoice.IsPaid()
196 return simple_invoice
198 def billToDict(bill):
204 simple_bill[
'id'] = bill.GetID()
205 simple_bill[
'type'] = bill.GetType()
206 simple_bill[
'date_opened'] = bill.GetDateOpened().strftime(
'%Y-%m-%d')
207 if bill.GetDatePosted().strftime(
'%Y-%m-%d') ==
'1970-01-01':
208 simple_bill[
'date_posted'] =
None 210 simple_bill[
'date_posted'] = bill.GetDatePosted().strftime(
212 if bill.GetDateDue().strftime(
'%Y-%m-%d') ==
'1970-01-01':
213 simple_bill[
'date_due'] =
None 215 simple_bill[
'date_due'] = bill.GetDateDue().strftime(
'%Y-%m-%d')
216 simple_bill[
'notes'] = bill.GetNotes()
217 simple_bill[
'active'] = bill.GetActive()
218 simple_bill[
'currency'] = bill.GetCurrency().get_mnemonic()
219 simple_bill[
'owner'] = vendorToDict(bill.GetOwner())
220 simple_bill[
'owner_type'] = bill.GetOwnerType()
221 simple_bill[
'billing_id'] = bill.GetBillingID()
222 simple_bill[
'to_charge_amount'] = bill.GetToChargeAmount().to_double()
223 simple_bill[
'total'] = bill.GetTotal().to_double()
224 simple_bill[
'total_subtotal'] = bill.GetTotalSubtotal().to_double()
225 simple_bill[
'total_tax'] = bill.GetTotalTax().to_double()
227 simple_bill[
'entries'] = []
228 for n, entry
in enumerate(bill.GetEntries()):
229 if type(entry) != Entry:
230 entry=Entry(instance=entry)
231 simple_bill[
'entries'].append(entryToDict(entry))
233 simple_bill[
'posted'] = bill.IsPosted()
234 simple_bill[
'paid'] = bill.IsPaid()
238 def entryToDict(entry):
245 simple_entry[
'guid'] = entry.GetGUID().to_string()
246 simple_entry[
'date'] = entry.GetDate().strftime(
'%Y-%m-%d')
247 simple_entry[
'date_entered'] = entry.GetDateEntered().strftime(
249 simple_entry[
'description'] = entry.GetDescription()
250 simple_entry[
'action'] = entry.GetAction()
251 simple_entry[
'notes'] = entry.GetNotes()
252 simple_entry[
'quantity'] = entry.GetQuantity().to_double()
253 if entry.GetInvAccount() ==
None:
254 simple_entry[
'inv_account'] = {}
256 simple_entry[
'inv_account'] = accountToDict(entry.GetInvAccount())
257 simple_entry[
'inv_price'] = entry.GetInvPrice().to_double()
258 simple_entry[
'discount'] = entry.GetInvDiscount().to_double()
259 simple_entry[
'discounted_type'] = entry.GetInvDiscountType()
260 simple_entry[
'discounted_how'] = entry.GetInvDiscountHow()
261 simple_entry[
'inv_taxable'] = entry.GetInvTaxable()
262 simple_entry[
'inv_tax_included'] = entry.GetInvTaxIncluded()
264 if entry.GetBillAccount() ==
None:
265 simple_entry[
'bill_account'] = {}
267 simple_entry[
'bill_account'] = accountToDict(
268 entry.GetBillAccount())
269 simple_entry[
'bill_price'] = entry.GetBillPrice().to_double()
270 simple_entry[
'bill_taxable'] = entry.GetBillTaxable()
271 simple_entry[
'bill_tax_included'] = entry.GetBillTaxIncluded()
272 simple_entry[
'bill_tax_table'] = entry.GetBillTaxTable()
273 simple_entry[
'billable'] = entry.GetBillable()
274 simple_entry[
'bill_payment'] = entry.GetBillPayment()
275 simple_entry[
'is_open'] = entry.IsOpen()
280 def accountToDict(account):
282 commod_table = account.get_book().get_table()
283 gbp = commod_table.lookup(
'CURRENCY',
'GBP')
289 simple_account[
'name'] = account.GetName()
290 simple_account[
'type_id'] = account.GetType()
291 simple_account[
'description'] = account.GetDescription()
292 simple_account[
'guid'] = account.GetGUID().to_string()
293 if account.GetCommodity() ==
None:
294 simple_account[
'currency'] =
'' 296 simple_account[
'currency'] = account.GetCommodity().get_mnemonic()
297 simple_account[
'subaccounts'] = []
298 for n, subaccount
in enumerate(account.get_children_sorted()):
299 simple_account[
'subaccounts'].append(accountToDict(subaccount))
301 simple_account[
'balance'] = account.GetBalance().to_double()
302 simple_account[
'balance_gbp'] = account.GetBalanceInCurrency(
303 gbp,
True).to_double()
304 simple_account[
'placeholder'] = account.GetPlaceholder()
306 return simple_account