Skip to content

Commit

Permalink
fix(basic): Fix default bot.vbs missing parenthesis in code.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Aug 30, 2019
1 parent 08f56b3 commit 8501002
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/default.gbdialog/bot.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ else

' TODO: This must be reviewed in terms of financing logic.

nInstallments = parseIntinstallments
vAmmount = parseFloatammount
initialPayment = parseFloatvAmmount * 0.3 ' 30% of the value
nInstallments = parseInt(installments)
vAmmount = parseFloat(ammount)
initialPayment = vAmmount * 0.3 ' 30% of the value
tac = 800
adjustment = 1.3

Expand Down

0 comments on commit 8501002

Please sign in to comment.