Lines 176-181
Group this item type with others with the same value on OPAC search options
Link Here
|
176 |
|
176 |
|
177 |
If automatic checkin is enabled for items of this type |
177 |
If automatic checkin is enabled for items of this type |
178 |
|
178 |
|
|
|
179 |
=head2 checkprevcheckout |
180 |
|
181 |
data_type: 'varchar' |
182 |
default_value: 'inherit' |
183 |
is_nullable: 0 |
184 |
size: 7 |
185 |
|
186 |
Produce a warning for a patron if a item of this type has previously been checked out to the same patron if 'yes', not if 'no', defer to category setting if 'inherit'. |
187 |
|
179 |
=cut |
188 |
=cut |
180 |
|
189 |
|
181 |
__PACKAGE__->add_columns( |
190 |
__PACKAGE__->add_columns( |
Lines 222-227
__PACKAGE__->add_columns(
Link Here
|
222 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
231 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
223 |
"automatic_checkin", |
232 |
"automatic_checkin", |
224 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
233 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
234 |
"checkprevcheckout", |
235 |
{ |
236 |
data_type => "varchar", |
237 |
default_value => "inherit", |
238 |
is_nullable => 0, |
239 |
size => 7, |
240 |
}, |
225 |
); |
241 |
); |
226 |
|
242 |
|
227 |
=head1 PRIMARY KEY |
243 |
=head1 PRIMARY KEY |
228 |
- |
|
|