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

(-)a/Koha/ILL/Backend/Standard.pm (-13 / +14 lines)
Lines 22-30 use DateTime; Link Here
22
use File::Basename qw( dirname );
22
use File::Basename qw( dirname );
23
use C4::Installer;
23
use C4::Installer;
24
24
25
use Koha::DateUtils qw/ dt_from_string /;
25
use Koha::ILL::Requests;
26
use Koha::ILL::Requests;
26
use Koha::ILL::Request::Attribute;
27
use Koha::ILL::Request::Attribute;
27
use C4::Biblio  qw( AddBiblio );
28
use C4::Biblio qw( AddBiblio );
28
use C4::Charset qw( MarcToUTF8Record );
29
use C4::Charset qw( MarcToUTF8Record );
29
30
30
=head1 NAME
31
=head1 NAME
Lines 225-231 sub create { Link Here
225
        };
226
        };
226
    } elsif ( $stage eq 'form' ) {
227
    } elsif ( $stage eq 'form' ) {
227
228
228
        # We may be recieving a submitted form due to an additional
229
        # We may be receiving a submitted form due to an additional
229
        # custom field being added or deleted, or the material type
230
        # custom field being added or deleted, or the material type
230
        # having been changed, so check for these things
231
        # having been changed, so check for these things
231
        if ( !_can_create_request($other) ) {
232
        if ( !_can_create_request($other) ) {
Lines 383-389 sub edititem { Link Here
383
        };
384
        };
384
    } elsif ( $stage eq 'form' ) {
385
    } elsif ( $stage eq 'form' ) {
385
386
386
        # We may be recieving a submitted form due to an additional
387
        # We may be receiving a submitted form due to an additional
387
        # custom field being added or deleted, or the material type
388
        # custom field being added or deleted, or the material type
388
        # having been changed, so check for these things
389
        # having been changed, so check for these things
389
        if (   defined $other->{'add_new_custom'}
390
        if (   defined $other->{'add_new_custom'}
Lines 452-458 sub edititem { Link Here
452
453
453
        # ...Update Illrequest
454
        # ...Update Illrequest
454
        my $request = $params->{request};
455
        my $request = $params->{request};
455
        $request->updated( DateTime->now );
456
        $request->updated( dt_from_string() );
456
        $request->store;
457
        $request->store;
457
458
458
        # ...Populate Illrequestattributes
459
        # ...Populate Illrequestattributes
Lines 638-644 sub migrate { Link Here
638
639
639
    my $core_fields = _get_core_string();
640
    my $core_fields = _get_core_string();
640
641
641
    # We may be recieving a submitted form due to an additional
642
    # We may be receiving a submitted form due to an additional
642
    # custom field being added or deleted, or the material type
643
    # custom field being added or deleted, or the material type
643
    # having been changed, so check for these things
644
    # having been changed, so check for these things
644
    if (   defined $other->{'add_new_custom'}
645
    if (   defined $other->{'add_new_custom'}
Lines 679-685 sub migrate { Link Here
679
        };
680
        };
680
    }
681
    }
681
682
682
    # Recieve a new request from another backend and suppliment it with
683
    # Receive a new request from another backend and supplement it with
683
    # anything we require specifically for this backend.
684
    # anything we require specifically for this backend.
684
    if ( !$stage || $stage eq 'immigrate' ) {
685
    if ( !$stage || $stage eq 'immigrate' ) {
685
        my $original_request = Koha::ILL::Requests->find( $other->{illrequest_id} );
686
        my $original_request = Koha::ILL::Requests->find( $other->{illrequest_id} );
Lines 688-695 sub migrate { Link Here
688
        $new_request->branchcode( $original_request->branchcode );
689
        $new_request->branchcode( $original_request->branchcode );
689
        $new_request->status('NEW');
690
        $new_request->status('NEW');
690
        $new_request->backend( $self->name );
691
        $new_request->backend( $self->name );
691
        $new_request->placed( DateTime->now );
692
        $new_request->placed( dt_from_string() );
692
        $new_request->updated( DateTime->now );
693
        $new_request->updated( dt_from_string() );
693
        $new_request->store;
694
        $new_request->store;
694
695
695
        my @default_attributes = (qw/title type author year volume isbn issn article_title article_author pages/);
696
        my @default_attributes = (qw/title type author year volume isbn issn article_title article_author pages/);
Lines 972-979 sub add_request { Link Here
972
    $request->branchcode( $params->{other}->{branchcode} );
973
    $request->branchcode( $params->{other}->{branchcode} );
973
    $request->status('NEW');
974
    $request->status('NEW');
974
    $request->backend( $params->{other}->{backend} );
975
    $request->backend( $params->{other}->{backend} );
975
    $request->placed( DateTime->now );
976
    $request->placed( dt_from_string() );
976
    $request->updated( DateTime->now );
977
    $request->updated( dt_from_string() );
977
    $request->batch_id(
978
    $request->batch_id(
978
        $params->{other}->{ill_batch_id} ? $params->{other}->{ill_batch_id} : $params->{other}->{batch_id} )
979
        $params->{other}->{ill_batch_id} ? $params->{other}->{ill_batch_id} : $params->{other}->{batch_id} )
979
        if column_exists( 'illrequests', 'batch_id' );
980
        if column_exists( 'illrequests', 'batch_id' );
Lines 1151-1159 sub _standard_request2biblio { Link Here
1151
    return 0 unless $metadata->{type} eq 'book';
1152
    return 0 unless $metadata->{type} eq 'book';
1152
1153
1153
    # We're going to try and populate author, title & ISBN
1154
    # We're going to try and populate author, title & ISBN
1154
    my $author = $metadata->{author} if $metadata->{author};
1155
    my $author = $metadata->{author} // '';
1155
    my $title  = $metadata->{title}  if $metadata->{title};
1156
    my $title  = $metadata->{title}  // '';
1156
    my $isbn   = $metadata->{isbn}   if $metadata->{isbn};
1157
    my $isbn   = $metadata->{isbn}   // '';
1157
1158
1158
    # Create the MARC::Record object and populate
1159
    # Create the MARC::Record object and populate
1159
    my $record = MARC::Record->new();
1160
    my $record = MARC::Record->new();
(-)a/Koha/ILL/Backend/intra-includes/cancel.inc (-4 / +3 lines)
Lines 9-17 Link Here
9
<p>If you can confirm this has been done, please proceed.</p>
9
<p>If you can confirm this has been done, please proceed.</p>
10
<p>
10
<p>
11
  [% base_url = "/cgi-bin/koha/ill/ill-requests.pl" %]
11
  [% base_url = "/cgi-bin/koha/ill/ill-requests.pl" %]
12
  [% proceed_url = base_url _ "?method=cancel&stage=confirm" _
12
  [% proceed_url = base_url _ "?method=cancel&stage=confirm" _ "&illrequest_id=" _ request.illrequest_id %]
13
                   "&illrequest_id=" _ request.illrequest_id %]
13
  <a class="btn btn-sm btn-default" href="[% proceed_url | url %]">Revert request</a>
14
  <a class="btn btn-sm btn-default" href="[% proceed_url %]">Revert request</a>
14
  <a class="btn btn-sm btn-default cancel" href="[% base_url | url %]">Cancel</a>
15
  <a class="btn btn-sm btn-default cancel" href="[% base_url %]">Cancel</a>
16
</p>
15
</p>
17
[% END %]
16
[% END %]
(-)a/Koha/ILL/Backend/intra-includes/confirm.inc (-4 / +3 lines)
Lines 9-18 Link Here
9
<p>If you can confirm this has been done, please proceed.</p>
9
<p>If you can confirm this has been done, please proceed.</p>
10
<p>
10
<p>
11
  [% base_url = "/cgi-bin/koha/ill/ill-requests.pl" %]
11
  [% base_url = "/cgi-bin/koha/ill/ill-requests.pl" %]
12
  [% proceed_url = base_url _ "?method=confirm&stage=confirm" _
12
  [% proceed_url = base_url _ "?method=confirm&stage=confirm" _ "&illrequest_id=" _ request.illrequest_id %]
13
                   "&illrequest_id=" _ request.illrequest_id %]
13
  <a class="btn btn-sm btn-default" href="[% proceed_url | url %]">Confirm request</a>
14
  <a class="btn btn-sm btn-default" href="[% proceed_url %]">Confirm request</a>
14
  <a class="btn btn-sm btn-default cancel" href="[% base_url | url %]">Cancel</a>
15
  <a class="btn btn-sm btn-default cancel" href="[% base_url %]">Cancel</a>
16
</p>
15
</p>
17
[% ELSE %]
16
[% ELSE %]
18
<p>Unknown stage.  This should not have happened.
17
<p>Unknown stage.  This should not have happened.
(-)a/Koha/ILL/Backend/intra-includes/create.inc (-12 / +12 lines)
Lines 15-21 Link Here
15
15
16
[% IF whole.stage == "form" %]
16
[% IF whole.stage == "form" %]
17
<h2>Create a manual ILL request</h2>
17
<h2>Create a manual ILL request</h2>
18
<form id="create_form" method="POST" action=[% here %]>
18
<form id="create_form" method="POST" action="">
19
  <fieldset class="rows">
19
  <fieldset class="rows">
20
    <legend>General details</legend>
20
    <legend>General details</legend>
21
    <ol id="general-standard-fields">
21
    <ol id="general-standard-fields">
Lines 93-100 Link Here
93
        <select id="branchcode" name="branchcode">
93
        <select id="branchcode" name="branchcode">
94
          <option value="" />
94
          <option value="" />
95
          [% FOREACH branch IN branches %]
95
          [% FOREACH branch IN branches %]
96
            <option value="[% branch.branchcode %]">
96
            <option value="[% branch.branchcode | html %]">
97
              [% branch.branchname %]
97
              [% branch.branchname | html %]
98
            </option>
98
            </option>
99
          [% END %]
99
          [% END %]
100
        </select>
100
        </select>
Lines 110-116 Link Here
110
  <input type="hidden" name="backend" value="Standard" />
110
  <input type="hidden" name="backend" value="Standard" />
111
</form>
111
</form>
112
[% BLOCK backend_jsinclude %]
112
[% BLOCK backend_jsinclude %]
113
<script type="text/javascript">
113
<script>
114
    // <![CDATA[]
114
    // <![CDATA[]
115
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
115
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
116
    // Require a username and branch selection
116
    // Require a username and branch selection
Lines 157-178 Link Here
157
[% ELSIF whole.stage == "borrowers" %]
157
[% ELSIF whole.stage == "borrowers" %]
158
<!-- We need to clarify the borrower that has been requested. -->
158
<!-- We need to clarify the borrower that has been requested. -->
159
<h2>Borrower selection</h2>
159
<h2>Borrower selection</h2>
160
<form method="POST" action=[% here %]>
160
<form method="POST" action="">
161
  [% FOREACH prop IN whole.value.other.keys %]
161
  [% FOREACH prop IN whole.value.other.keys %]
162
    [% IF prop != 'custom_key' &&  prop != 'custom_value' && prop != 'cardnumber' %]
162
    [% IF prop != 'custom_key' &&  prop != 'custom_value' && prop != 'cardnumber' %]
163
    <input type="hidden" name="[% prop %]" value="[% whole.value.other.$prop %]">
163
    <input type="hidden" name="[% prop | html %]" value="[% whole.value.other.$prop | html %]">
164
    [% END %]
164
    [% END %]
165
  [% END %]
165
  [% END %]
166
  [% keys = whole.value.other.custom_key.split('\0') %]
166
  [% keys = whole.value.other.custom_key.split('\0') %]
167
  [% values = whole.value.other.custom_value.split('\0') %]
167
  [% values = whole.value.other.custom_value.split('\0') %]
168
  [% i = 0 %]
168
  [% i = 0 %]
169
  [% FOREACH key IN keys %]
169
  [% FOREACH key IN keys %]
170
    <input type="hidden" name="custom_key" value="[% key %]">
170
    <input type="hidden" name="custom_key" value="[% key | html %]">
171
    <input type="hidden" name="custom_value" value="[% values.$i %]">
171
    <input type="hidden" name="custom_value" value="[% values.$i | html %]">
172
  [% i = i + 1 %]
172
  [% i = i + 1 %]
173
  [% END %]
173
  [% END %]
174
  <fieldset class="rows">
174
  <fieldset class="rows">
175
    <legend>Available borrowers for surname [% surname %]</legend>
175
    <legend>Available borrowers for surname [% surname | html %]</legend>
176
    [% FOREACH opt IN whole.value %]
176
    [% FOREACH opt IN whole.value %]
177
    [% IF opt.key == "brw" %]
177
    [% IF opt.key == "brw" %]
178
    <ol>
178
    <ol>
Lines 181-188 Link Here
181
        <select name="cardnumber" id="cardnumber">
181
        <select name="cardnumber" id="cardnumber">
182
          <option value=""></option>
182
          <option value=""></option>
183
          [% FOREACH brw IN opt.value %]
183
          [% FOREACH brw IN opt.value %]
184
          <option value="[% brw.cardnumber %]">
184
          <option value="[% brw.cardnumber | html %]">
185
            [% brw.firstname %] [% brw.surname %] ([% brw.cardnumber %])
185
            [% brw.firstname | html %] [% brw.surname | html %] ([% brw.cardnumber | html %])
186
          </option>
186
          </option>
187
          [% END %]
187
          [% END %]
188
        </select>
188
        </select>
Lines 193-199 Link Here
193
  </fieldset>
193
  </fieldset>
194
  <fieldset class="action">
194
  <fieldset class="action">
195
    <input type="submit" value="Select"/>
195
    <input type="submit" value="Select"/>
196
    <a class="cancel" href=[% parent %]>Cancel</a>
196
    <a class="cancel" href=[% parent | url %]>Cancel</a>
197
  </fieldset>
197
  </fieldset>
198
</form>
198
</form>
199
199
(-)a/Koha/ILL/Backend/intra-includes/edititem.inc (-79 / +83 lines)
Lines 6-88 Link Here
6
[% END %]
6
[% END %]
7
[% END %]
7
[% END %]
8
8
9
<h2>Edit a manual ILL request</h2>
9
[% IF whole.stage == "form" %]
10
<form id="standard_edit_form" method="POST" action=[% here %]>
10
  <h2>Edit a manual ILL request</h2>
11
  <fieldset class="rows">
11
  <form id="standard_edit_form" method="POST" action="">
12
    <legend>General details</legend>
12
    <fieldset class="rows">
13
    <ol id="general-standard-fields">
13
      <legend>General details</legend>
14
      <li>
14
      <ol id="general-standard-fields">
15
        <label class="required" for="type">Type:</label>
15
        <li>
16
        <select name="type" id="type">
16
          <label class="required" for="type">Type:</label>
17
          <option value=""/>
17
          <select name="type" id="type">
18
          [% IF whole.value.other.type.lower == "book" %]
18
            <option value=""/>
19
          <option value="book" selected="selected">Book</option>
19
            [% IF whole.value.other.type.lower == "book" %]
20
          [% ELSE %]
20
            <option value="book" selected="selected">Book</option>
21
          <option value="book">Book</option>
21
            [% ELSE %]
22
          [% END %]
22
            <option value="book">Book</option>
23
          [% IF whole.value.other.type.lower == "chapter" %]
23
            [% END %]
24
          <option value="chapter" selected="selected">Chapter</option>
24
            [% IF whole.value.other.type.lower == "chapter" %]
25
          [% ELSE %]
25
            <option value="chapter" selected="selected">Chapter</option>
26
          <option value="chapter">Chapter</option>
26
            [% ELSE %]
27
          [% END %]
27
            <option value="chapter">Chapter</option>
28
          [% IF whole.value.other.type.lower == "journal" %]
28
            [% END %]
29
          <option value="journal" selected="selected">Journal</option>
29
            [% IF whole.value.other.type.lower == "journal" %]
30
          [% ELSE %]
30
            <option value="journal" selected="selected">Journal</option>
31
          <option value="journal">Journal</option>
31
            [% ELSE %]
32
          [% END %]
32
            <option value="journal">Journal</option>
33
          [% IF whole.value.other.type.lower == "article" %]
33
            [% END %]
34
          <option value="article" selected="selected">Journal article</option>
34
            [% IF whole.value.other.type.lower == "article" %]
35
          [% ELSE %]
35
            <option value="article" selected="selected">Journal article</option>
36
          <option value="article">Journal article</option>
36
            [% ELSE %]
37
          [% END %]
37
            <option value="article">Journal article</option>
38
          [% IF whole.value.other.type.lower == "thesis" %]
38
            [% END %]
39
          <option value="thesis" selected="selected">Thesis</option>
39
            [% IF whole.value.other.type.lower == "thesis" %]
40
          [% ELSE %]
40
            <option value="thesis" selected="selected">Thesis</option>
41
          <option value="thesis">Thesis</option>
41
            [% ELSE %]
42
          [% END %]
42
            <option value="thesis">Thesis</option>
43
          [% IF whole.value.other.type.lower == "conference" %]
43
            [% END %]
44
          <option value="conference" selected="selected">Conference</option>
44
            [% IF whole.value.other.type.lower == "conference" %]
45
          [% ELSE %]
45
            <option value="conference" selected="selected">Conference</option>
46
          <option value="conference">Conference</option>
46
            [% ELSE %]
47
          [% END %]
47
            <option value="conference">Conference</option>
48
          [% IF whole.value.other.type.lower == "dvd" %]
48
            [% END %]
49
          <option value="dvd" selected="selected">DVD</option>
49
            [% IF whole.value.other.type.lower == "dvd" %]
50
          [% ELSE %]
50
            <option value="dvd" selected="selected">DVD</option>
51
          <option value="dvd">DVD</option>
51
            [% ELSE %]
52
          [% END %]
52
            <option value="dvd">DVD</option>
53
          [% IF whole.value.other.type.lower == "other" %]
53
            [% END %]
54
          <option value="other" selected="selected">Other</option>
54
            [% IF whole.value.other.type.lower == "other" %]
55
          [% ELSE %]
55
            <option value="other" selected="selected">Other</option>
56
          <option value="other">Other</option>
56
            [% ELSE %]
57
          [% END %]
57
            <option value="other">Other</option>
58
          [% IF whole.value.other.type.lower == "resource" %]
58
            [% END %]
59
          <option value="resource" selected="selected">Generic resource</option>
59
            [% IF whole.value.other.type.lower == "resource" %]
60
          [% ELSE %]
60
            <option value="resource" selected="selected">Generic resource</option>
61
          <option value="resource">Generic resource</option>
61
            [% ELSE %]
62
          [% END %]
62
            <option value="resource">Generic resource</option>
63
        </select>
63
            [% END %]
64
      </li>
64
          </select>
65
    </ol>
65
        </li>
66
  </fieldset>
66
      </ol>
67
  [% cwd = whole.cwd %]
67
    </fieldset>
68
  [% type = whole.value.other.type %]
68
    [% cwd = whole.cwd %]
69
  [% IF type %]
69
    [% type = whole.value.other.type %]
70
      [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
70
    [% IF type %]
71
        [% INCLUDE "${cwd}/shared-includes/forms/${type}.inc" %]
72
    [% END %]
73
    [% INCLUDE "${cwd}/shared-includes/custom_fields.inc" %]
74
    <fieldset class="action">
75
      <input id="ill-submit" type="submit" value="Update"/>
76
      <a class="cancel" href="/cgi-bin/koha/ill/ill-requests.pl">Cancel</a>
77
    </fieldset>
78
    <input type="hidden" name="illrequest_id" value="[% whole.value.other.illrequest_id | html %]" />
79
    <input type="hidden" name="method" value="edititem" />
80
    <input type="hidden" name="stage" value="form" />
81
    <input type="hidden" name="backend" value="Standard" />
82
  </form>
83
  [% BLOCK backend_jsinclude %]
84
  <script>
85
      // <![CDATA[]
86
      [% INCLUDE "${cwd}/shared-includes/shared.js" %]
87
      // ]]>
88
  </script>
71
  [% END %]
89
  [% END %]
72
  [% INCLUDE "${cwd}/shared-includes/custom_fields.inc" %]
90
[% ELSE %]
73
  <fieldset class="action">
91
  <p>Unknown stage.  This should not have happened.
74
    <input id="ill-submit" type="submit" value="Update"/>
92
[% END %]
75
    <a class="cancel" href="/cgi-bin/koha/ill/ill-requests.pl">Cancel</a>
76
  </fieldset>
77
  <input type="hidden" name="illrequest_id" value="[% whole.value.other.illrequest_id %]" />
78
  <input type="hidden" name="method" value="edititem" />
79
  <input type="hidden" name="stage" value="form" />
80
  <input type="hidden" name="backend" value="Standard" />
81
</form>
82
[% BLOCK backend_jsinclude %]
83
<script type="text/javascript">
84
    // <![CDATA[]
85
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
86
    // ]]>
87
</script>
88
[% END %]
(-)a/Koha/ILL/Backend/intra-includes/migrate.inc (-4 / +4 lines)
Lines 14-20 Link Here
14
14
15
[% IF whole.stage == "form" %]
15
[% IF whole.stage == "form" %]
16
<h2>Migrating an ILL request</h2>
16
<h2>Migrating an ILL request</h2>
17
<form id="standard_migrate_form" method="POST" action=[% here %]>
17
<form id="standard_migrate_form" method="POST" action="">
18
  <fieldset class="rows">
18
  <fieldset class="rows">
19
    <legend>General details</legend>
19
    <legend>General details</legend>
20
    <ol id="general-standard-fields">
20
    <ol id="general-standard-fields">
Lines 92-99 Link Here
92
        <select id="branchcode" name="branchcode">
92
        <select id="branchcode" name="branchcode">
93
          <option value="" />
93
          <option value="" />
94
          [% FOREACH branch IN branches %]
94
          [% FOREACH branch IN branches %]
95
            <option value="[% branch.branchcode %]">
95
            <option value="[% branch.branchcode | html %]">
96
              [% branch.branchname %]
96
              [% branch.branchname | html %]
97
            </option>
97
            </option>
98
          [% END %]
98
          [% END %]
99
        </select>
99
        </select>
Lines 106-112 Link Here
106
  </fieldset>
106
  </fieldset>
107
</form>
107
</form>
108
[% BLOCK backend_jsinclude %]
108
[% BLOCK backend_jsinclude %]
109
<script type="text/javascript">
109
<script>
110
    // <![CDATA[]
110
    // <![CDATA[]
111
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
111
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
112
    // ]]>
112
    // ]]>
(-)a/Koha/ILL/Backend/opac-includes/create.inc (-6 / +6 lines)
Lines 14-20 Link Here
14
14
15
[% IF whole.stage == "form" %]
15
[% IF whole.stage == "form" %]
16
<h2>Create a manual ILL request</h2>
16
<h2>Create a manual ILL request</h2>
17
<form id="create_form" method="POST" action=[% here %]>
17
<form id="create_form" method="POST" action="">
18
  <fieldset class="rows">
18
  <fieldset class="rows">
19
    <legend>General details</legend>
19
    <legend>General details</legend>
20
    <ol id="general-standard-fields">
20
    <ol id="general-standard-fields">
Lines 86-97 Link Here
86
          <option value="" />
86
          <option value="" />
87
          [% FOREACH branch IN branches %]
87
          [% FOREACH branch IN branches %]
88
            [% IF whole.value.other.branchcode && branch.branchcode == whole.value.other.branchcode %]
88
            [% IF whole.value.other.branchcode && branch.branchcode == whole.value.other.branchcode %]
89
            <option value="[% branch.branchcode %]" selected>
89
            <option value="[% branch.branchcode | html %]" selected>
90
              [% branch.branchname %]
90
              [% branch.branchname | html %]
91
            </option>
91
            </option>
92
            [% ELSE %]
92
            [% ELSE %]
93
            <option value="[% branch.branchcode %]">
93
            <option value="[% branch.branchcode | html %]">
94
              [% branch.branchname %]
94
              [% branch.branchname | html %]
95
            </option>
95
            </option>
96
            [% END %]
96
            [% END %]
97
          [% END %]
97
          [% END %]
Lines 114-120 Link Here
114
114
115
[% END %]
115
[% END %]
116
[% BLOCK backend_jsinclude %]
116
[% BLOCK backend_jsinclude %]
117
<script type="text/javascript">
117
<script>
118
    // <![CDATA[]
118
    // <![CDATA[]
119
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
119
    [% INCLUDE "${cwd}/shared-includes/shared.js" %]
120
    // ]]>
120
    // ]]>
(-)a/Koha/ILL/Backend/shared-includes/custom_fields.inc (-2 / +2 lines)
Lines 6-13 Link Here
6
        [% i = 0 %]
6
        [% i = 0 %]
7
        [% FOREACH key IN keys %]
7
        [% FOREACH key IN keys %]
8
            <li class="form-horizontal">
8
            <li class="form-horizontal">
9
                <input type="text" class="custom-name" name="custom_key" value="[% key %]"><input type="text" name="custom_value" id="custom-value" value="[% values.$i %]">
9
                <input type="text" class="custom-name" name="custom_key" value="[% key | html %]"><input type="text" name="custom_value" id="custom-value" value="[% values.$i | html %]">
10
                <button value="[% i %]" name="custom_delete" type="submit" class="btn btn-danger btn-sm delete-new-field">
10
                <button value="[% i | html %]" name="custom_delete" type="submit" class="btn btn-danger btn-sm delete-new-field">
11
                    <span class="fa fa-delete"></span>Delete
11
                    <span class="fa fa-delete"></span>Delete
12
                </button></li>
12
                </button></li>
13
            </li>
13
            </li>
(-)a/Koha/ILL/Backend/shared-includes/forms/article.inc (-10 / +10 lines)
Lines 3-25 Link Here
3
    <ol id="journal-standard-fields">
3
    <ol id="journal-standard-fields">
4
        <li>
4
        <li>
5
            <label for="title">Title:</label>
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title %]" />
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
7
        </li>
8
        <li>
8
        <li>
9
            <label for="volume">Volume:</label>
9
            <label for="volume">Volume:</label>
10
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume %]" />
10
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
11
        </li>
11
        </li>
12
        <li>
12
        <li>
13
            <label for="issue">Issue number:</label>
13
            <label for="issue">Issue number:</label>
14
            <input type="text" name="issue" id="issue" value="[% whole.value.other.issue %]" />
14
            <input type="text" name="issue" id="issue" value="[% whole.value.other.issue | html %]" />
15
        </li>
15
        </li>
16
        <li>
16
        <li>
17
            <label for="year">Year:</label>
17
            <label for="year">Year:</label>
18
            <input type="text" name="year" id="year" value="[% whole.value.other.year %]" />
18
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
19
        </li>
19
        </li>
20
        <li>
20
        <li>
21
            <label for="issn">ISSN:</label>
21
            <label for="issn">ISSN:</label>
22
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn %]" />
22
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
23
        </li>
23
        </li>
24
    </ol>
24
    </ol>
25
</fieldset>
25
</fieldset>
Lines 28-50 Link Here
28
    <ol id="article-standard-fields">
28
    <ol id="article-standard-fields">
29
        <li>
29
        <li>
30
            <label for="article_title">Article title:</label>
30
            <label for="article_title">Article title:</label>
31
            <input type="text" name="article_title" id="article_title" value="[% whole.value.other.article_title %]" />
31
            <input type="text" name="article_title" id="article_title" value="[% whole.value.other.article_title | html %]" />
32
        </li>
32
        </li>
33
        <li>
33
        <li>
34
            <label for="article_author">Article author:</label>
34
            <label for="article_author">Article author:</label>
35
            <input type="text" name="article_author" id="article_author" value="[% whole.value.other.article_author %]" />
35
            <input type="text" name="article_author" id="article_author" value="[% whole.value.other.article_author | html %]" />
36
        </li>
36
        </li>
37
        <li>
37
        <li>
38
            <label for="published_date">Publication date:</label>
38
            <label for="published_date">Publication date:</label>
39
            <input type="text" name="published_date" id="published_date" value="[% whole.value.other.published_date %]" />
39
            <input type="text" name="published_date" id="published_date" value="[% whole.value.other.published_date | html %]" />
40
        </li>
40
        </li>
41
        <li>
41
        <li>
42
            <label for="pages">Pages:</label>
42
            <label for="pages">Pages:</label>
43
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages %]" />
43
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages | html %]" />
44
        </li>
44
        </li>
45
        <li>
45
        <li>
46
            <label for="doi">DOI:</label>
46
            <label for="doi">DOI:</label>
47
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi %]" />
47
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
48
        </li>
48
        </li>
49
    </ol>
49
    </ol>
50
</fieldset>
50
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/book.inc (-10 / +10 lines)
Lines 3-45 Link Here
3
    <ol id="publication-standard-fields">
3
    <ol id="publication-standard-fields">
4
        <li>
4
        <li>
5
            <label for="title">Title:</label>
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title %]" />
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
7
        </li>
8
        <li>
8
        <li>
9
            <label for="author">Author:</label>
9
            <label for="author">Author:</label>
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author %]" />
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
11
        </li>
11
        </li>
12
        <li>
12
        <li>
13
            <label for="editor">Editor:</label>
13
            <label for="editor">Editor:</label>
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor %]" />
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor | html %]" />
15
        </li>
15
        </li>
16
        <li>
16
        <li>
17
            <label for="publisher">Publisher:</label>
17
            <label for="publisher">Publisher:</label>
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher %]" />
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher | html %]" />
19
        </li>
