|
Lines 90-95
enrollment fee for the patron
Link Here
|
| 90 |
|
90 |
|
| 91 |
are overdue notices sent to this patron category (1 for yes, 0 for no) |
91 |
are overdue notices sent to this patron category (1 for yes, 0 for no) |
| 92 |
|
92 |
|
|
|
93 |
|
| 94 |
|
| 95 |
=head2 print_notice_charge |
| 96 |
|
| 97 |
data_type: 'decimal' |
| 98 |
default_value: 0.000000 |
| 99 |
is_nullable: 1 |
| 100 |
size: [28,6] |
| 101 |
|
| 102 |
charge for print notices (0.00 = disabled) |
| 103 |
|
| 93 |
=head2 hidelostitems |
104 |
=head2 hidelostitems |
| 94 |
|
105 |
|
| 95 |
data_type: 'tinyint' |
106 |
data_type: 'tinyint' |
|
Lines 243-248
__PACKAGE__->add_columns(
Link Here
|
| 243 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
254 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
| 244 |
"overduenoticerequired", |
255 |
"overduenoticerequired", |
| 245 |
{ data_type => "tinyint", is_nullable => 1 }, |
256 |
{ data_type => "tinyint", is_nullable => 1 }, |
|
|
257 |
"print_notice_charge", |
| 258 |
{ |
| 259 |
data_type => "decimal", |
| 260 |
default_value => "0.000000", |
| 261 |
is_nullable => 1, |
| 262 |
size => [28, 6], |
| 263 |
}, |
| 246 |
"hidelostitems", |
264 |
"hidelostitems", |
| 247 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
265 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 248 |
"category_type", |
266 |
"category_type", |
|
Lines 400-407
__PACKAGE__->has_many(
Link Here
|
| 400 |
); |
418 |
); |
| 401 |
|
419 |
|
| 402 |
|
420 |
|
| 403 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-09 19:45:59 |
421 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-09-16 15:18:44 |
| 404 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MArdX4M/RMcRQT/lA/rWAA |
422 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uR+KIzEJDFp0EaTlpYrVng |
| 405 |
|
423 |
|
| 406 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
424 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
| 407 |
|
425 |
|
| 408 |
- |
|
|