test with non-rounded values for diy-frame prices

This commit is contained in:
Martin
2016-11-08 14:47:32 +01:00
parent 1f75cb9cc5
commit 4affc08eae
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -86,8 +86,8 @@ def diy_frame():
data = [{
'width': width,
'height': height,
'price': old_canvas_diy_frame_price(width, height, market, reseller=reseller),
'price_excl_vat': old_canvas_diy_frame_price(width, height, market, reseller=reseller, inc_vat=False)
'price': old_canvas_diy_frame_price(width, height, market, reseller=reseller, rounded=False),
'price_excl_vat': old_canvas_diy_frame_price(width, height, market, reseller=reseller, rounded=False, inc_vat=False)
}]
return jsonify(data=data)