Koha/installer/data/mysql/mandatory/auth_val_cat.sql
Katrin Fischer 412c026101
Bug 32799: Rename ILLSTATUS authorised value category to ILL_STATUS_ALIAS
To test:
1) Activate the IllModule system preference
2) Install a backend (BLDSS or FreeForm) following the wiki instructions:
3) Configure some authorised values for ILLSTATUS
4) Apply patch
5) Run database update
6) Verify your configured values have been updated to ILL_STATUS_ALIAS
7) Add another ILL_STATUS_ALIAS: there should now be an explanation in the
   categories list
8) Go to the ILL module and add a new request
9) Edit the request, verify that your status alias show in the status list
10) Set one of your status and save
11) Verify that the ILL requests list search filters show your status alias
12) Manage the request again and verify that the ILL request log shows the
    status descriptions correctly
13) Verify the description of the ILLHiddenRequestStatuses has
    been updated with the new authorised value category

Signed-off-by: Pedro Amorim <pedro.amorim@ptfs-europe.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2023-02-27 13:08:10 -03:00

90 lines
2.3 KiB
SQL

INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
VALUES
('', 1),
('Asort1', 1),
('Asort2', 1),
('Bsort1', 1),
('Bsort2', 1),
('SUGGEST', 0),
('SUGGEST_STATUS', 0),
('SUGGEST_FORMAT', 0),
('DAMAGED', 1),
('LOST', 1),
('REPORT_GROUP', 0),
('REPORT_SUBGROUP', 0),
('DEPARTMENT', 0),
('TERM', 0),
('ITEMTYPECAT', 0),
('PAYMENT_TYPE', 0),
('PA_CLASS', 0),
('HOLD_CANCELLATION', 0),
('ROADTYPE', 0),
('AR_CANCELLATION', 0),
('VENDOR_TYPE', 1);
INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
VALUES
('branches', 1),
('itemtypes', 1),
('cn_source', 1);
INSERT IGNORE INTO authorised_value_categories( category_name, is_system )
VALUES
('WITHDRAWN', 1),
('RESTRICTED', 0),
('NOT_LOAN', 1),
('CCODE', 1),
('LOC', 1),
('BOR_NOTES', 1),
('OPAC_SUG', 0),
('SIP_MEDIA_TYPE', 0),
('ORDER_CANCELLATION_REASON', 0),
('RELTERMS', 0),
('YES_NO', 0),
('LANG', 0),
('HINGS_UT', 0),
('HINGS_PF', 0),
('HINGS_C', 0),
('HINGS_AS', 0),
('HINGS_RD', 0),
('STACK', 0),
('CONTROL_NUM_SEQUENCE' ,0);
-- UNIMARC specific?
INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
('ETAT'),
('CAND'),
('COUNTRY'),
('TYPEDOC'),
('qualif');
-- For Housebound
INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
('HSBND_FREQ');
-- For Interlibrary loans
INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
('ILL_STATUS_ALIAS');
-- For Claims returned
INSERT IGNORE INTO authorised_value_categories( category_name ) VALUES
('RETURN_CLAIM_RESOLUTION');
-- For file uploads
INSERT IGNORE INTO authorised_value_categories( category_name, is_system ) VALUES
('UPLOAD', 1);
-- For ERM
INSERT IGNORE INTO authorised_value_categories (category_name, is_system)
VALUES
('ERM_AGREEMENT_STATUS', 1),
('ERM_AGREEMENT_CLOSURE_REASON', 1),
('ERM_AGREEMENT_RENEWAL_PRIORITY', 1),
('ERM_USER_ROLES', 1),
('ERM_LICENSE_TYPE', 1),
('ERM_LICENSE_STATUS', 1),
('ERM_AGREEMENT_LICENSE_STATUS', 1),
('ERM_AGREEMENT_LICENSE_LOCATION', 1),
('ERM_PACKAGE_TYPE', 1),
('ERM_PACKAGE_CONTENT_TYPE', 1),
('ERM_TITLE_PUBLICATION_TYPE', 1);