|
Lines 162-167
Default privacy setting for this patron category
Link Here
|
| 162 |
|
162 |
|
| 163 |
produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'. |
163 |
produce a warning for this patron category if this item has previously been checked out to this patron if 'yes', not if 'no', defer to syspref setting if 'inherit'. |
| 164 |
|
164 |
|
|
|
165 |
=head2 canplaceillopac |
| 166 |
|
| 167 |
data_type: 'tinyint' |
| 168 |
default_value: 0 |
| 169 |
is_nullable: 0 |
| 170 |
|
| 171 |
can this patron category place interlibrary loan requests |
| 172 |
|
| 165 |
=head2 can_be_guarantee |
173 |
=head2 can_be_guarantee |
| 166 |
|
174 |
|
| 167 |
data_type: 'tinyint' |
175 |
data_type: 'tinyint' |
|
Lines 259-264
__PACKAGE__->add_columns(
Link Here
|
| 259 |
is_nullable => 0, |
267 |
is_nullable => 0, |
| 260 |
size => 7, |
268 |
size => 7, |
| 261 |
}, |
269 |
}, |
|
|
270 |
"canplaceillopac", |
| 271 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 262 |
"can_be_guarantee", |
272 |
"can_be_guarantee", |
| 263 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
273 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 264 |
"reset_password", |
274 |
"reset_password", |
|
Lines 378-385
__PACKAGE__->has_many(
Link Here
|
| 378 |
); |
388 |
); |
| 379 |
|
389 |
|
| 380 |
|
390 |
|
| 381 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-11-08 17:35:26 |
391 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-31 03:27:07 |
| 382 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:B89OgAY/KnJbQaHpu5Xdfg |
392 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YYc52oTevOT+WXnDsG2mrQ |
| 383 |
|
393 |
|
| 384 |
sub koha_object_class { |
394 |
sub koha_object_class { |
| 385 |
'Koha::Patron::Category'; |
395 |
'Koha::Patron::Category'; |
|
Lines 389-394
sub koha_objects_class {
Link Here
|
| 389 |
} |
399 |
} |
| 390 |
|
400 |
|
| 391 |
__PACKAGE__->add_columns( |
401 |
__PACKAGE__->add_columns( |
|
|
402 |
'+canplaceillopac' => { is_boolean => 1 }, |
| 392 |
'+can_be_guarantee' => { is_boolean => 1 }, |
403 |
'+can_be_guarantee' => { is_boolean => 1 }, |
| 393 |
'+exclude_from_local_holds_priority' => { is_boolean => 1 }, |
404 |
'+exclude_from_local_holds_priority' => { is_boolean => 1 }, |
| 394 |
'+require_strong_password' => { is_boolean => 1 }, |
405 |
'+require_strong_password' => { is_boolean => 1 }, |
| 395 |
- |
|
|