From 1f4cf8a43c3bdf6efe5c2fad742d51a09e3273a7 Mon Sep 17 00:00:00 2001 From: Rupika Date: Thu, 14 Feb 2019 19:28:21 -0800 Subject: [PATCH] changed per diem trip duration to integer from decimal --- back/backend/policy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/backend/policy.py b/back/backend/policy.py index 7af3281..1628b57 100644 --- a/back/backend/policy.py +++ b/back/backend/policy.py @@ -128,7 +128,7 @@ per_diem_section = Section( html_description="

Enter info about meals and incidentals here.\nPer diem rates can be found at " "this link

", fields={ - "duration": {"label": "How many days was your trip?", "field_type": "decimal"}, + "duration": {"label": "How many days was your trip?", "field_type": "integer"}, "rate": {"label": "What is the per diem rate for your destination?", "field_type": "decimal"}, "cost": {"label": "Total Cost for meals and incidentals", "field_type": "decimal"} }