Fixed some typos.

Please enter the commit message for your changes. Lines starting

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20035 57a11ea4-9604-0410-9ed3-97b8803252fd
pull/1/head
Mike Evans 16 years ago
parent c33270221d
commit 0e8cef246e

@ -29,7 +29,7 @@ We need to remove first line and totals
Format needs to be:
#id,date_opened,vendor_id,billing_id,notes,date,desc,action,account,quantity,price,disc_type,disc_how,discount,taxable,taxincluded,tax_table,date_posted,due_date,account_posted,memo_posted,accu_splits,
Not all fields need to have values but the delimiters (,) do.
Not all fields need to have values but the delimiters (,) do have to be present.
Some fields are compulsory: id, vendor_id, action, quantity, price, taxable
'''
import sys
@ -40,13 +40,13 @@ try:
INFILE=sys.argv[1]
except:
print "No input files specified."
print "Useage: Useage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\""
print "Usage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\""
quit(1)
try:
INV_ID=sys.argv[2]
except:
print "No order number specified."
print "Useage: Useage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\""
print "Useage: rapid2gnucash.py DOWNLOADED_BASKET.csv \"ORDER_NUMBER\""
quit(1)
try:
ACCOUNT=sys.argv[3]

Loading…
Cancel
Save