19
        </li>
20
        <li>
20
        <li>
21
            <label for="published_place">Place of publication:</label>
21
            <label for="published_place">Place of publication:</label>
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place %]" />
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place | html %]" />
23
        </li>
23
        </li>
24
        <li>
24
        <li>
25
            <label for="year">Year:</label>
25
            <label for="year">Year:</label>
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year %]" />
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
27
        </li>
27
        </li>
28
        <li>
28
        <li>
29
            <label for="part_edition">Part / Edition:</label>
29
            <label for="part_edition">Part / Edition:</label>
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition %]" />
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
31
        </li>
31
        </li>
32
        <li>
32
        <li>
33
            <label for="volume">Volume:</label>
33
            <label for="volume">Volume:</label>
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume %]" />
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
35
        </li>
35
        </li>
36
        <li>
36
        <li>
37
            <label for="isbn">ISBN:</label>
37
            <label for="isbn">ISBN:</label>
38
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn %]" />
38
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
39
        </li>
39
        </li>
40
        <li>
40
        <li>
41
            <label for="doi">DOI:</label>
41
            <label for="doi">DOI:</label>
42
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi %]" />
42
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
43
        </li>
43
        </li>
44
    </ol>
44
    </ol>
45
</fieldset>
45
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/chapter.inc (-13 / +13 lines)
Lines 3-45 Link Here
3
    <ol id="publication-standard-fields">
