We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e59be7f commit 34f1bdcCopy full SHA for 34f1bdc
Server-Side Components/Business Rules/Currency conversion to USD/currenct_Converstion_to_USD.js
@@ -4,7 +4,7 @@
4
var currencyCode = current.budget_currency ? current.budget_currency.toString().substring(0, 3) : '';
5
6
// Convert the annual budget value to a float
7
- var amount = parseFloat(current.annual_budget);
+ var amount = parseFloat(current.annual_budget);//annual_budget is filed where we can enter amount
8
9
// Validate input: If currency code is missing or amount is not a valid number, clear the USD field and exit
10
if (!currencyCode || isNaN(amount)) {
0 commit comments