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
commit
5eb803ca95
1 changed files with 1 additions and 0 deletions
  1. +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


Loading…
Cancel
Save