Bugzilla – Attachment 105602 Details for
Bug 23019
Ability to create 'matching profiles' when importing records
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23019: Add ImportBatchesProfile schema and set is_boolean to parse_items column
Bug-23019-Add-ImportBatchesProfile-schema-and-set-.patch (text/plain), 3.75 KB, created by
ByWater Sandboxes
on 2020-06-05 19:27:46 UTC
(
hide
)
Description:
Bug 23019: Add ImportBatchesProfile schema and set is_boolean to parse_items column
Filename:
MIME Type:
Creator:
ByWater Sandboxes
Created:
2020-06-05 19:27:46 UTC
Size:
3.75 KB
patch
obsolete
>From bf29bdc1c566ca091abc7ea0521ef6dce0b9db5d Mon Sep 17 00:00:00 2001 >From: Agustin Moyano <agustinmoyano@theke.io> >Date: Fri, 15 May 2020 11:09:51 -0300 >Subject: [PATCH] Bug 23019: Add ImportBatchesProfile schema and set is_boolean > to parse_items column > >Signed-off-by: Abbey Holt <aholt@dubuque.lib.ia.us> >--- > Koha/Schema/Result/ImportBatchesProfile.pm | 180 +++++++++++++++++++++++++++++ > 1 file changed, 180 insertions(+) > create mode 100644 Koha/Schema/Result/ImportBatchesProfile.pm > >diff --git a/Koha/Schema/Result/ImportBatchesProfile.pm b/Koha/Schema/Result/ImportBatchesProfile.pm >new file mode 100644 >index 0000000000..a17b0054d4 >--- /dev/null >+++ b/Koha/Schema/Result/ImportBatchesProfile.pm >@@ -0,0 +1,180 @@ >+use utf8; >+package Koha::Schema::Result::ImportBatchesProfile; >+ >+# Created by DBIx::Class::Schema::Loader >+# DO NOT MODIFY THE FIRST PART OF THIS FILE >+ >+=head1 NAME >+ >+Koha::Schema::Result::ImportBatchesProfile >+ >+=cut >+ >+use strict; >+use warnings; >+ >+use base 'DBIx::Class::Core'; >+ >+=head1 TABLE: C<import_batches_profile> >+ >+=cut >+ >+__PACKAGE__->table("import_batches_profile"); >+ >+=head1 ACCESSORS >+ >+=head2 id >+ >+ data_type: 'integer' >+ is_auto_increment: 1 >+ is_nullable: 0 >+ >+=head2 name >+ >+ data_type: 'varchar' >+ is_nullable: 0 >+ size: 100 >+ >+=head2 matcher_id >+ >+ data_type: 'integer' >+ is_nullable: 1 >+ >+=head2 template_id >+ >+ data_type: 'integer' >+ is_nullable: 1 >+ >+=head2 overlay_action >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 50 >+ >+=head2 nomatch_action >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 50 >+ >+=head2 item_action >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 50 >+ >+=head2 parse_items >+ >+ data_type: 'tinyint' >+ is_nullable: 1 >+ >+=head2 record_type >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 50 >+ >+=head2 encoding >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 50 >+ >+=head2 format >+ >+ data_type: 'varchar' >+ is_nullable: 1 >+ size: 50 >+ >+=head2 comments >+ >+ data_type: 'longtext' >+ is_nullable: 1 >+ >+=cut >+ >+__PACKAGE__->add_columns( >+ "id", >+ { data_type => "integer", is_auto_increment => 1, is_nullable => 0 }, >+ "name", >+ { data_type => "varchar", is_nullable => 0, size => 100 }, >+ "matcher_id", >+ { data_type => "integer", is_nullable => 1 }, >+ "template_id", >+ { data_type => "integer", is_nullable => 1 }, >+ "overlay_action", >+ { data_type => "varchar", is_nullable => 1, size => 50 }, >+ "nomatch_action", >+ { data_type => "varchar", is_nullable => 1, size => 50 }, >+ "item_action", >+ { data_type => "varchar", is_nullable => 1, size => 50 }, >+ "parse_items", >+ { data_type => "tinyint", is_nullable => 1 }, >+ "record_type", >+ { data_type => "varchar", is_nullable => 1, size => 50 }, >+ "encoding", >+ { data_type => "varchar", is_nullable => 1, size => 50 }, >+ "format", >+ { data_type => "varchar", is_nullable => 1, size => 50 }, >+ "comments", >+ { data_type => "longtext", is_nullable => 1 }, >+); >+ >+=head1 PRIMARY KEY >+ >+=over 4 >+ >+=item * L</id> >+ >+=back >+ >+=cut >+ >+__PACKAGE__->set_primary_key("id"); >+ >+=head1 RELATIONS >+ >+=head2 import_batches >+ >+Type: has_many >+ >+Related object: L<Koha::Schema::Result::ImportBatch> >+ >+=cut >+ >+__PACKAGE__->has_many( >+ "import_batches", >+ "Koha::Schema::Result::ImportBatch", >+ { "foreign.profile_id" => "self.id" }, >+ { cascade_copy => 0, cascade_delete => 0 }, >+); >+ >+ >+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-06-03 15:47:08 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BWFz5yLEEP6ANuAWKAMCeg >+ >+__PACKAGE__->add_columns( >+ '+parse_items' => { is_boolean => 1 }, >+); >+ >+=head2 koha_object_class >+ >+ Koha Object class >+ >+=cut >+ >+sub koha_object_class { >+ 'Koha::ImportBatchProfile'; >+} >+ >+=head2 koha_objects_class >+ >+ Koha Objects class >+ >+=cut >+ >+sub koha_objects_class { >+ 'Koha::ImportBatchProfiles'; >+} >+ >+1; >-- >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 23019
:
104972
|
104973
|
104974
|
104975
|
104976
|
105536
|
105537
|
105538
|
105539
|
105540
|
105541
|
105555
|
105600
|
105601
|
105602
|
105603
|
105604
|
106555
|
109265
|
109266
|
109637
|
112531
|
112532
|
112533
|
112534
|
112535
|
112536
|
112537
|
112715
|
112716
|
112717
|
112718
|
112719
|
112720
|
112721
|
112722
|
113276
|
113277
|
113311
|
113416
|
113421