View | Details | Raw Unified | Return to bug 33605
Collapse All | Expand All

(-)a/Koha/Schema/Result/ImportBatch.pm (-2 / +20 lines)
Lines 83-88 date and time the file was uploaded Link Here
83
83
84
how to handle duplicate records
84
how to handle duplicate records
85
85
86
=head2 overlay_frameworkcode
87
88
  data_type: 'varchar'
89
  default_value: (empty string)
90
  is_nullable: 0
91
  size: 50
92
86
=head2 nomatch_action
93
=head2 nomatch_action
87
94
88
  data_type: 'enum'
95
  data_type: 'enum'
Lines 92-97 how to handle duplicate records Link Here
92
99
93
how to handle records where no match is found
100
how to handle records where no match is found
94
101
102
=head2 import_frameworkcode
103
104
  data_type: 'varchar'
105
  default_value: (empty string)
106
  is_nullable: 0
107
  size: 50
108
95
=head2 item_action
109
=head2 item_action
96
110
97
  data_type: 'enum'
111
  data_type: 'enum'
Lines 178-183 __PACKAGE__->add_columns( Link Here
178
    extra => { list => ["replace", "create_new", "use_template", "ignore"] },
192
    extra => { list => ["replace", "create_new", "use_template", "ignore"] },
179
    is_nullable => 0,
193
    is_nullable => 0,
180
  },
194
  },
195
  "overlay_frameworkcode",
196
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 50 },
181
  "nomatch_action",
197
  "nomatch_action",
182
  {
198
  {
183
    data_type => "enum",
199
    data_type => "enum",
Lines 185-190 __PACKAGE__->add_columns( Link Here
185
    extra => { list => ["create_new", "ignore"] },
201
    extra => { list => ["create_new", "ignore"] },
186
    is_nullable => 0,
202
    is_nullable => 0,
187
  },
203
  },
204
  "import_frameworkcode",
205
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 50 },
188
  "item_action",
206
  "item_action",
189
  {
207
  {
190
    data_type => "enum",
208
    data_type => "enum",
Lines 289-296 __PACKAGE__->belongs_to( Link Here
289
);
307
);
290
308
291
309
292
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
310
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-10 14:43:20
293
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+/u1tQQzT5ygzGwVgWxxwg
311
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4sVhtTRoU1032yvQjA5Wfw
294
312
295
=head2 koha_object_class
313
=head2 koha_object_class
296
314
(-)a/Koha/Schema/Result/ImportBatchProfile.pm (-4 / +21 lines)
Lines 61-66 the id of the marc modification template Link Here
61
61
62
how to handle duplicate records
62
how to handle duplicate records
63
63
64
=head2 overlay_frameworkcode
65
66
  data_type: 'varchar'
67
  default_value: (empty string)
68
  is_nullable: 0
69
  size: 50
70
64
=head2 nomatch_action
71
=head2 nomatch_action
65
72
66
  data_type: 'varchar'
73
  data_type: 'varchar'
Lines 69-74 how to handle duplicate records Link Here
69
76
70
how to handle records where no match is found
77
how to handle records where no match is found
71
78
79
=head2 import_frameworkcode
80
81
  data_type: 'varchar'
82
  default_value: (empty string)
83
  is_nullable: 0
84
  size: 50
85
72
=head2 item_action
86
=head2 item_action
73
87
74
  data_type: 'varchar'
88
  data_type: 'varchar'
Lines 128-135 __PACKAGE__->add_columns( Link Here
128
  { data_type => "integer", is_nullable => 1 },
142
  { data_type => "integer", is_nullable => 1 },
129
  "overlay_action",
143
  "overlay_action",
130
  { data_type => "varchar", is_nullable => 1, size => 50 },
144
  { data_type => "varchar", is_nullable => 1, size => 50 },
145
  "overlay_frameworkcode",
146
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 50 },
131
  "nomatch_action",
147
  "nomatch_action",
132
  { data_type => "varchar", is_nullable => 1, size => 50 },
148
  { data_type => "varchar", is_nullable => 1, size => 50 },
149
  "import_frameworkcode",
150
  { data_type => "varchar", default_value => "", is_nullable => 0, size => 50 },
133
  "item_action",
151
  "item_action",
134
  { data_type => "varchar", is_nullable => 1, size => 50 },
152
  { data_type => "varchar", is_nullable => 1, size => 50 },
135
  "parse_items",
153
  "parse_items",
Lines 188-201 __PACKAGE__->has_many( Link Here
188
);
206
);
189
207
190
208
191
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-01-21 13:39:29
209
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-08-09 19:11:18
192
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RmvuwPN8RT+tBsxR+Q7unA
210
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:E8EKtIdYKkf1PT3aFo9trA
193
211
194
212
195
# You can replace this text with custom code or comments, and it will be preserved on regeneration
213
# You can replace this text with custom code or comments, and it will be preserved on regeneration
196
214
197
__PACKAGE__->add_columns(
215
__PACKAGE__->add_columns(
198
  '+parse_items' => { is_boolean => 1 },
216
    '+parse_items'          => { is_boolean => 1 },
199
);
217
);
200
218
201
=head2 koha_object_class
219
=head2 koha_object_class
202
- 

Return to bug 33605