Updated the payment history for April statements.

This commit is contained in:
JohnKent
2019-04-03 14:06:02 -04:00
parent 42232903c5
commit 8cb4be3248
5 changed files with 12 additions and 8 deletions

View File

@@ -40,7 +40,8 @@
["2018-11-29", "589.00"], ["2018-11-29", "589.00"],
["2018-12-31", "589.00"], ["2018-12-31", "589.00"],
["2019-01-15", "0.00"], ["2019-01-15", "0.00"],
["2019-02-13", "589.00"] ["2019-02-13", "589.00"],
["2019-03-15", "0"]
], ],
"borrower": { "borrower": {
"name": "Bear Houses, LLC", "name": "Bear Houses, LLC",

View File

@@ -53,6 +53,7 @@
["2018-12-01", "278.15"], ["2018-12-01", "278.15"],
["2019-01-01", "278.15"], ["2019-01-01", "278.15"],
["2019-02-01", "278.15"], ["2019-02-01", "278.15"],
["2019-03-01", "278.15"] ["2019-03-01", "278.15"],
["2019-04-01", "278.15"]
] ]
} }

View File

@@ -53,6 +53,7 @@
["2018-12-01", "278.15"], ["2018-12-01", "278.15"],
["2019-01-01", "278.15"], ["2019-01-01", "278.15"],
["2019-02-01", "278.15"], ["2019-02-01", "278.15"],
["2019-03-01", "278.15"] ["2019-03-01", "278.15"],
["2019-04-01", "278.15"]
] ]
} }

View File

@@ -41,7 +41,8 @@
["2018-11-13", "803.00"], ["2018-11-13", "803.00"],
["2018-12-13", "803.00"], ["2018-12-13", "803.00"],
["2019-01-14", "803.00"], ["2019-01-14", "803.00"],
["2019-02-05", "803.00"] ["2019-02-05", "803.00"],
["2019-03-05", "803.00"]
], ],
"borrower": { "borrower": {
"name": "Bear Houses, LLC", "name": "Bear Houses, LLC",

View File

@@ -279,6 +279,7 @@ def selectTemplate(loan):
return template return template
def main(): def main():
test_flag = True
# this program reads the json file describing a mortgage and calculate the actual and projected amortization # this program reads the json file describing a mortgage and calculate the actual and projected amortization
# the first payment in the file should be the interest paid at closing # the first payment in the file should be the interest paid at closing
# the interest at closing covers interest that would be incurred from the date of closing until the first day # the interest at closing covers interest that would be incurred from the date of closing until the first day
@@ -287,14 +288,13 @@ def main():
# at closing. The first payment will incur interest from one month before the bill is due. # at closing. The first payment will incur interest from one month before the bill is due.
# read in the file # read in the file
test_flag = True test_flag = False
#test_flag = False
test_address = 'jkent3rd@yahoo.com' test_address = 'jkent3rd@yahoo.com'
filename = "./testloan.json" #filename = "./testloan.json"
#filename = "./10Kloan.json" #filename = "./10Kloan.json"
#filename = "./dadmortgage.json" #filename = "./dadmortgage.json"
#filename = "./brendamortgage.json" filename = "./brendamortgage.json"
#filename = "./greenfield_mortgage.json" #filename = "./greenfield_mortgage.json"
template_filename = "statement.pdf.jinja" template_filename = "statement.pdf.jinja"