Merge pull request #591 from SchrodingersGat/bug-fixes

normalize decimal fields
This commit is contained in:
Oliver 2019-12-06 22:43:32 +11:00 committed by GitHub
commit 0ef033f800
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -282,7 +282,6 @@ function loadBomTable(table, options) {
},
formatNoMatches: function() { return "No BOM items found"; },
clickToSelect: true,
showFooter: true,
queryParams: function(p) {
return params;
},

View File

@ -1230,6 +1230,10 @@ class BomItem(models.Model):
pmin, pmax = prange
# remove trailing zeros
pmin = pmin.normalize()
pmax = pmax.normalize()
if pmin == pmax:
return str(pmin)