From 4a3f78896f9c65eaca406a295d29f2a5b051c9f3 Mon Sep 17 00:00:00 2001 From: Christophe Croullebois Date: Tue, 24 Aug 2010 11:54:41 +0200 Subject: [PATCH] [SIGNED-OFF] Bug 5949 : Popup alert when deleting items from basket, also change planning value to statistics Content-Type: text/plain; charset="utf-8" (MT #2391) : acqui/neworderempty.pl Multiple fixes in neworderempty.pl, mainly about Modify order line page, link to edit catalog, user can delete items with popup information and can't add items also with popup explanation. Signed-off-by: Katrin Fischer - changed the the link from 'Edit Catalog' to 'Edit record' (like on result list) - changed position of 'Edit record' to be shown behind the label 'Catalog details' instead of showing behind the Title. --- .../prog/en/modules/acqui/neworderempty.tmpl | 38 ++++++++++++++++---- 1 files changed, 31 insertions(+), 7 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl index 76f5a3f..9c16a71 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tmpl @@ -63,8 +63,29 @@ if (ok) { ff.submit(); } - - +$(document).ready(function() + { + //We apply the fonction only for modify option + + $('#quantity').blur(function() + { + // if user decreases the quantity + if($(this).val() < ) + { + alert("You have deleted item(s) in the order, don't forget to delete it(them) in the catalog"); + return true; + } + else + { + // if user increases the quantity + alert("You can't add a new item, please create a new order line"); + // and we replace the original value + $(this).val() + return false; + } + }); + + }); //]]> @@ -83,7 +104,7 @@ ff.submit();

- Modify order details (line #) + Modify order line New order @@ -132,7 +153,10 @@ ff.submit();
- Catalog details + + Catalog details + "> Edit record + @@ -361,10 +385,10 @@ ff.submit();
  • - +
  • The 2 following fields are available for your own usage. They can be useful for statistical purposes
    - + @@ -374,7 +398,7 @@ ff.submit();
  • - + -- 1.7.1