Commit 495dba11 authored by Ahmad Nemati's avatar Ahmad Nemati

init

parent ce7d1799
...@@ -110,7 +110,7 @@ function runCurrency(data, user) { ...@@ -110,7 +110,7 @@ function runCurrency(data, user) {
user.can_balance = user.can_balance + (-1 * parseFloat(data.count)) user.can_balance = user.can_balance + (-1 * parseFloat(data.count))
break break
case 'pon': case 'pon':
user.can_balance = user.pon_balance + (-1 * parseFloat(data.count)) user.pon_balance = user.pon_balance + (-1 * parseFloat(data.count))
break break
...@@ -143,7 +143,7 @@ function runCurrency(data, user) { ...@@ -143,7 +143,7 @@ function runCurrency(data, user) {
user.can_balance = user.can_balance + (parseFloat(data.count)) user.can_balance = user.can_balance + (parseFloat(data.count))
break break
case 'pon': case 'pon':
user.can_balance = user.pon_balance + (parseFloat(data.count)) user.pon_balance = user.pon_balance + (parseFloat(data.count))
break break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment