From 528dc0de7af2a3b77e7fb3314afb4cfb027db0d9 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 5 Apr 2016 09:13:05 +0100 Subject: [PATCH] Bug 16055: Do not allow basketgroup deletion unless empty If a basketgroup has basket attached, it should not be deletable. This patch just removes the Delete button from the interface if it cannot be deleted. When editing a basketgroup, the "Delete basket group" button is no longer displayed. Test plan: 1/ Create a basketgroup 2/ Attach 1+ baskets to this basketgroup 3/ Confirm you are not able to delete it 4/ Remove the baskets from this basketgroup 5/ Confirm you are able to delete it --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt index e2dac37..4834ccb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt @@ -146,8 +146,6 @@ function submitForm(form) {
Print this basket group in PDF
Generate edifact order
- [% ELSE %] -
Delete basket group
[% END %] [% IF (name && closedbg) %]

Basket group [% name %] ([% basketgroupid %]) for [% booksellername |html %]

@@ -341,7 +339,9 @@ function submitForm(form) {
-
+ [% UNLESS basketgroup.basketsqty %] +
+ [% END %] [% END %] -- 2.7.0