Bugzilla – Attachment 73947 Details for
Bug 3841
Add a Default ACQ framework
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 3841: (follow-up) Add the ACQ framework for pl-PL
Bug-3841-follow-up-Add-the-ACQ-framework-for-pl-PL.patch (text/plain), 1.96 KB, created by
Jonathan Druart
on 2018-04-10 15:07:28 UTC
(
hide
)
Description:
Bug 3841: (follow-up) Add the ACQ framework for pl-PL
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2018-04-10 15:07:28 UTC
Size:
1.96 KB
patch
obsolete
>From 2359a34b2c698bd36f1a06546dc15d78f21e9c0e Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 10 Apr 2018 12:04:59 -0300 >Subject: [PATCH] Bug 3841: (follow-up) Add the ACQ framework for pl-PL > >No idea why I missed pl-PL! >--- > .../marcflavour/marc21/mandatory/marc21_framework_DEFAULT.sql | 8 ++++++++ > 1 file changed, 8 insertions(+) > >diff --git a/installer/data/mysql/pl-PL/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.sql b/installer/data/mysql/pl-PL/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.sql >index 7866ee5e33..1ac10aaa09 100644 >--- a/installer/data/mysql/pl-PL/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.sql >+++ b/installer/data/mysql/pl-PL/marcflavour/marc21/mandatory/marc21_framework_DEFAULT.sql >@@ -3998,3 +3998,11 @@ INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian` > > UPDATE `marc_subfield_structure` SET maxlength=24 WHERE tagfield='000'; > UPDATE `marc_subfield_structure` SET maxlength=40 WHERE tagfield='008'; >+ >+-- Create the ACQ framework based on the default framework, fields 952 only >+INSERT IGNORE INTO biblio_framework VALUES( 'ACQ', 'Acquisition framework' ); >+INSERT INTO marc_tag_structure(tagfield, liblibrarian, libopac, repeatable, mandatory, authorised_value, frameworkcode) >+SELECT tagfield, liblibrarian, libopac, repeatable, mandatory, authorised_value, 'ACQ' FROM marc_tag_structure WHERE tagfield='952' AND frameworkcode=''; >+ >+INSERT INTO marc_subfield_structure(tagfield, tagsubfield, liblibrarian, libopac, repeatable, mandatory, kohafield, tab, authorised_value, authtypecode, value_builder, isurl, hidden, frameworkcode, seealso, link, defaultvalue, maxlength) >+SELECT tagfield, tagsubfield, liblibrarian, libopac, repeatable, mandatory, kohafield, tab, authorised_value, authtypecode, value_builder, isurl, hidden, 'ACQ', seealso, link, defaultvalue, maxlength FROM marc_subfield_structure WHERE tagfield='952' AND frameworkcode=''; >-- >2.11.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 3841
:
1601
|
68635
|
68636
|
68637
|
68638
|
68806
|
69057
|
69138
| 73947