Bugzilla – Attachment 161069 Details for
Bug 34853
Move EDI link to new line in invoice column of acquisition details display
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34853: Add clearfix span to Invoice links
Bug-34853-Add-clearfix-span-to-Invoice-links.patch (text/plain), 2.09 KB, created by
Martin Renvoize (ashimema)
on 2024-01-16 17:13:18 UTC
(
hide
)
Description:
Bug 34853: Add clearfix span to Invoice links
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-01-16 17:13:18 UTC
Size:
2.09 KB
patch
obsolete
>From a8356ccdd7db3f0d7e5c4d8e5bed3ea9f0894951 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 20 Sep 2023 16:47:49 +0100 >Subject: [PATCH] Bug 34853: Add clearfix span to Invoice links > >This patch adds a clearfix span around the invoicenumber and EDI message >display texts which should result in them each having their own line. > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > .../intranet-tmpl/prog/en/modules/catalogue/detail.tt | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >index 8f1f9c2d746..b97c2c8b996 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >@@ -857,15 +857,15 @@ > <td> > [% IF order.invoiceid %] > [% IF CAN_user_acquisition %] >- <a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% order.invoiceid | uri %]" >+ <span class="clearfix"><a href="/cgi-bin/koha/acqui/invoice.pl?invoiceid=[% order.invoiceid | uri %]" > title="Invoice detail page"> >- [% order.invoice.invoicenumber | html %]</a> >+ [% order.invoice.invoicenumber | html %]</a></span> > [% ELSE %] >- [% order.invoice.invoicenumber | html %] >+ <span class="clearfix">[% order.invoice.invoicenumber | html %]</span> > [% END %] > > [% IF ( Koha.Preference('EDIFACT') && CAN_user_acquisition_edi_manage && order.invoice.message_id ) %] >- (<a href="/cgi-bin/koha/acqui/edimsg.pl?id=[% order.invoice.message_id | uri %]" title="EDI INVOICE message">EDI message</a>) >+ <span class="clearfix"><a href="/cgi-bin/koha/acqui/edimsg.pl?id=[% order.invoice.message_id | uri %]" title="EDI INVOICE message">EDI message</a></span> > [% END %] > [% END %] > </td> >-- >2.43.0
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 34853
:
155953
|
155954
| 161069 |
161070