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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt (-1 / +1 lines)
Lines 130-136 function moneyFormat(textObj) { Link Here
130
    </tfoot>
130
    </tfoot>
131
    <tbody><tr>
131
    <tbody><tr>
132
            <td>
132
            <td>
133
                [% description %] [% title  %]
133
                [% individual_description %]
134
            </td>
134
            </td>
135
            <td>[% accounttype %]</td>
135
            <td>[% accounttype %]</td>
136
            <td>[% notify_id %]</td>
136
            <td>[% notify_id %]</td>
(-)a/members/pay.pl (+1 lines)
Lines 171-176 sub redirect_to_paycollect { Link Here
171
    $redirect .=
171
    $redirect .=
172
      get_for_redirect( 'amountoutstanding', "amountoutstanding$line_no", 1 );
172
      get_for_redirect( 'amountoutstanding', "amountoutstanding$line_no", 1 );
173
    $redirect .= get_for_redirect( 'accountno',    "accountno$line_no",    0 );
173
    $redirect .= get_for_redirect( 'accountno',    "accountno$line_no",    0 );
174
    $redirect .= get_for_redirect( 'description',    "description$line_no",    0 );
174
    $redirect .= get_for_redirect( 'title',        "title$line_no",        0 );
175
    $redirect .= get_for_redirect( 'title',        "title$line_no",        0 );
175
    $redirect .= get_for_redirect( 'itemnumber',   "itemnumber$line_no",   0 );
176
    $redirect .= get_for_redirect( 'itemnumber',   "itemnumber$line_no",   0 );
176
    $redirect .= get_for_redirect( 'notify_id',    "notify_id$line_no",    0 );
177
    $redirect .= get_for_redirect( 'notify_id',    "notify_id$line_no",    0 );
(-)a/members/paycollect.pl (-2 / +2 lines)
Lines 61-66 my $select = $input->param('selected_accts'); Link Here
61
my $payment_note = uri_unescape $input->param('payment_note');
61
my $payment_note = uri_unescape $input->param('payment_note');
62
my $accountno;
62
my $accountno;
63
my $accountlines_id;
63
my $accountlines_id;
64
64
if ( $individual || $writeoff ) {
65
if ( $individual || $writeoff ) {
65
    if ($individual) {
66
    if ($individual) {
66
        $template->param( pay_individual => 1 );
67
        $template->param( pay_individual => 1 );
Lines 86-92 if ( $individual || $writeoff ) { Link Here
86
        amountoutstanding => $amountoutstanding,
87
        amountoutstanding => $amountoutstanding,
87
        title             => $title,
88
        title             => $title,
88
        itemnumber        => $itemnumber,
89
        itemnumber        => $itemnumber,
89
        description       => $description,
90
        individual_description => $description,
90
        notify_id         => $notify_id,
91
        notify_id         => $notify_id,
91
        notify_level      => $notify_level,
92
        notify_level      => $notify_level,
92
        payment_note    => $payment_note,
93
        payment_note    => $payment_note,
93
- 

Return to bug 14605