Immanuel Onyeka
ba9522a883
Generate PDF with os/exec process instead of js
the htmltopdf.js library renders all PDF text as images instead of
vectors, and Go does not have a reliable native library for generating
PDFs that is actively maintained. The best solution appears to be to
make a system call to wkhtmltopdf, but now there is a hidden package
dependency that is not checked at build time and exists in another
process. Maybe in the future a C library can be used and linked with the
Go binary.
před 1 rokem
Immanuel Onyeka
e77294f777
Save changed user address in database
před 1 rokem
Immanuel Onyeka
1d7163f5ae
Render and select address from dropdown
před 1 rokem
Immanuel Onyeka
e9547b9df8
Use environment variables instead of config file
Using a config file is not necessary and may be confusing.
Also add address and phone number of User and Branch structs.
před 1 rokem
Immanuel Onyeka
b3599fbe0e
Add password reset endpoint
před 1 rokem
Immanuel Onyeka
5111bd51dd
Move code to update user profile from endpoint
Since request.Body can only be read once, calling patchUser from
patchSelf always returned an error. request.Body needed to be either be
saved in a variable and reset or have a new function created.
před 1 rokem
Immanuel Onyeka
7055f5d6c7
Resize selected letterhead to good dimensions
Uses gift package for server side resizing of selected letterhead
file. It should fit an image file with aspect ratio of 2:1 and be a
reasonable size. A 400x200 resizeToFit is used for now.
gift just uses the native image/draw package internally.
https://pkg.go.dev/image/draw
před 1 rokem
Immanuel Onyeka
6e5cf4b5cd
Fetch and upload letterhead from settings view
před 1 rokem
Immanuel Onyeka
7fa03cc393
Add user letterhead endpoints
před 1 rokem
Immanuel Onyeka
8c5c94da5d
Make GET and POST requests to user avatar endpoints
před 1 rokem
Immanuel Onyeka
290746a438
Dislay PDF mockup as test page
před 1 rokem
Immanuel Onyeka
da111e4c06
Add deleteFeeTemp endpoint to delete fees
před 1 rokem
Immanuel Onyeka
366647310f
Fix error caused by negative percentages in fees
před 1 rokem
Immanuel Onyeka
daaff1c318
Add endpoint to create a new fee
před 1 rokem
Immanuel Onyeka
26850a0e73
Also retrieve loan type and borrower in getEstimate
před 1 rokem
Immanuel Onyeka
a2b2ca2ca2
Fix estimate_results SQL error
před 1 rokem
Immanuel Onyeka
ae5247bc71
Add insert and select SQL queries for Results
před 1 rokem
Immanuel Onyeka
5368bc6227
Calculate estimate result values with []Loans loop
před 1 rokem
Immanuel Onyeka
c7158bd863
Insert MI and fees with insert functions
před 1 rokem
Immanuel Onyeka
6d98b7b47a
Calculate estimate summary values in backend
před 1 rokem
Immanuel Onyeka
b3cf840f88
Loop over indices to avoid copying values
před 1 rokem
Immanuel Onyeka
26cd32c82a
Ensure new estimates have correct user IDs
před 1 rokem
Immanuel Onyeka
3a5477760d
Fetch user's estimates list from estimates.vue
před 1 rokem
Immanuel Onyeka
af5c204eb6
Save estimates to database from summary view
před 1 rokem
Immanuel Onyeka
bbb7bf5f1e
Add mandatory FHA MIP as a fee
před 1 rokem
Immanuel Onyeka
2e51164a32
Check vA and USDA loan types
před 1 rokem
Immanuel Onyeka
e9968ae63b
Represent money as int and percentages as float32
před 1 rokem
Immanuel Onyeka
562c485b2d
Fix loan.type.id conversion error
před 1 rokem
Immanuel Onyeka
e4f1ec3ab6
Fix type parsing errors for borrower and loan fields
před 1 rokem
Immanuel Onyeka
0c18bfdab8
Move form validation to golang backend
před 1 rokem
Immanuel Onyeka
1d7e34c0f1
Add fields and events for manual MI
před 1 rokem
Immanuel Onyeka
0d7428b276
Move loan details into seperate component
Estimate creation process will be more clear if the details entered by
the user is in a seperate page from the summary information shown before
PDF generation. It will also help keep the app looking minimal.
před 1 rokem
Immanuel Onyeka
84d6807b94
Create sample custom MI field
před 1 rokem
Immanuel Onyeka
090ab9f565
Validate loan fields
před 1 rokem
Immanuel Onyeka
9c7ac0a199
Login user through view
před 1 rokem
Immanuel Onyeka
9b9d0a54fb
Fix errors and rename migration setup file
před 1 rokem
Immanuel Onyeka
ee2358d259
Add API routing and login functions
před 1 rokem
Immanuel Onyeka
9c31707dd2
Create and pull model for mortgage insurance
před 2 roky
Immanuel Onyeka
25079d7f33
Fetch NationalMI rates with Loan type
před 2 roky
Immanuel Onyeka
52f3a9a7b7
Fix SQL field errors
před 2 roky
Immanuel Onyeka
ae79dbacdd
Fix loan query and its errors
před 2 roky
Immanuel Onyeka
6887e1f824
Seperate loans from estimates in models
před 2 roky
Immanuel Onyeka
6aab5796b5
Query estimates and insert in models
před 2 roky
Immanuel Onyeka
a301645472
Convert json names to lower case
před 2 roky
Immanuel Onyeka
bbffedf09d
Specify branch and user id in queries
před 2 roky
Immanuel Onyeka
ac5a9ec31a
Use zero vector for missing values instead of null
Null makes missing values harder to convert to json using the Scan
operation. 0 and '' will be used instead to be type consistent.
před 2 roky
Immanuel Onyeka
0b0a3d24f6
Query loan types
před 2 roky
Immanuel Onyeka
50f6682961
Pull first SQL query into a struct
Setup structs for storing query information.
před 2 roky
Immanuel Onyeka
751e798395
Setup Vue
před 2 roky
Immanuel Onyeka
b968240621
Setup HTML template files
před 2 roky