Bugzilla – Attachment 180110 Details for
Bug 39491
All accountline notes should be HTML textarea
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39491: Change all note inputs to textarea
Bug-39491-Change-all-note-inputs-to-textarea.patch (text/plain), 5.31 KB, created by
Lucas Gass (lukeg)
on 2025-04-01 09:53:15 UTC
(
hide
)
Description:
Bug 39491: Change all note inputs to textarea
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2025-04-01 09:53:15 UTC
Size:
5.31 KB
patch
obsolete
>From 8d449ebe0d7631d6bf06555c58b3b54006ee35c8 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Tue, 1 Apr 2025 09:47:59 +0000 >Subject: [PATCH] Bug 39491: Change all note inputs to textarea > >To test: >1. APPLY PATCH >2. Try adding notes to the following actions from the patron transaction page: > -Payout > -Refund > -Apply discount > -Void > -Cancel charge >3. Also try 'Pay amount', 'Pay selected', 'Write off selected' yellow buttons >4. Try the individual buttons for 'Pay' and 'Write off' >--- > .../prog/en/modules/members/boraccount.tt | 14 +++++++------- > .../prog/en/modules/members/paycollect.tt | 4 ++-- > 2 files changed, 9 insertions(+), 9 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >index 1cadc3e778d..f4d3b0274d2 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -324,7 +324,7 @@ > [% END %] > <li> > <label for="payout_note">Note: </label> >- <input type="text" name="payout_note" id="payout_note" /> >+ <textarea id="payout_note" name="payout_note" rows="5" cols="30"></textarea> > </li> > </ol> > </fieldset> >@@ -385,7 +385,7 @@ > [% END %] > <li> > <label for="refund_note">Note: </label> >- <input type="text" id="refund_note" name="refund_note" /> >+ <textarea id="refund_note" name="refund_note" rows="5" cols="30"></textarea> > </li> > </ol> > </fieldset> >@@ -431,7 +431,7 @@ > </li> > <li> > <label for="apply_discount_note">Note: </label> >- <input type="text" id="apply_discount_note" name="apply_discount_note" /> >+ <textarea id="apply_discount_note0" name="apply_discount_note" rows="5" cols="30"></textarea> > </li> > </ol> > </fieldset> >@@ -470,7 +470,7 @@ > <ol> > <li> > <label for="void_note">Note: </label> >- <input type="text" id="void_note" name="void_note" /> >+ <textarea id="void_note" name="void_note" rows="5" cols="30"></textarea> > </li> > </ol> > </fieldset> >@@ -510,8 +510,8 @@ > <fieldset class="rows"> > <ol> > <li> >- <label for="edited_note" style="text-align:left;">Note: </label> >- <textarea id="edited_note" name="edited_note" rows="5" cols="40"></textarea> >+ <label for="edited_note">Note: </label> >+ <textarea id="edited_note" name="edited_note" rows="5" cols="30"></textarea> > </li> > </ol> > </fieldset> >@@ -551,7 +551,7 @@ > <ol> > <li> > <label for="cancel_charge_note">Note: </label> >- <input type="text" id="cnacel_charge_note" name="cancel_charge_note" /> >+ <textarea id="cancel_charge_note" name="cancel_charge_note" rows="5" cols="30"></textarea> > </li> > </ol> > </fieldset> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt >index f74c459ed21..0320be8089e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt >@@ -209,7 +209,7 @@ > [% END %] > <li> > <label> Note: </label> >- <input name="payment_note" id="payment_note" value="[% payment_note | html %]" /> >+ <textarea id="payment_note" name="payment_note" rows="5" cols="30">[% payment_note | html %]</textarea> > </li> > </ol> > </fieldset> >@@ -283,7 +283,7 @@ > </li> > <li> > <label> Note: </label> >- <input name="payment_note" id="payment_note" value="[% payment_note | html %]" /> >+ <textarea id="payment_note" name="payment_note" rows="5" cols="30">[% payment_note | html %]</textarea> > </li> > </ol> > </fieldset> >-- >2.39.5
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 39491
:
180110
|
180180