Bugzilla – Attachment 55937 Details for
Bug 16588
Remove the Readonly dependency (again)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16588: (follow-up) Remove Readonly from Edifact
Bug-16588-follow-up-Remove-Readonly-from-Edifact.patch (text/plain), 1.03 KB, created by
Nick Clemens (kidclamp)
on 2016-09-29 15:57:59 UTC
(
hide
)
Description:
Bug 16588: (follow-up) Remove Readonly from Edifact
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2016-09-29 15:57:59 UTC
Size:
1.03 KB
patch
obsolete
>From 9374785b615363ec1485a34526b87569228ae988 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Mon, 15 Aug 2016 14:56:04 +0100 >Subject: [PATCH] Bug 16588: (follow-up) Remove Readonly from Edifact > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > Koha/Edifact/Order.pm | 11 ++++++----- > 1 file changed, 6 insertions(+), 5 deletions(-) > >diff --git a/Koha/Edifact/Order.pm b/Koha/Edifact/Order.pm >index 1f9a442..093224e 100644 >--- a/Koha/Edifact/Order.pm >+++ b/Koha/Edifact/Order.pm >@@ -607,11 +607,12 @@ sub message_date_segment { > > sub _const { > my $key = shift; >- Readonly my %S => { >- service_string_advice => q{UNA:+.? '}, >- message_identifier => q{+ORDERS:D:96A:UN:EAN008'}, >- }; >- return ( $S{$key} ) ? $S{$key} : q{}; >+ if ( $key eq 'service_string_advice' ) { >+ return q{UNA:+.? '}; >+ } elsif ( $key eq 'message_identifier' ) { >+ return q{+ORDERS:D:96A:UN:EAN008'}; >+ } >+ return q{}; > } > > sub _interchange_sr_identifier { >-- >2.1.4
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 16588
:
53636
|
53637
|
53638
|
54477
|
55934
|
55935
|
55936
|
55937
|
56853
|
57516
|
57517
|
57518
|
57519
|
73444
|
73445
|
73446
|
73447
|
73448
|
73449
|
73450
|
73451
|
73452