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

(-)a/Koha/UI/Form/Builder/Biblio.pm (-1 / +1 lines)
Lines 76-82 sub generate_subfield_form { Link Here
76
    my $tagslib = $params->{tagslib};
76
    my $tagslib = $params->{tagslib};
77
    my $mandatory_z3950 = $params->{mandatory_z3950} // {};
77
    my $mandatory_z3950 = $params->{mandatory_z3950} // {};
78
78
79
    my $index_subfield = $self->create_key(); # create a specifique key for each subfield
79
    my $index_subfield = $self->create_key(); # create a specific key for each subfield
80
80
81
    # Apply optional framework default value when it is a new record,
81
    # Apply optional framework default value when it is a new record,
82
    # or when editing as new (duplicating a record),
82
    # or when editing as new (duplicating a record),
(-)a/authorities/authorities.pl (-1 / +1 lines)
Lines 102-108 builds the <input ...> entry for a subfield. Link Here
102
sub create_input {
102
sub create_input {
103
    my ( $tag, $subfield, $value, $index_tag, $rec, $authorised_values_sth, $cgi ) = @_;
103
    my ( $tag, $subfield, $value, $index_tag, $rec, $authorised_values_sth, $cgi ) = @_;
104
104
105
    my $index_subfield = CreateKey(); # create a specifique key for each subfield
105
    my $index_subfield = CreateKey(); # create a specific key for each subfield
106
106
107
    # determine maximum length; 9999 bytes per ISO 2709 except for leader and MARC21 008
107
    # determine maximum length; 9999 bytes per ISO 2709 except for leader and MARC21 008
108
    my $max_length = 9999;
108
    my $max_length = 9999;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-2 / +1 lines)
Lines 130-136 Link Here
130
                updateCosts();
130
                updateCosts();
131
            });
131
            });
132
132
133
            //We apply the fonction only for modify option
133
            //We apply the function only for modify option
134
            [% IF ( quantityrec and not subscriptionid ) %]
134
            [% IF ( quantityrec and not subscriptionid ) %]
135
                [% IF ( acqcreate ) %]
135
                [% IF ( acqcreate ) %]
136
                    $('#quantity').blur(function(){
136
                    $('#quantity').blur(function(){
137
- 

Return to bug 32484