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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt (-3 / +2 lines)
Lines 35-42 Link Here
35
                <input type="text" size="10" id="startdate" name="startdate" value="[% startdate | html %]" class="datepicker"/>
35
                <input type="text" size="10" id="startdate" name="startdate" value="[% startdate | html %]" class="datepicker"/>
36
                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
36
                <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
37
            </li>
37
            </li>
38
    <li><fieldset>
38
    <li>
39
    <legend>Subscription length:</legend>
39
    <label>Subscription length:</label>
40
    <select name="subtype" id="subtype">
40
    <select name="subtype" id="subtype">
41
        [% FOREACH st IN subtypes %]
41
        [% FOREACH st IN subtypes %]
42
            [% SWITCH st %]
42
            [% SWITCH st %]
Lines 68-74 Link Here
68
    </select>
68
    </select>
69
    <input type="text" name="sublength" id="sublength" size="3" />(enter amount in numerals)
69
    <input type="text" name="sublength" id="sublength" size="3" />(enter amount in numerals)
70
    <input type="hidden" name="issuelengthcount">
70
    <input type="hidden" name="issuelengthcount">
71
    </fieldset>
72
    </li>
71
    </li>
73
72
74
    <li><label for="branchcode">Library:</label>
73
    <li><label for="branchcode">Library:</label>
(-)a/serials/subscription-add.pl (-2 / +1 lines)
Lines 320-326 sub redirect_add_subscription { Link Here
320
    my $subtype = $query->param('subtype');
320
    my $subtype = $query->param('subtype');
321
    my $sublength = $query->param('sublength');
321
    my $sublength = $query->param('sublength');
322
    my ( $numberlength, $weeklength, $monthlength )
322
    my ( $numberlength, $weeklength, $monthlength )
323
        = C4::Serials->getsublength( $subtype, $sublength );
323
        = GetSubscriptionLength( $subtype, $sublength );
324
    my $add1              = $query->param('add1');
324
    my $add1              = $query->param('add1');
325
    my $lastvalue1        = $query->param('lastvalue1');
325
    my $lastvalue1        = $query->param('lastvalue1');
326
    my $innerloop1        = $query->param('innerloop1');
326
    my $innerloop1        = $query->param('innerloop1');
327
- 

Return to bug 7046