New Loan
sel = indx"
>
{{l.title}}
loan.title = name"
@del="del"
@update:borrowerNum="(b) => estimate.borrower.num = b"
@update:borrowerCredit="(c) => estimate.borrower.credit = c"
@update:borrowerIncome="(m) => estimate.borrower.income = Math.round(m*100)"
@update:transaction="(t) => estimate.transaction = t"
@update:occupancy="(t) => estimate.occupancy = t"
@update:price="setPrice"
@update:property="(p) => estimate.property = p"
@update:loanType="changeLoanType"
@update:term="(lt) => loan.term = lt"
@update:program="(p) => loan.program = p"
@update:ltv="setLtv"
@update:amount="setAmount"
@update:housingDti="setHousingDti"
@update:dti="setDti"
@update:hoi="(hoi) => loan.hoi = Math.round(hoi*100)"
@update:interest="(i) => loan.interest = i"
@update:interestDays="(d) => loans[sel].interestDays = d"
@update:hazardEscrow="(h) => loans[sel].hazardEscrow = h"
@update:hazard="(h) => loan.hazard = Math.round(h * 100)"
@update:taxEscrow="(t) => loans[sel].taxEscrow = t"
@update:tax="(t) => loan.tax = Math.round(t*100)"
@update:manualMI="perc => loan.mi.rate = perc"
@toggle:manualMIMonthly=
"() => loans[sel].mi.monthly = !loans[sel].mi.monthly"
@continue="generate"
/>