View | Details | Raw Unified | Return to bug 32435
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_32435.pl (+14 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number => "32435",
5
    description => "Add ticket resolutions to catalog concerns",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        $dbh->do(q{
10
            INSERT IGNORE INTO authorised_value_categories( category_name, is_system ) VALUES ('TICKET_RESOLUTION', 1);
11
        });
12
        say $out "Added TICKET_RESOLUTION authorised value category";
13
    },
14
};
(-)a/installer/data/mysql/mandatory/auth_val_cat.sql (-1 / +2 lines)
Lines 99-102 VALUES Link Here
99
-- For ticket statuses
99
-- For ticket statuses
100
INSERT IGNORE INTO authorised_value_categories (category_name, is_system)
100
INSERT IGNORE INTO authorised_value_categories (category_name, is_system)
101
VALUES
101
VALUES
102
    ('TICKET_STATUS', 1);
102
    ('TICKET_STATUS', 1),
103
    ('TICKET_RESOLUTION', 1);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-1 / +2 lines)
Lines 506-511 Link Here
506
            <p>Terms to be used in Course Reserves module. Enter terms that will show in the drop down menu when setting up a Course reserve. (For example: Spring, Summer, Winter, Fall).</p>
506
            <p>Terms to be used in Course Reserves module. Enter terms that will show in the drop down menu when setting up a Course reserve. (For example: Spring, Summer, Winter, Fall).</p>
507
        [% CASE 'TICKET_STATUS' %]
507
        [% CASE 'TICKET_STATUS' %]
508
            <p>A list of custom status values for tickets that can be used in addition to the default values of "New" and "Resolved".</p>
508
            <p>A list of custom status values for tickets that can be used in addition to the default values of "New" and "Resolved".</p>
509
        [% CASE 'TICKET_RESOLUTION' %]
510
            <p>A list of custom resolution values for tickets that can be used in addition to the standard "Resolved".</p>
509
        [% CASE 'UPLOAD' %]
511
        [% CASE 'UPLOAD' %]
510
            <p>Categories to be assigned to file uploads. Without a category an upload is considered temporary and may be removed during automated cleanup.</p>
512
            <p>Categories to be assigned to file uploads. Without a category an upload is considered temporary and may be removed during automated cleanup.</p>
511
        [% CASE 'VENDOR_TYPE' %]
513
        [% CASE 'VENDOR_TYPE' %]
512
- 

Return to bug 32435