Lines 13-22
return {
Link Here
|
13 |
say $out "Add AR_CANCELLATION category for authorised values"; |
13 |
say $out "Add AR_CANCELLATION category for authorised values"; |
14 |
|
14 |
|
15 |
$dbh->do(q{ |
15 |
$dbh->do(q{ |
16 |
INSERT IGNORE INTO authorised_values (category, authorised_value, lib) VALUES ('AR_CANCELLATION','NOT_FOUND','Item could not be located on shelves'); |
16 |
INSERT IGNORE INTO authorised_values (category, authorised_value, lib) VALUES |
17 |
}); |
17 |
('AR_CANCELLATION','NOT_FOUND','Item could not be located on shelves'), |
18 |
$dbh->do(q{ |
18 |
('AR_CANCELLATION','DAMAGED','Item was found to be too damaged to fill article request'), |
19 |
INSERT IGNORE INTO authorised_values (category, authorised_value, lib) VALUES ('AR_CANCELLATION','DAMAGED','Item was found to be too damaged to fill article request'); |
19 |
('AR_CANCELLATION','OPAC','Cancelled from the OPAC user page') |
20 |
}); |
20 |
}); |
21 |
say $out "Add AR_CANCELLATION authorised values"; |
21 |
say $out "Add AR_CANCELLATION authorised values"; |
22 |
|
22 |
|