This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fix: format currency value as float while grid upload
(cherry picked from commit
95f23b3adb
)
version-14
Shariq Ansari
2 years ago
committed by
Mergify
parent
23caa1f93b
commit
5eb803ca95
1 changed files
with
1 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
frappe/public/js/frappe/form/grid.js
+ 1
- 0
frappe/public/js/frappe/form/grid.js
View File
@@ -1011,6 +1011,7 @@ export default class Grid {
Int: (val) => cint(val),
Check: (val) => cint(val),
Float: (val) => flt(val),
Currency: (val) => flt(val),
};
// upload
Write
Preview
Loading…
Cancel
Save