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

(-)a/C4/Context.pm (-2 / +4 lines)
Lines 318-326 sub multivalue_preference { Link Here
318
    my ( $self, $preference ) = @_;
318
    my ( $self, $preference ) = @_;
319
319
320
    my $syspref = $self->preference($preference) // q{};
320
    my $syspref = $self->preference($preference) // q{};
321
    my $values  = [ split qr{\|}, $syspref ];
322
321
323
    return $values;
322
    return [ split qr{\|}, $syspref ]
323
        if $syspref =~ qr{\|};
324
325
    return [ split qr{,}, $syspref ]
324
}
326
}
325
327
326
=head2 enable_syspref_cache
328
=head2 enable_syspref_cache
(-)a/Koha/ArticleRequest.pm (-4 / +3 lines)
Lines 268-277 sub store { Link Here
268
    if ( !$self->in_storage ) {
268
    if ( !$self->in_storage ) {
269
        $self->created_on( dt_from_string() );
269
        $self->created_on( dt_from_string() );
270
    }
270
    }
271
    my $format = $self->format;
271
272
    if ( C4::Context->preference('ArticleRequestsSupportedFormats') !~ /\b$format\b/ ) {
272
    Koha::Exceptions::ArticleRequest::WrongFormat->throw
273
        Koha::Exceptions::ArticleRequest::WrongFormat->throw;
273
        unless grep { $_ eq $self->format } @{ C4::Context->multivalue_preference('ArticleRequestsSupportedFormats') };
274
    }
275
274
276
    return $self->SUPER::store;
275
    return $self->SUPER::store;
277
}
276
}
(-)a/Koha/Template/Plugin/Koha.pm (+5 lines)
Lines 70-75 sub Preference { Link Here
70
    return C4::Context->preference($pref);
70
    return C4::Context->preference($pref);
71
}
71
}
72
72
73
sub MultivaluePreference {
74
    my ( $self, $pref ) = @_;
75
    return C4::Context->multivalue_preference( $pref );
76
}
77
73
=head3 CSVDelimiter
78
=head3 CSVDelimiter
74
79
75
The delimiter option 'tabs' is stored in the DB as 'tabulation' to avoid issues
80
The delimiter option 'tabs' is stored in the DB as 'tabulation' to avoid issues
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +4 lines)
Lines 1403-1409 Circulation: Link Here
1403
        -
1403
        -
1404
            - "The following article request formats are supported:"
1404
            - "The following article request formats are supported:"
1405
            - pref: ArticleRequestsSupportedFormats
1405
            - pref: ArticleRequestsSupportedFormats
1406
            - ". Valid choices are currently: PHOTOCOPY and SCAN. Separate the supported formats by a vertical bar. The first listed format is selected by default when you request via the OPAC."
1406
              multiple_sortable:
1407
                PHOTOCOPY: Photocopy
1408
                SCAN: Scan
1409
            - "The first listed format is selected by default when you request via the OPAC."
1407
1410
1408
1411
1409
    Item bundles:
1412
    Item bundles:
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-request-article.tt (-14 / +10 lines)
Lines 154-166 Link Here
154
                                        <input type="text" name="patron_notes" id="patron_notes" size="50" />
154
                                        <input type="text" name="patron_notes" id="patron_notes" size="50" />
155
                                    </li>
155
                                    </li>
156
156
157
                                    [% SET ArticleRequestsSupportedFormats = Koha.MultivaluePreference('ArticleRequestsSupportedFormats') %]
158
                                    [% IF ArticleRequestsSupportedFormats.size %]
157
                                    <li>
159
                                    <li>
158
                                        <label for="format">Format:</label>
160
                                        <label for="format">Format:</label>
159
                                        <select name="format" id="format">
161
                                        <select name="format" id="format">
160
                                            <option value="PHOTOCOPY">Photocopy</option>
162
                                            [% FOR format IN ArticleRequestsSupportedFormats %]
161
                                            <option value="SCAN">Digital scan</option>
163
                                                [% IF format == 'PHOTOCOPY' %]
164
                                                    <option value="PHOTOCOPY">Photocopy</option>
165
                                                [% ELSIF format == 'SCAN' %]
166
                                                    <option value="SCAN">Digital scan</option>
167
                                                [% END %]
168
                                            [% END %]
162
                                        </select>
169
                                        </select>
163
                                    </li>
170
                                    </li>
171
                                    [% END %]
164
172
165
                                    [% IF AllPublicBranches.size > 1 %]
173
                                    [% IF AllPublicBranches.size > 1 %]
166
                                        <li>
174
                                        <li>
Lines 317-334 Link Here
317
        }
325
        }
318
    });
326
    });
319
327
320
    // Initialize format(s)
321
    var supported_formats = "[% Koha.Preference('ArticleRequestsSupportedFormats') | html %]";
322
    if( !supported_formats.match(/PHOTOCOPY/) )
323
        $('#format option[value="PHOTOCOPY"]').remove();
324
    if( !supported_formats.match(/SCAN/) )
325
        $('#format option[value="SCAN"]').remove();
326
327
    if( $('#format option').length > 1 ) {
328
        // Select first listed format
329
        var first_format = supported_formats.split('|')[0].replace(/^\s*|\s*$/g, '');
330
        $('#format option[value="'+first_format+'"]').attr('selected', true);
331
    }
332
});
328
});
333
</script>
329
</script>
334
[% END %]
330
[% END %]
(-)a/t/Context.t (-2 / +4 lines)
Lines 60-66 subtest 'yaml_preference() tests' => sub { Link Here
60
60
61
subtest 'multivalue_preference() tests' => sub {
61
subtest 'multivalue_preference() tests' => sub {
62
62
63
    plan tests => 3;
63
    plan tests => 4;
64
64
65
    t::lib::Mocks::mock_preference( 'MultiValuedSyspref', '' );
65
    t::lib::Mocks::mock_preference( 'MultiValuedSyspref', '' );
66
    is_deeply( C4::Context->multivalue_preference('MultiValuedSyspref'), [] );
66
    is_deeply( C4::Context->multivalue_preference('MultiValuedSyspref'), [] );
Lines 70-75 subtest 'multivalue_preference() tests' => sub { Link Here
70
70
71
    t::lib::Mocks::mock_preference( 'MultiValuedSyspref', 'some|more|values' );
71
    t::lib::Mocks::mock_preference( 'MultiValuedSyspref', 'some|more|values' );
72
    is_deeply( C4::Context->multivalue_preference('MultiValuedSyspref'), [ 'some', 'more', 'values' ] );
72
    is_deeply( C4::Context->multivalue_preference('MultiValuedSyspref'), [ 'some', 'more', 'values' ] );
73
74
    t::lib::Mocks::mock_preference( 'MultiValuedSyspref', 'some,more,values' );
75
    is_deeply( C4::Context->multivalue_preference('MultiValuedSyspref'), [ 'some', 'more', 'values' ] );
73
};
76
};
74
77
75
subtest 'needs_install() tests' => sub {
78
subtest 'needs_install() tests' => sub {
76
- 

Return to bug 36081