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

(-)a/installer/data/mysql/atomicupdate/bug_32435.pl (+16 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(
10
            q{
11
            INSERT IGNORE INTO authorised_value_categories( category_name, is_system ) VALUES ('TICKET_RESOLUTION', 1);
12
        }
13
        );
14
        say $out "Added TICKET_RESOLUTION authorised value category";
15
    },
16
};
(-)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 517-522 Link Here
517
            <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>
517
            <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>
518
        [% CASE 'TICKET_STATUS' %]
518
        [% CASE 'TICKET_STATUS' %]
519
            <p>A list of custom status values for tickets that can be used in addition to the default values of "New" and "Resolved".</p>
519
            <p>A list of custom status values for tickets that can be used in addition to the default values of "New" and "Resolved".</p>
520
        [% CASE 'TICKET_RESOLUTION' %]
521
            <p>A list of custom resolution values for tickets that can be used in addition to the standard "Resolved".</p>
520
        [% CASE 'UPLOAD' %]
522
        [% CASE 'UPLOAD' %]
521
            <p>Categories to be assigned to file uploads. Without a category an upload is considered temporary and may be removed during automated cleanup.</p>
523
            <p>Categories to be assigned to file uploads. Without a category an upload is considered temporary and may be removed during automated cleanup.</p>
522
        [% CASE 'VENDOR_TYPE' %]
524
        [% CASE 'VENDOR_TYPE' %]
523
- 

Return to bug 32435