3
    <ol id="publication-standard-fields">
4
        <li>
4
        <li>
5
            <label for="title">Title:</label>
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title %]" />
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
7
        </li>
8
        <li>
8
        <li>
9
            <label for="author">Author:</label>
9
            <label for="author">Author:</label>
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author %]" />
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
11
        </li>
11
        </li>
12
        <li>
12
        <li>
13
            <label for="editor">Editor:</label>
13
            <label for="editor">Editor:</label>
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor %]" />
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor | html %]" />
15
        </li>
15
        </li>
16
        <li>
16
        <li>
17
            <label for="publisher">Publisher:</label>
17
            <label for="publisher">Publisher:</label>
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher %]" />
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher | html %]" />
19
        </li>
19
        </li>
20
        <li>
20
        <li>
21
            <label for="published_place">Place of publication:</label>
21
            <label for="published_place">Place of publication:</label>
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place %]" />
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place | html %]" />
23
        </li>
23
        </li>
24
        <li>
24
        <li>
25
            <label for="year">Year:</label>
25
            <label for="year">Year:</label>
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year %]" />
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
27
        </li>
27
        </li>
28
        <li>
28
        <li>
29
            <label for="part_edition">Part / Edition:</label>
29
            <label for="part_edition">Part / Edition:</label>
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition %]" />
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
31
        </li>
31
        </li>
32
        <li>
32
        <li>
33
            <label for="volume">Volume:</label>
33
            <label for="volume">Volume:</label>
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume %]" />
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
35
        </li>
35
        </li>
36
        <li>
36
        <li>
37
            <label for="isbn">ISBN:</label>
37
            <label for="isbn">ISBN:</label>
38
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn %]" />
38
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
39
        </li>
39
        </li>
40
        <li>
40
        <li>
41
            <label for="doi">DOI:</label>
41
            <label for="doi">DOI:</label>
42
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi %]" />
42
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
43
        </li>
43
        </li>
44
    </ol>
44
    </ol>
45
</fieldset>
45
</fieldset>
Lines 48-62 Link Here
48
    <ol id="chapter-standard-fields">
48
    <ol id="chapter-standard-fields">
49
        <li>
49
        <li>
50
            <label for="chapter_author">Author:</label>
50
            <label for="chapter_author">Author:</label>
51
            <input type="text" name="chapter_author" id="chapter_author" value="[% whole.value.other.chapter_author %]" />
51
            <input type="text" name="chapter_author" id="chapter_author" value="[% whole.value.other.chapter_author | html %]" />
52
        </li>
52
        </li>
53
        <li>
53
        <li>
54
            <label for="chapter">Chapter:</label>
54
            <label for="chapter">Chapter:</label>
55
            <input type="text" name="chapter" id="chapter" value="[% whole.value.other.chapter %]" />
55
            <input type="text" name="chapter" id="chapter" value="[% whole.value.other.chapter | html %]" />
56
        </li>
56
        </li>
57
        <li>
57
        <li>
58
            <label for="pages">Pages:</label>
58
            <label for="pages">Pages:</label>
59
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages %]" />
59
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages | html %]" />
60
        </li>
60
        </li>
61
    </ol>
61
    </ol>
62
</fieldset>
62
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/conference.inc (-11 / +11 lines)
Lines 3-49 Link Here
3
    <ol id="conference-standard-fields">
3
    <ol id="conference-standard-fields">
4
        <li>
4
        <li>
5
            <label for="title">Conference title:</label>
5
            <label for="title">Conference title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title %]" />
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
7
        </li>
8
        <li>
8
        <li>
9
            <label for="publication">Publication:</label>
9
            <label for="publication">Publication:</label>
10
            <input type="text" name="publication" id="publication" value="[% whole.value.other.publication %]" />
10
            <input type="text" name="publication" id="publication" value="[% whole.value.other.publication | html %]" />
11
        </li>
11
        </li>
12
        <li>
12
        <li>
13
            <label for="conference_date">Conference date:</label>
13
            <label for="conference_date">Conference date:</label>
14
            <input type="text" name="conference_date" id="conference_date" value="[% whole.value.other.conference_date %]" />
14
            <input type="text" name="conference_date" id="conference_date" value="[% whole.value.other.conference_date | html %]" />
15
        </li>
15
        </li>
16
        <li>
16
        <li>
17
            <label for="venue">Venue:</label>
17
            <label for="venue">Venue:</label>
18
            <input type="text" name="venue" id="venue" value="[% whole.value.other.venue %]" />
18
            <input type="text" name="venue" id="venue" value="[% whole.value.other.venue | html %]" />
19
        </li>
19
        </li>
20
        <li>
20
        <li>
21
            <label for="sponsor">Sponsor:</label>
21
            <label for="sponsor">Sponsor:</label>
22
            <input type="text" name="sponsor" id="sponsor" value="[% whole.value.other.sponsor %]" />
22
            <input type="text" name="sponsor" id="sponsor" value="[% whole.value.other.sponsor | html %]" />
23
        </li>
23
        </li>
24
        <li>
24
        <li>
25
            <label for="volume">Volume:</label>
25
            <label for="volume">Volume:</label>
26
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume %]" />
26
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
27
        </li>
