From 7a656ee4095619ea4e21bb61e7e0cefb946e9f3b Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 28 Aug 2014 12:39:44 +0200 Subject: [PATCH] [PASSED QA] Bug 12840: The budgeted cost and the total are automatically calculated Both of these 2 values should not be modified by the user. Since these values depend on the discount and the quantity. Test plan: Verify you cannot modify the budgeted cost and the total price on creating/modifying an order. Signed-off-by: Paola Rossi Signed-off-by: Kyle M Hall --- .../prog/en/modules/acqui/neworderempty.tt | 18 ++++-------------- 1 files changed, 4 insertions(+), 14 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt index 64ad028..614cde9 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt @@ -536,22 +536,12 @@ $(document).ready(function() [% END %]
  • - [% IF ( close ) %] - - [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %] - [% ELSE %] - - [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %] - [% END %] + + [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
  • - [% IF ( close ) %] - - - [% ELSE %] - - (budgeted cost * quantity) - [% END %] + + (budgeted cost * quantity)
  • [% IF ( close ) %] -- 1.7.2.5