Created
December 1, 2009 23:38
-
-
Save lsiden/246755 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sc_require('models/ledger_entry'); | |
EccapCalc.LedgerEntry.FIXTURES = [{ | |
guid: '1,', | |
description: '401K', | |
amount: '150000', | |
ledger: 'assets', | |
}, { | |
guid: '2,', | |
description: 'Home', | |
amount: '400000', | |
ledger: 'assets', | |
}, { | |
guid: '3,', | |
description: 'Pension', | |
amount: '1500', | |
ledger: 'income', | |
}, { | |
guid: '4,', | |
description: 'Social Security', | |
amount: '1200', | |
ledger: 'income', | |
}, { | |
guid: '5,', | |
description: 'Home Insurance', | |
amount: '2000', | |
ledger: 'expenses', | |
}, { | |
guid: '6,', | |
description: 'Property Taxes', | |
amount: '750', | |
ledger: 'expenses', | |
}, { | |
guid: '7,', | |
description: 'Medical Insurance', | |
amount: '800', | |
ledger: 'expenses', | |
}, { | |
guid: '8,', | |
description: 'Initial Deposit', | |
amount: '5000', | |
ledger: 'facility-1-initial', | |
}, { | |
guid: '9,', | |
description: 'Rent', | |
amount: '2000', | |
ledger: 'facility-1-monthly', | |
}, { | |
guid: '10,', | |
description: 'Meals', | |
amount: '1500', | |
ledger: 'facility-1-monthly', | |
}, | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment