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

(-)a/Koha/ILL/Backend/Standard.pm (+1 lines)
Lines 1001-1006 sub add_request { Link Here
1001
    $request->branchcode( $params->{other}->{branchcode} );
1001
    $request->branchcode( $params->{other}->{branchcode} );
1002
    $request->status( $unauthenticated_request ? 'UNAUTH' : 'NEW' );
1002
    $request->status( $unauthenticated_request ? 'UNAUTH' : 'NEW' );
1003
    $request->backend( $params->{other}->{backend} );
1003
    $request->backend( $params->{other}->{backend} );
1004
    $request->notesopac( $params->{other}->{notesopac} ) if exists $params->{other}->{notesopac};
1004
    $request->placed( dt_from_string() );
1005
    $request->placed( dt_from_string() );
1005
    $request->updated( dt_from_string() );
1006
    $request->updated( dt_from_string() );
1006
    $request->batch_id(
1007
    $request->batch_id(
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/ill/backends/Standard/create.inc (+1 lines)
Lines 103-108 Link Here
103
        [% IF type %]
103
        [% IF type %]
104
            [% INCLUDE "ill/backends/Standard/shared/forms/${type}.inc" %]
104
            [% INCLUDE "ill/backends/Standard/shared/forms/${type}.inc" %]
105
        [% END %]
105
        [% END %]
106
        [% INCLUDE "ill/backends/Standard/shared/notes.inc" %]
106
        [% INCLUDE "ill/backends/Standard/shared/custom_fields.inc" %]
107
        [% INCLUDE "ill/backends/Standard/shared/custom_fields.inc" %]
107
        [% IF whole.value.other.type && unauthenticated_ill && !logged_in_user %]
108
        [% IF whole.value.other.type && unauthenticated_ill && !logged_in_user %]
108
            <fieldset class="rows" id="illrequest_captcha">
109
            <fieldset class="rows" id="illrequest_captcha">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/ill/backends/Standard/shared/notes.inc (-1 / +5 lines)
Line 0 Link Here
0
- 
1
<fieldset class="rows" id="ill-standard-notes">
2
    <legend>Notes</legend>
3
    <label class="sr-only" for="notesopac">Notes:</label>
4
    <textarea name="notesopac" id="notesopac" class="form-control input-fluid">[% whole.value.other.notesopac | html %]</textarea>
5
</fieldset>

Return to bug 40105