|
Lines 96-109
controls if the hourly rental fee is calculated directly or using finesCalendar
Link Here
|
| 96 |
|
96 |
|
| 97 |
default replacement cost |
97 |
default replacement cost |
| 98 |
|
98 |
|
| 99 |
=head2 processfee |
|
|
| 100 |
|
| 101 |
data_type: 'decimal' |
| 102 |
is_nullable: 1 |
| 103 |
size: [28,6] |
| 104 |
|
| 105 |
default text be recorded in the column note when the processing fee is applied |
| 106 |
|
| 107 |
=head2 notforloan |
99 |
=head2 notforloan |
| 108 |
|
100 |
|
| 109 |
data_type: 'tinyint' |
101 |
data_type: 'tinyint' |
|
Lines 214-221
__PACKAGE__->add_columns(
Link Here
|
| 214 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
206 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
| 215 |
"defaultreplacecost", |
207 |
"defaultreplacecost", |
| 216 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
208 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
| 217 |
"processfee", |
|
|
| 218 |
{ data_type => "decimal", is_nullable => 1, size => [28, 6] }, |
| 219 |
"notforloan", |
209 |
"notforloan", |
| 220 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
210 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
| 221 |
"imageurl", |
211 |
"imageurl", |
|
Lines 360-367
__PACKAGE__->has_many(
Link Here
|
| 360 |
); |
350 |
); |
| 361 |
|
351 |
|
| 362 |
|
352 |
|
| 363 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-08-20 19:06:37 |
353 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-10-01 13:35:02 |
| 364 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:T/3QdCb353e+qBkN4as7Bg |
354 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EB42012+wy4/rvK0qhkZAw |
| 365 |
|
355 |
|
| 366 |
__PACKAGE__->add_columns( |
356 |
__PACKAGE__->add_columns( |
| 367 |
'+automatic_checkin' => { is_boolean => 1 }, |
357 |
'+automatic_checkin' => { is_boolean => 1 }, |
| 368 |
- |
|
|