From 5054bbb00512c4e12d15d710356b06e04d3a91f9 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Fri, 27 Oct 2017 14:32:40 -0300
Subject: [PATCH] Bug 14919: Remove notificationdate and reminderdate

These columns are not used, we do not need to display them
---
 admin/columns_settings.yml                               |  4 ----
 .../prog/en/modules/members/holdshistory.tt              | 16 ----------------
 2 files changed, 20 deletions(-)

diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml
index 25769b849b..951a564c7f 100644
--- a/admin/columns_settings.yml
+++ b/admin/columns_settings.yml
@@ -270,10 +270,6 @@ modules:
         -
           columnname: reservedate
         -
-          columnname: notificationdate
-        -
-          columnname: reminderdate
-        -
           columnname: expirationdate
         -
           columnname: waitingdate
diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt
index f9dc4199db..811c54573e 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt
@@ -56,8 +56,6 @@
         <th>Barcode</th>
         <th>Library</th>
         <th class="title-string">Hold date</th>
-        <th class="title-string">Notification date</th>
-        <th class="title-string">Reminder date</th>
         <th class="title-string">Expiration date</th>
         <th class="title-string">Waiting date</th>
         <th class="title-string">Cancellation date</th>
@@ -72,20 +70,6 @@
           <td>[% Branches.GetName( hold.branchcode ) %]</td>
           <td><span title="[% hold.reservedate %]">[% hold.reservedate | $KohaDates %]</span></td>
           <td>
-              [% IF hold.notificationdate %]
-                  <span title="[% hold.notificationdate %]">[% hold.notificationdate | $KohaDates %]</span>
-              [% ELSE %]
-                  <span title="0000-00-00"></span>
-              [% END %]
-          </td>
-          <td>
-              [% IF hold.reminderdate %]
-                  <span title="[% hold.reminderdate %]">[% hold.reminderdate | $KohaDates %]</span>
-              [% ELSE %]
-                  <span title="0000-00-00"></span>
-              [% END %]
-          </td>
-          <td>
               [% IF hold.expirationdate %]
                   <span title="[% hold.expirationdate %]">[% hold.expirationdate | $KohaDates %]</span>
               [% ELSE %]
-- 
2.11.0