27
        </li>
28
        <li>
28
        <li>
29
            <label for="isbn">ISBN:</label>
29
            <label for="isbn">ISBN:</label>
30
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn %]" />
30
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
31
        </li>
31
        </li>
32
        <li>
32
        <li>
33
            <label for="issn">ISSN:</label>
33
            <label for="issn">ISSN:</label>
34
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn %]" />
34
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
35
        </li>
35
        </li>
36
        <li>
36
        <li>
37
            <label for="part_edition">Part:</label>
37
            <label for="part_edition">Part:</label>
38
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition %]" />
38
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
39
        </li>
39
        </li>
40
        <li>
40
        <li>
41
            <label for="paper_title">Paper title:</label>
41
            <label for="paper_title">Paper title:</label>
42
            <input type="text" name="paper_title" id="paper_title" value="[% whole.value.other.paper_title %]" />
42
            <input type="text" name="paper_title" id="paper_title" value="[% whole.value.other.paper_title | html %]" />
43
        </li>
43
        </li>
44
        <li>
44
        <li>
45
            <label for="paper_author">Paper author:</label>
45
            <label for="paper_author">Paper author:</label>
46
            <input type="text" name="paper_author" id="paper_author" value="[% whole.value.other.paper_author %]" />
46
            <input type="text" name="paper_author" id="paper_author" value="[% whole.value.other.paper_author | html %]" />
47
        </li>
47
        </li>
48
    </ol>
48
    </ol>
49
</fieldset>
49
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/journal.inc (-6 / +6 lines)
Lines 3-29 Link Here
3
    <ol id="journal-standard-fields">
3
    <ol id="journal-standard-fields">
4
        <li>
4
        <li>
5
            <label for="title">Title:</label>
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title %]" />
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
7
        </li>
8
        <li>
8
        <li>
9
            <label for="volume">Volume:</label>
9
            <label for="volume">Volume:</label>
10
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume %]" />
10
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
11
        </li>
11
        </li>
12
        <li>
12
        <li>
13
            <label for="issue">Issue number:</label>
13
            <label for="issue">Issue number:</label>
14
            <input type="text" name="issue" id="issue" value="[% whole.value.other.issue %]" />
14
            <input type="text" name="issue" id="issue" value="[% whole.value.other.issue | html %]" />
15
        </li>
15
        </li>
16
        <li>
16
        <li>
17
            <label for="year">Year:</label>
17
            <label for="year">Year:</label>
18
            <input type="text" name="year" id="year" value="[% whole.value.other.year %]" />
18
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
19
        </li>
19
        </li>
20
        <li>
20
        <li>
21
            <label for="issn">ISSN:</label>
21
            <label for="issn">ISSN:</label>
22
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn %]" />
22
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
23
        </li>
23
        </li>
24
        <li>
24
        <li>
25
            <label for="doi">DOI:</label>
25
            <label for="doi">DOI:</label>
26
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi %]" />
26
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
27
        </li>
27
        </li>
28
    </ol>
28
    </ol>
