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

(-)a/Koha/Schema/Result/Borrower.pm (-2 / +10 lines)
Lines 407-412 __PACKAGE__->table("borrowers"); Link Here
407
  default_value: 1
407
  default_value: 1
408
  is_nullable: 0
408
  is_nullable: 0
409
409
410
=head2 privacy_guarantor_checkouts
411
412
  data_type: 'tinyint'
413
  default_value: 0
414
  is_nullable: 0
415
410
=head2 primary_contact_method
416
=head2 primary_contact_method
411
417
412
  data_type: 'varchar'
418
  data_type: 'varchar'
Lines 582-587 __PACKAGE__->add_columns( Link Here
582
  { data_type => "varchar", is_nullable => 1, size => 50 },
588
  { data_type => "varchar", is_nullable => 1, size => 50 },
583
  "privacy",
589
  "privacy",
584
  { data_type => "integer", default_value => 1, is_nullable => 0 },
590
  { data_type => "integer", default_value => 1, is_nullable => 0 },
591
  "privacy_guarantor_checkouts",
592
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
585
  "primary_contact_method",
593
  "primary_contact_method",
586
  { data_type => "varchar", is_nullable => 1, size => 45 },
594
  { data_type => "varchar", is_nullable => 1, size => 45 },
587
);
595
);
Lines 1177-1184 Composing rels: L</aqorder_users> -> ordernumber Link Here
1177
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1185
__PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber");
1178
1186
1179
1187
1180
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2015-12-30 15:27:31
1188
# Created by DBIx::Class::Schema::Loader v0.07039 @ 2016-01-05 15:49:34
1181
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:q85WYjBNddrsVi2U846zOA
1189
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DtGJZ4OOnjXRfnPcvqJWMg
1182
1190
1183
__PACKAGE__->belongs_to(
1191
__PACKAGE__->belongs_to(
1184
    "guarantor",
1192
    "guarantor",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt (-1 / +1 lines)
Lines 239-245 function validate1(date) { Link Here
239
            <li><span class="label">Guarantor:</span><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorborrowernumber %]">[% guarantorsurname %][%IF ( guarantorfirstname ) %], [% guarantorfirstname %] [% END %]</a></li>
239
            <li><span class="label">Guarantor:</span><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorborrowernumber %]">[% guarantorsurname %][%IF ( guarantorfirstname ) %], [% guarantorfirstname %] [% END %]</a></li>
240
        [% END %]
240
        [% END %]
241
    [% END %]
241
    [% END %]
242
    <li><span class="label">Main contact method: </span>[% primary_contact_method %]</li>
242
    <li><span class="label" >Main contact method: </span>[% primary_contact_method %]</li>
243
</ol>
243
</ol>
244
</div>
244
</div>
245
      <div class="action">
245
      <div class="action">
(-)a/members/moremember.pl (-2 / +1 lines)
Lines 337-343 $template->param( Link Here
337
    borrowernumber  => $borrowernumber,
337
    borrowernumber  => $borrowernumber,
338
    othernames      => $data->{'othernames'},
338
    othernames      => $data->{'othernames'},
339
    categoryname    => $data->{'description'},
339
    categoryname    => $data->{'description'},
340
    primary_contact_method => $data->{'primary_contact_method'},
340
    primary_contact_method  => $data->{'primary_contact_method'},
341
    was_renewed     => $input->param('was_renewed') ? 1 : 0,
341
    was_renewed     => $input->param('was_renewed') ? 1 : 0,
342
    branch          => $branch,
342
    branch          => $branch,
343
    todaysdate      => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
343
    todaysdate      => output_pref({ dt => dt_from_string, dateformat => 'iso', dateonly => 1 }),
344
- 

Return to bug 11879