Lines 1029-1041
__PACKAGE__->belongs_to(
Link Here
|
1029 |
|
1029 |
|
1030 |
__PACKAGE__->add_columns( |
1030 |
__PACKAGE__->add_columns( |
1031 |
'+bookable' => { is_boolean => 1 }, |
1031 |
'+bookable' => { is_boolean => 1 }, |
1032 |
'+damaged' => { is_boolean => 1 }, |
1032 |
'+damaged' => { is_boolean => 0 }, |
1033 |
'+exclude_from_local_holds_priority' => { is_boolean => 1 }, |
1033 |
'+exclude_from_local_holds_priority' => { is_boolean => 1 }, |
1034 |
'+itemlost' => { is_boolean => 1 }, |
1034 |
'+itemlost' => { is_boolean => 0 }, |
1035 |
'+notforloan' => { is_boolean => 1 }, |
1035 |
'+notforloan' => { is_boolean => 0 }, |
1036 |
'+restricted' => { is_boolean => 1 }, |
1036 |
'+restricted' => { is_boolean => 0 }, |
1037 |
'+stack' => { is_boolean => 1 }, |
1037 |
'+stack' => { is_boolean => 0 }, |
1038 |
'+withdrawn' => { is_boolean => 1 }, |
1038 |
'+withdrawn' => { is_boolean => 0 }, |
1039 |
); |
1039 |
); |
1040 |
|
1040 |
|
1041 |
# Relationship with orders via the aqorders_item table that not have foreign keys |
1041 |
# Relationship with orders via the aqorders_item table that not have foreign keys |