Bugzilla – Attachment 166307 Details for
Bug 31981
Add classes to each NEEDSCONFIRM message for easier styling in circ/circulation.tt
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 31981: Add classes to each NEEDSCONFIRM message in circ/circulation.tt
Bug-31981-Add-classes-to-each-NEEDSCONFIRM-message.patch (text/plain), 18.60 KB, created by
Kyle M Hall (khall)
on 2024-05-07 16:24:16 UTC
(
hide
)
Description:
Bug 31981: Add classes to each NEEDSCONFIRM message in circ/circulation.tt
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2024-05-07 16:24:16 UTC
Size:
18.60 KB
patch
obsolete
>From 8956e2252663ae95eef18e3e9db0ff9891db3372 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Thu, 21 Mar 2024 16:37:13 +0000 >Subject: [PATCH] Bug 31981: Add classes to each NEEDSCONFIRM message in > circ/circulation.tt > >This patch adds a 'needsconfirm' class and a unique class to each NEEDSCONFIRM message on circ/circulation.tt to make these easier to style individually. > >To test: >1. APPLY patch >2. Review the diff to see each of the NEEDSCONFIRMATION messages. >3. Add some CSS to IntranetUserCSS like this: > >.needsconfirm { padding: 1em; color: #fff; } > >.reserved { background: blue; } >.debt { background: red; } >.reserve_waiting { background: orange; } >.rentalcharge { background: purple; } >.renew_issue { background: limegreen; } > >4. Place a hold on an item for Patron A, do not trigger the hold, and check the item out to Patron B. The message background is blue. >5. Then check the item in, confirm the hold, then check the item out to Patron B. The message background is orange >6. Check something out that is already checked out to that patron, message background is lime green. >7. Have too much debt and check something out to a patron, message is red. > >Note: There are plenty more NEEDSCONFIRMATION messages but I don't think we need to test every single one. >Note: These background colors are more testing purposes only. >Signed-off-by: Donna <donna@bywatersolutions.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > .../prog/en/modules/circ/circulation.tt | 58 +++++++++---------- > 1 file changed, 29 insertions(+), 29 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >index e94e5554d04..e9c45aadd02 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt >@@ -117,7 +117,7 @@ > > <ul> > [%IF ( AGE_RESTRICTION ) %] >- <li> >+ <li class="needsconfirm age_restriction"> > Age restriction [% AGE_RESTRICTION | html %]. > [% IF CAN_user_circulate_force_checkout %] > Check out anyway? >@@ -127,43 +127,43 @@ > > > [% IF ( DEBT ) %] >- <li>The patron has a debt of [% DEBT | $Price %].</li> >+ <li class="needsconfirm debt">The patron has a debt of [% DEBT | $Price %].</li> > [% END %] > > [% IF ( DEBT_GUARANTEES ) %] >- <li>The patron's guarantees collectively have a debt of [% DEBT_GUARANTEES | $Price %].</li> >+ <li class="needsconfirm debt_guarantees">The patron's guarantees collectively have a debt of [% DEBT_GUARANTEES | $Price %].</li> > [% END %] > > [% IF ( DEBT_GUARANTORS ) %] >- <li>The patron's guarantors and their other guarantees collectively have a debt of [% DEBT_GUARANTORS | $Price %].</li> >+ <li class="needsconfirm debt_gaurantors">The patron's guarantors and their other guarantees collectively have a debt of [% DEBT_GUARANTORS | $Price %].</li> > [% END %] > > [% IF ( RENTALCHARGE && RENTALCHARGE > 0 ) %] >- <li>Rental charge for this item: [% RENTALCHARGE | $Price %]</li> >+ <li class="needsconfirm rentalcharge">Rental charge for this item: [% RENTALCHARGE | $Price %]</li> > [% END %] > > [% IF ( RENEW_ISSUE ) %] >- <li>Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is currently checked out to this patron. Renew?</li> >+ <li class="needsconfirm renew_issue">Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is currently checked out to this patron. Renew?</li> > [% END %] > > [% IF ( RESERVE_WAITING ) %] >- <li>Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) has been waiting for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %] since [% reswaitingdate | $KohaDates %]</li> >+ <li class="needsconfirm reserve_waiting">Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) has been waiting for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %] since [% reswaitingdate | $KohaDates %]</li> > [% END %] > > [% IF ( TRANSFERRED ) %] >- <li>Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is on hold for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) and being transferred to [% Branches.GetName( resbranchcode ) | html %]</li> >+ <li class="needsconfirm transferred">Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is on hold for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) and being transferred to [% Branches.GetName( resbranchcode ) | html %]</li> > [% END %] > > [% IF ( PROCESSING ) %] >- <li>Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is being processed for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %]</li> >+ <li class="needsconfirm processing">Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is being processed for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %]</li> > [% END %] > > [% IF ( RESERVED ) %] >- <li>Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) has been on hold for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %] since [% resreservedate | $KohaDates %]</li> >+ <li class="needsconfirm reserved">Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) has been on hold for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% resborrowernumber | uri %]">[% resfirstname | html %] [% ressurname | html %]</a> ([% rescardnumber | html %]) at [% Branches.GetName( resbranchcode ) | html %] since [% resreservedate | $KohaDates %]</li> > [% END %] > > [% IF ( ISSUED_TO_ANOTHER ) %] >- <li>Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is checked out to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issued_borrowernumber | uri %]">[% issued_firstname | html %] [% issued_surname | html %]</a> ([% issued_cardnumber | html %]). >+ <li class="needsconfirm issued_to_another">Item <em>[% getTitleMessageIteminfo | html %]</em> ([% getBarcodeMessageIteminfo | html %]) is checked out to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% issued_borrowernumber | uri %]">[% issued_firstname | html %] [% issued_surname | html %]</a> ([% issued_cardnumber | html %]). > [% IF CAN_user_circulate_force_checkout %] > Check in and check out? > [% END %] >@@ -171,35 +171,35 @@ > [% END %] > > [% IF TOO_MANY and TOO_MANY == 'TOO_MANY_CHECKOUTS' %] >- <li>Too many checked out. [% current_loan_count | html %] checked out, only [% max_loans_allowed | html %] are allowed.</li> >- <li> >+ <li class="needsconfirm too_many_checkouts">Too many checked out. [% current_loan_count | html %] checked out, only [% max_loans_allowed | html %] are allowed.</li> >+ <li class="needsconfirm too_many_checkouts2"> > Maximum checkouts calculated from the circulation rule for > [% INCLUDE circulation_rule_criteria rule=circulation_rule_TOO_MANY %] > </li> > [% END %] > > [% IF TOO_MANY and TOO_MANY == 'TOO_MANY_ONSITE_CHECKOUTS' %] >- <li>Too many on-site checked out. [% current_loan_count | html %] on-site checked out, only [% max_loans_allowed | html %] are allowed.</li> >- <li> >+ <li class="needsconfirm too_many_onsite_checkouts">Too many on-site checked out. [% current_loan_count | html %] on-site checked out, only [% max_loans_allowed | html %] are allowed.</li> >+ <li class="needsconfirm too_many_onsite_checkouts2"> > Maximum checkouts calculated from the circulation rule for > [% INCLUDE circulation_rule_criteria rule=circulation_rule_TOO_MANY %] > </li> > [% END %] > > [% IF ( BORRNOTSAMEBRANCH ) %] >- <li>This patron is from a different library ([% Branches.GetName( BORRNOTSAMEBRANCH ) | html %])</li> >+ <li class="needsconfirm borrower_not_same_branch">This patron is from a different library ([% Branches.GetName( BORRNOTSAMEBRANCH ) | html %])</li> > [% END %] > > [% IF ( PATRON_CANT ) %] >- <li>This patron can't check out this item per library circulation policy.</li> >+ <li class="needsconfirm patron_cant">This patron can't check out this item per library circulation policy.</li> > [% END %] > > [% IF ( TOO_MANY and TOO_MANY == 'NO_RULE_DEFINED' ) %] >- <li>No circulation rule is defined for this patron and itemtype combination.</li> >+ <li class="needsconfirm no_rule_defined">No circulation rule is defined for this patron and itemtype combination.</li> > [% END %] > > [% IF ( NOT_FOR_LOAN_FORCING ) %] >- <li> >+ <li class="needsconfirm not_for_loan_forcing"> > [% IF ( itemtype_notforloan ) %] > <span>Item type is normally not for loan.</span> > [% ELSIF ( item_notforloan ) %] >@@ -213,7 +213,7 @@ > [% END %] > > [% IF ( USERBLOCKEDOVERDUE ) %] >- <li>Patron has [% USERBLOCKEDOVERDUE %] overdue item(s). >+ <li class="needsconfirm userblocked_overdue">Patron has [% USERBLOCKEDOVERDUE %] overdue item(s). > [% IF CAN_user_circulate_force_checkout %] > Check out anyway? > [% END %] >@@ -221,7 +221,7 @@ > [% END %] > > [% IF ( ITEM_LOST ) %] >- <li>This item has been lost with a status of "[% ITEM_LOST | html %]". >+ <li class="needsconfirm item_lost">This item has been lost with a status of "[% ITEM_LOST | html %]". > [% IF CAN_user_circulate_force_checkout %] > Check out anyway? > [% END %] >@@ -229,15 +229,15 @@ > [% END %] > > [% IF HIGHHOLDS %] >- <li>High demand item. Loan period shortened to [% HIGHHOLDS.duration | html %] days (due [% HIGHHOLDS.returndate | $KohaDates %]). Check out anyway?</li> >+ <li class="needsconfirm highholds">High demand item. Loan period shortened to [% HIGHHOLDS.duration | html %] days (due [% HIGHHOLDS.returndate | $KohaDates %]). Check out anyway?</li> > [% END %] > > [% IF PREVISSUE %] >- <li>Patron has previously checked out this title: <strong>[% biblio.title | html %] [% IF biblio.author %] by [% biblio.author | html %][% END %]</strong>. Check out anyway?</li> >+ <li class="needsconfirm previssue">Patron has previously checked out this title: <strong>[% biblio.title | html %] [% IF biblio.author %] by [% biblio.author | html %][% END %]</strong>. Check out anyway?</li> > [% END %] > > [% IF BIBLIO_ALREADY_ISSUED %] >- <li> >+ <li class="needsconfirm already_issued"> > Patron has already checked out another item from this record. > [% IF CAN_user_circulate_force_checkout %] > Check out anyway? >@@ -246,27 +246,27 @@ > [% END %] > > [% IF ADDITIONAL_MATERIALS %] >- <li> >+ <li class="needsconfirm additional_materials"> > Please confirm that the accompanying materials are present: [% ADDITIONAL_MATERIALS | html %] > </li> > [% END %] > > [% IF RECALLED %] > [% IF RECALLED.waiting %] >- <li>Item <i>[% RECALLED.biblio.title | html %]</i> ([% RECALLED.item.barcode | html %]) has been waiting for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% RECALLED.patron_id | uri %]">[% RECALLED.patron.firstname | html %] [% RECALLED.patron.surname | html %]</a> ([% RECALLED.patron.cardnumber | html %]) at [% Branches.GetName( RECALLED.pickup_library_id ) | html %] since [% RECALLED.waiting_date | $KohaDates %]</li> >+ <li class="needsconfirm recalled">Item <i>[% RECALLED.biblio.title | html %]</i> ([% RECALLED.item.barcode | html %]) has been waiting for <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% RECALLED.patron_id | uri %]">[% RECALLED.patron.firstname | html %] [% RECALLED.patron.surname | html %]</a> ([% RECALLED.patron.cardnumber | html %]) at [% Branches.GetName( RECALLED.pickup_library_id ) | html %] since [% RECALLED.waiting_date | $KohaDates %]</li> > [% ELSIF RECALLED.requested or RECALLED.overdue %] >- <li>Item <i>[% RECALLED.biblio.title | html %]</i> [% IF RECALLED.item %]([% RECALLED.item.barcode | html %])[% END %] has been recalled by <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% RECALLED.patron_id | uri %]">[% RECALLED.patron.firstname | html %] [% RECALLED.patron.surname | html %]</a> ([% RECALLED.patron.cardnumber | html %]) at [% Branches.GetName( RECALLED.pickup_library_id ) | html %] since [% RECALLED.created_date | $KohaDates %]</li> >+ <li class="needsconfirm recalled2">Item <i>[% RECALLED.biblio.title | html %]</i> [% IF RECALLED.item %]([% RECALLED.item.barcode | html %])[% END %] has been recalled by <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% RECALLED.patron_id | uri %]">[% RECALLED.patron.firstname | html %] [% RECALLED.patron.surname | html %]</a> ([% RECALLED.patron.cardnumber | html %]) at [% Branches.GetName( RECALLED.pickup_library_id ) | html %] since [% RECALLED.created_date | $KohaDates %]</li> > [% END %] > [% END %] > > [% IF ( BOOKED_TO_ANOTHER ) %] >- <li> >+ <li class="needsconfirm booked_to_another"> > Due for another patron booking by: [% BOOKED_TO_ANOTHER.start_date | $KohaDates %] > </li> > [% END %] > > [% IF ( BOOKED_EARLY ) %] >- <li> >+ <li class="needsconfirm booked_early"> > Patron has this item booked for checkout on [% BOOKED_EARLY.start_date | $KohaDates %] > </li> > [% END %] >-- >2.30.2
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 31981
:
142657
|
142658
|
163647
|
163653
| 166307 |
167167