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

(-)a/Koha/Schema/Result/Borrower.pm (-1 / +3 lines)
Lines 401-407 __PACKAGE__->table("borrowers"); Link Here
401
  default_value: 1
401
  default_value: 1
402
  is_nullable: 0
402
  is_nullable: 0
403
403
404
=head2 privacy_guarantor_checkouts
404
=head2 primary_contact_method
405
405
406
  data_type: 'tinyint'
406
  data_type: 'tinyint'
407
  default_value: 0
407
  default_value: 0
Lines 590-595 __PACKAGE__->add_columns( Link Here
590
    default_value => \"current_timestamp",
590
    default_value => \"current_timestamp",
591
    is_nullable => 0,
591
    is_nullable => 0,
592
  },
592
  },
593
  "primary_contact_method",
594
  { data_type => "varchar", is_nullable => 1, size => 45 },
593
);
595
);
594
596
595
=head1 PRIMARY KEY
597
=head1 PRIMARY KEY
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+1 lines)
Lines 257-262 function validate1(date) { Link Here
257
            [% END %]
257
            [% END %]
258
        </li>
258
        </li>
259
    [% END %]
259
    [% END %]
260
    <li><span class="label">Main contact method: </span>[% primary_contact_method %]</li>
260
</ol>
261
</ol>
261
</div>
262
</div>
262
      <div class="action">
263
      <div class="action">
(-)a/members/moremember.pl (-2 / +2 lines)
Lines 324-330 $template->param( Link Here
324
    borrowernumber  => $borrowernumber,
324
    borrowernumber  => $borrowernumber,
325
    othernames      => $data->{'othernames'},
325
    othernames      => $data->{'othernames'},
326
    categoryname    => $data->{'description'},
326
    categoryname    => $data->{'description'},
327
    was_renewed     => scalar $input->param('was_renewed') ? 1 : 0,
327
    primary_contact_method  => $data->{'primary_contact_method'},
328
    was_renewed     => $input->param('was_renewed') ? 1 : 0,
328
    branch          => $branch,
329
    branch          => $branch,
329
    todaysdate      => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
330
    todaysdate      => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
330
    totalprice      => sprintf("%.2f", $totalprice),
331
    totalprice      => sprintf("%.2f", $totalprice),
331
- 

Return to bug 11879