29
</fieldset>
29
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/resource.inc (-12 / +12 lines)
Lines 3-53 Link Here
3
    <ol id="resource-standard-fields">
3
    <ol id="resource-standard-fields">
4
        <li>
4
        <li>
5
            <label for="title">Title:</label>
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" value="[% whole.value.other.title %]" />
6
            <input type="text" name="title" value="[% whole.value.other.title | html %]" />
7
        </li>
7
        </li>
8
        <li>
8
        <li>
9
            <label for="author">Author:</label>
9
            <label for="author">Author:</label>
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author %]" />
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
11
        </li>
11
        </li>
12
        <li>
12
        <li>
13
            <label for="editor">Editor:</label>
13
            <label for="editor">Editor:</label>
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor %]" />
14
            <input type="text" name="editor" id="editor" value="[% whole.value.other.editor | html %]" />
15
        </li>
15
        </li>
16
        <li>
16
        <li>
17
            <label for="publisher">Publisher:</label>
17
            <label for="publisher">Publisher:</label>
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher %]" />
18
            <input type="text" name="publisher" id="publisher" value="[% whole.value.other.publisher | html %]" />
19
        </li>
19
        </li>
20
        <li>
20
        <li>
21
            <label for="published_place">Place of publication:</label>
21
            <label for="published_place">Place of publication:</label>
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place %]" />
22
            <input type="text" name="published_place" id="published_place" value="[% whole.value.other.published_place | html %]" />
23
        </li>
23
        </li>
24
        <li>
24
        <li>
25
            <label for="year">Year:</label>
25
            <label for="year">Year:</label>
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year %]" />
26
            <input type="text" name="year" id="year" value="[% whole.value.other.year | html %]" />
27
        </li>
27
        </li>
28
        <li>
28
        <li>
29
            <label for="part_edition">Part / Edition:</label>
29
            <label for="part_edition">Part / Edition:</label>
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition %]" />
30
            <input type="text" name="part_edition" id="part_edition" value="[% whole.value.other.part_edition | html %]" />
31
        </li>
31
        </li>
32
        <li>
32
        <li>
33
            <label for="volume">Volume:</label>
33
            <label for="volume">Volume:</label>
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume %]" />
34
            <input type="text" name="volume" id="volume" value="[% whole.value.other.volume | html %]" />
35
        </li>
35
        </li>
36
        <li>
36
        <li>
37
            <label for="pages">Pages:</label>
37
            <label for="pages">Pages:</label>
38
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages %]" />
38
            <input type="text" name="pages" id="pages" value="[% whole.value.other.pages | html %]" />
39
        </li>
39
        </li>
40
        <li>
40
        <li>
41
            <label for="isbn">ISBN:</label>
41
            <label for="isbn">ISBN:</label>
42
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn %]" />
42
            <input type="text" name="isbn" id="isbn" value="[% whole.value.other.isbn | html %]" />
43
        </li>
43
        </li>
44
        <li>
44
        <li>
45
            <label for "issn">ISSN:</label>
45
            <label for "issn">ISSN:</label>
46
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn %]" />
46
            <input type="text" name="issn" id="issn" value="[% whole.value.other.issn | html %]" />
47
        </li>
47
        </li>
48
        <li>
48
        <li>
49
            <label for="doi">DOI:</label>
49
            <label for="doi">DOI:</label>
50
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi %]" />
50
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
51
        </li>
51
        </li>
52
    </ol>
52
    </ol>
53
</fieldset>
53
</fieldset>
(-)a/Koha/ILL/Backend/shared-includes/forms/thesis.inc (-5 / +5 lines)
Lines 3-25 Link Here
3
    <ol id="thesis-standard-fields">
3
    <ol id="thesis-standard-fields">
4
        <li>
4
        <li>
5
            <label for="title">Title:</label>
5
            <label for="title">Title:</label>
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title %]" />
6
            <input type="text" name="title" id="title" value="[% whole.value.other.title | html %]" />
7
        </li>
7
        </li>
8
        <li>
8
        <li>
9
            <label for="author">Author:</label>
9
            <label for="author">Author:</label>
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author %]" />
10
            <input type="text" name="author" id="author" value="[% whole.value.other.author | html %]" />
11
        </li>
11
        </li>
12
        <li>
12
        <li>
13
            <label for="institution">Institution:</label>
13
            <label for="institution">Institution:</label>
14
            <input type="text" name="institution" id="institution" value="[% whole.value.other.institution %]" />
14
            <input type="text" name="institution" id="institution" value="[% whole.value.other.institution | html %]" />
15
        </li>
15
        </li>
16
        <li>
16
        <li>
17
            <label for="published_date">Publication date:</label>
17
            <label for="published_date">Publication date:</label>
18
            <input type="text" name="published_date" id="published_date" value="[% whole.value.other.published_date %]" />
18
            <input type="text" name="published_date" id="published_date" value="[% whole.value.other.published_date | html %]" />
19
        </li>
19
        </li>
20
        <li>
20
        <li>
21
            <label for="doi">DOI:</label>
21
            <label for="doi">DOI:</label>
22
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi %]" />
22
            <input type="text" name="doi" id="doi" value="[% whole.value.other.doi | html %]" />
23
        </li>
23
        </li>
24
    </ol>
24
    </ol>
25
</fieldset>
25
</fieldset>
(-)a/installer/data/mysql/atomicupdate/bug_35570.pl (-2 lines)
Lines 66-71 return { Link Here
66
            say $out "Bug 35570: Finished database update.";
66
            say $out "Bug 35570: Finished database update.";
67
        }
67
        }
68
68
69
70
    },
69
    },
71
};
70
};
72
- 

Return to bug 35570