Lines 175-180
Group this item type with others with the same value on OPAC search options
Link Here
|
175 |
|
175 |
|
176 |
If automatic checkin is enabled for items of this type |
176 |
If automatic checkin is enabled for items of this type |
177 |
|
177 |
|
|
|
178 |
=head2 checkprevcheckout |
179 |
|
180 |
data_type: 'varchar' |
181 |
default_value: 'inherit' |
182 |
is_nullable: 0 |
183 |
size: 7 |
184 |
|
185 |
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'. |
186 |
|
178 |
=cut |
187 |
=cut |
179 |
|
188 |
|
180 |
__PACKAGE__->add_columns( |
189 |
__PACKAGE__->add_columns( |
Lines 221-226
__PACKAGE__->add_columns(
Link Here
|
221 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
230 |
{ data_type => "varchar", is_nullable => 1, size => 80 }, |
222 |
"automatic_checkin", |
231 |
"automatic_checkin", |
223 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
232 |
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, |
|
|
233 |
"checkprevcheckout", |
234 |
{ |
235 |
data_type => "varchar", |
236 |
default_value => "inherit", |
237 |
is_nullable => 0, |
238 |
size => 7, |
239 |
}, |
224 |
); |
240 |
); |
225 |
|
241 |
|
226 |
=head1 PRIMARY KEY |
242 |
=head1 PRIMARY KEY |
227 |
- |
|
|