Merge remote-tracking branch 'origin/hotfix/total-round' into develop

This commit is contained in:
Sebastian Rindom
2021-02-27 11:25:12 +01:00
2 changed files with 2 additions and 5 deletions

View File

@@ -377,7 +377,7 @@ describe("TotalsService", () => {
},
])
expect(res).toEqual(1243.75)
expect(res).toEqual(1244)
})
it("calculates refund with item fixed discount", async () => {

View File

@@ -328,10 +328,7 @@ class TotalsService extends BaseService {
}
rounded(value) {
const decimalPlaces = 4
return Number(
Math.round(parseFloat(value + "e" + decimalPlaces)) + "e-" + decimalPlaces
)
return Math.round(value)
}
}