From c02d5ee2afddcc7fac6312b3743e7fd71b59efe6 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 25 Feb 2020 11:54:45 +0100 Subject: [PATCH] Bug 17016: Clear with 0.00 instead of blank Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt index e983ddf0ba..e9b31e4a6f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt @@ -313,7 +313,7 @@ $(edit_row).find("input").each(function(){ var type = $(this).attr("type"); if (type != "button" && type != "submit" ) { - $(this).val(""); + $(this).val("0.00"); $(this).prop('disabled', false); } }); -- 2.11.0