Bugzilla – Attachment 171208 Details for
Bug 37115
Add the option to delete linked serials when deleting items
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37115: Delete linked serial when deleting a single item
Bug-37115-Delete-linked-serial-when-deleting-a-sin.patch (text/plain), 9.42 KB, created by
Matt Blenkinsop
on 2024-09-09 15:39:19 UTC
(
hide
)
Description:
Bug 37115: Delete linked serial when deleting a single item
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2024-09-09 15:39:19 UTC
Size:
9.42 KB
patch
obsolete
>From fba4a9709b455ef3d214186df0e3f8f41efe6f0b Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Fri, 31 May 2024 16:31:24 +0000 >Subject: [PATCH] Bug 37115: Delete linked serial when deleting a single item > >Test plan: >- Add a new subscription to a serial notice (with the option 'create an item record' selected) >- Receive one issue and create the linked item >- Return to the bibliographic record >- Edit item - Action - Delete >- Tick the box 'delete serial issues linked to item' and confirm >- The item should still be deleted correctly >- Back to subscription : the issue linked to the item doesn't exist any more >--- > Koha/Item.pm | 15 +++++-- > Koha/Template/Plugin/Item.pm | 43 +++++++++++++++++++ > cataloguing/additem.pl | 3 +- > .../modals/delete_item_confirmation.inc | 30 +++++++++++++ > .../prog/en/modules/cataloguing/additem.tt | 5 ++- > .../prog/js/cataloging_additem.js | 23 ++++++++-- > 6 files changed, 111 insertions(+), 8 deletions(-) > create mode 100644 Koha/Template/Plugin/Item.pm > create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/modals/delete_item_confirmation.inc > >diff --git a/Koha/Item.pm b/Koha/Item.pm >index 05d65d1da3d..fb41b2e98f9 100644 >--- a/Koha/Item.pm >+++ b/Koha/Item.pm >@@ -259,14 +259,23 @@ sub delete { > my $self = shift; > my $params = @_ ? shift : {}; > >- # FIXME check the item has no current issues >- # i.e. raise the appropriate exception >- > # Get the item group so we can delete it later if it has no items left > my $item_group = C4::Context->preference('EnableItemGroups') ? $self->item_group : undef; > >+ my $serial_item = $self->serial_item; >+ > my $result = $self->SUPER::delete; > >+ # Delete the serial linked to the item if required >+ if ( $result && $params->{delete_serial_issues} ) { >+ if ($serial_item) { >+ my $serial = Koha::Serials->find( $serial_item->serialid ); >+ # The serial_item is deleted by cascade when the item is deleted >+ # so we don't need to delete it here >+ $serial->delete; >+ } >+ } >+ > # Delete the item group if it has no items left > $item_group->delete if ( $item_group && $item_group->items->count == 0 ); > >diff --git a/Koha/Template/Plugin/Item.pm b/Koha/Template/Plugin/Item.pm >new file mode 100644 >index 00000000000..784a95c5160 >--- /dev/null >+++ b/Koha/Template/Plugin/Item.pm >@@ -0,0 +1,43 @@ >+package Koha::Template::Plugin::Item; >+ >+# Copyright PTFS EUROPE 2024 >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Template::Plugin; >+use base qw( Template::Plugin ); >+ >+use Koha::Items; >+ >+=head1 METHODS >+ >+=head2 HasSerialItem >+ >+Checks whether a particular item has an associated serial item >+ >+=cut >+ >+sub HasSerialItem { >+ my ( $self, $itemnumber ) = @_; >+ >+ my $serial_item = Koha::Items->find($itemnumber)->serial_item; >+ >+ return $serial_item ? 1 : 0; >+} >+ >+1; >diff --git a/cataloguing/additem.pl b/cataloguing/additem.pl >index 3d361ec1e63..84a0bfc0dc0 100755 >--- a/cataloguing/additem.pl >+++ b/cataloguing/additem.pl >@@ -532,7 +532,8 @@ if ( $op eq "cud-additem" ) { > my $item = Koha::Items->find($itemnumber); > my $deleted; > if ($item) { >- $deleted = $item->safe_delete; >+ my $delete_serial_issues = $input->param('delete-serial-issues'); >+ $deleted = $item->safe_delete( { delete_serial_issues => $delete_serial_issues } ); > } else { > $deleted = Koha::Result::Boolean->new(0)->add_message( { message => 'item_not_found' } ); > } >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/modals/delete_item_confirmation.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/modals/delete_item_confirmation.inc >new file mode 100644 >index 00000000000..705ee18e288 >--- /dev/null >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/modals/delete_item_confirmation.inc >@@ -0,0 +1,30 @@ >+[% USE Item %] >+ >+<!-- delete_item_confirmation.inc --> >+ <!-- Item deletion confirmation dialog --> >+ <div class="modal fade" id="delete-item-modal" tabindex="-1" role="dialog" aria-labelledby="claims-returned-modal-label"> >+ <div class="modal-dialog" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <h4 class="modal-title" id="delete-item-modal-label">Delete item</h4> >+ </div> >+ <div class="modal-body"> >+ <h5 style="margin-bottom: 15px;">Are you sure you want to delete this item?</h5> >+ >+ <div class="form-group"> >+ <div class="checkbox"> >+ <label for="delete_associated_serial_issues"> >+ <input id="delete_associated_serial_issues" type="checkbox" value="1"> >+ Delete serial issues linked to item >+ </label> >+ </div> >+ </div> >+ <input type="hidden" id="delete-item-itemnumber" /> >+ </div> >+ <div class="modal-footer"> >+ <button id="delete-item-modal-btn-submit" type="button" class="btn btn-primary"><i class="fa fa-exclamation-circle"></i> Delete item</button> >+ <button class="btn btn-default deny cancel" href="#" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i> Cancel</button> >+ </div> >+ </div> >+ </div> >+ </div> >\ No newline at end of file >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >index cf7259975c6..42b29b9787b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt >@@ -4,6 +4,7 @@ > [% USE Branches %] > [% USE KohaDates %] > [% USE Price %] >+[% USE Item %] > [% USE TablesSettings %] > [% PROCESS 'i18n.inc' %] > [% INCLUDE 'doc-head-open.inc' %] >@@ -146,8 +147,9 @@ > <input type="hidden" name="biblionumber" value="[% item.biblionumber | html %]" /> > <input type="hidden" name="itemnumber" value="[% item.itemnumber | html %]" /> > <input type="hidden" name="searchid" value="[% searchid | html %]" /> >+ <input type="hidden" name="delete-serial-issues" id="[% item.itemnumber | html %]-delete-serial-issues" value="" /> > </form> >- <a class="dropdown-item delete" data-item="[% item.itemnumber | html %]" href="#">Delete</a> >+ <a class="dropdown-item delete" data-itemnumber="[% item.itemnumber | html %]" data-has-serial-item="[% Item.HasSerialItem(item.itemnumber) | html %]" href="#">Delete</a> > </li> > [% END %] > [% END %] >@@ -386,6 +388,7 @@ > </form> > > [% INCLUDE 'modals/cataloguing_create_av.inc' %] >+ [% INCLUDE 'modals/delete_item_confirmation.inc' %] > > </div> <!-- /#cataloguing_additem_newitem --> > </div> <!-- /.col-sm-10 --> >diff --git a/koha-tmpl/intranet-tmpl/prog/js/cataloging_additem.js b/koha-tmpl/intranet-tmpl/prog/js/cataloging_additem.js >index c8a2189b834..f37f95d1f34 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/cataloging_additem.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/cataloging_additem.js >@@ -134,10 +134,27 @@ $(document).ready(function(){ > > $(document).on('click', '.delete', function(e) { > e.preventDefault(); >- if (confirmDelete(MSG_CONFIRM_DELETE_ITEM)) { >- return $("#" + $(this).data("item") + "-delete-item-form").submit(); >+ var itemnumber = $(this).data('itemnumber'); >+ var hasSerialItem = $(this).data('has-serial-item'); >+ >+ $('#delete-item-itemnumber').val(itemnumber); >+ $('#delete_associated_serial_issues').attr('checked', false); >+ $('#delete-item-modal-btn-submit').data("item", itemnumber); >+ if(!hasSerialItem) { >+ $('.form-group').hide() > } >- }) ; >+ $('#delete-item-modal').modal(); >+ }); >+ $(document).on('click', '#delete-item-modal-btn-submit', function(e) { >+ e.preventDefault(); >+ var itemnumber = $('#delete-item-itemnumber').val(); >+ var deleteSerialIssues = $('#delete_associated_serial_issues').prop('checked') ? true : false; >+ $('#delete-item-modal').modal('hide'); >+ if(deleteSerialIssues) { >+ $('#' + itemnumber + '-delete-serial-issues').val('1'); >+ } >+ return $("#" + $(this).data("item") + "-delete-item-form").submit(); >+ }); > }); > > function CheckTemplateForm(f) { >-- >2.39.3 (Apple Git-146)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37115
:
167847
|
167848
|
168133
|
168134
|
168373
|
168374
|
168495
|
168496
|
168497
|
171208
|
171209
|
171210
|
171938
|
171939
|
171940
|
173256
|
173257
|
173258