Lines 213-218
set required password strength for patrons in this category
Link Here
|
213 |
|
213 |
|
214 |
Exclude patrons of this category from local holds priority |
214 |
Exclude patrons of this category from local holds priority |
215 |
|
215 |
|
|
|
216 |
=head2 noissuescharge |
217 |
|
218 |
data_type: 'integer' |
219 |
is_nullable: 1 |
220 |
|
221 |
define maximum amount withstanding before checkouts are blocked |
222 |
|
223 |
=head2 noissueschargeguarantees |
224 |
|
225 |
data_type: 'integer' |
226 |
is_nullable: 1 |
227 |
|
228 |
define maximum amount withstanding before checkouts are blocked |
229 |
|
230 |
=head2 noissueschargeguarantorswithguarantees |
231 |
|
232 |
data_type: 'integer' |
233 |
is_nullable: 1 |
234 |
|
235 |
define maximum amount withstanding before checkouts are blocked |
236 |
|
216 |
=cut |
237 |
=cut |
217 |
|
238 |
|
218 |
__PACKAGE__->add_columns( |
239 |
__PACKAGE__->add_columns( |
Lines 281-286
__PACKAGE__->add_columns(
Link Here
|
281 |
{ data_type => "tinyint", is_nullable => 1 }, |
302 |
{ data_type => "tinyint", is_nullable => 1 }, |
282 |
"exclude_from_local_holds_priority", |
303 |
"exclude_from_local_holds_priority", |
283 |
{ data_type => "tinyint", is_nullable => 1 }, |
304 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
305 |
"noissuescharge", |
306 |
{ data_type => "integer", is_nullable => 1 }, |
307 |
"noissueschargeguarantees", |
308 |
{ data_type => "integer", is_nullable => 1 }, |
309 |
"noissueschargeguarantorswithguarantees", |
310 |
{ data_type => "integer", is_nullable => 1 }, |
284 |
); |
311 |
); |
285 |
|
312 |
|
286 |
=head1 PRIMARY KEY |
313 |
=head1 PRIMARY KEY |
Lines 388-395
__PACKAGE__->has_many(
Link Here
|
388 |
); |
415 |
); |
389 |
|
416 |
|
390 |
|
417 |
|
391 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-01 20:49:52 |
418 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-01-22 10:25:59 |
392 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:r0Mftlw4TU7x+Ze2pAlwYQ |
419 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T7D8IaPgpSAit0VkrCQnrw |
393 |
|
420 |
|
394 |
sub koha_object_class { |
421 |
sub koha_object_class { |
395 |
'Koha::Patron::Category'; |
422 |
'Koha::Patron::Category'; |
396 |
- |
|
|