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 604-609 __PACKAGE__->add_columns( Link Here
604
    default_value => \"current_timestamp",
604
    default_value => \"current_timestamp",
605
    is_nullable => 0,
605
    is_nullable => 0,
606
  },
606
  },
607
  "primary_contact_method",
608
  { data_type => "varchar", is_nullable => 1, size => 45 },
607
);
609
);
608
610
609
=head1 PRIMARY KEY
611
=head1 PRIMARY KEY
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (+1 lines)
Lines 265-270 function validate1(date) { Link Here
265
            [% END %]
265
            [% END %]
266
        </li>
266
        </li>
267
    [% END %]
267
    [% END %]
268
    <li><span class="label">Main contact method: </span>[% primary_contact_method %]</li>
268
</ol>
269
</ol>
269
</div>
270
</div>
270
      <div class="action">
271
      <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