fix in get_currency -- using :Company
diff --git a/public/js/utils.js b/public/js/utils.js
index 06d3a53..0f78705 100644
--- a/public/js/utils.js
+++ b/public/js/utils.js
@@ -20,7 +20,7 @@
 	if(!company && cur_frm)
 		company = cur_frm.doc.company;
 	if(company)
-		return wn.boot.company[company].default_currency || wn.boot.sysdefaults.currency;
+		return wn.model.get(":Company", company).default_currency || wn.boot.sysdefaults.currency;
 	else
 		return wn.boot.sysdefaults.currency;
 }