|
Lines 132-137
the field that a vendor account has been mapped to in a marc record
Link Here
|
| 132 |
|
132 |
|
| 133 |
the value to be matched against the marc record |
133 |
the value to be matched against the marc record |
| 134 |
|
134 |
|
|
|
135 |
=head2 basket_name_field |
| 136 |
|
| 137 |
data_type: 'varchar' |
| 138 |
is_nullable: 1 |
| 139 |
size: 10 |
| 140 |
|
| 141 |
the field that a vendor can use to include a basket name that will be used to create the basket for the file |
| 142 |
|
| 135 |
=cut |
143 |
=cut |
| 136 |
|
144 |
|
| 137 |
__PACKAGE__->add_columns( |
145 |
__PACKAGE__->add_columns( |
|
Lines 163-168
__PACKAGE__->add_columns(
Link Here
|
| 163 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
171 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
| 164 |
"match_value", |
172 |
"match_value", |
| 165 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
173 |
{ data_type => "varchar", is_nullable => 1, size => 50 }, |
|
|
174 |
"basket_name_field", |
| 175 |
{ data_type => "varchar", is_nullable => 1, size => 10 }, |
| 166 |
); |
176 |
); |
| 167 |
|
177 |
|
| 168 |
=head1 PRIMARY KEY |
178 |
=head1 PRIMARY KEY |
|
Lines 220-227
__PACKAGE__->belongs_to(
Link Here
|
| 220 |
); |
230 |
); |
| 221 |
|
231 |
|
| 222 |
|
232 |
|
| 223 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 15:30:10 |
233 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-04-02 07:29:24 |
| 224 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:fbpPZlp8dGbDfmdsYTW0GQ |
234 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2FN72k+fJ3Peiy7qgoFoLQ |
| 225 |
|
235 |
|
| 226 |
__PACKAGE__->add_columns( |
236 |
__PACKAGE__->add_columns( |
| 227 |
'+parse_items' => { is_boolean => 1 }, |
237 |
'+parse_items' => { is_boolean => 1 }, |
| 228 |
- |
|
|