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

(-)a/C4/Members.pm (+2 lines)
Lines 694-699 sub AddMember { Link Here
694
      . ",dateexpiry="  . $dbh->quote( $data{'dateexpiry'} )
694
      . ",dateexpiry="  . $dbh->quote( $data{'dateexpiry'} )
695
      . ",contactnote=" . $dbh->quote( $data{'contactnote'} )
695
      . ",contactnote=" . $dbh->quote( $data{'contactnote'} )
696
      . ",B_address="   . $dbh->quote( $data{'B_address'} )
696
      . ",B_address="   . $dbh->quote( $data{'B_address'} )
697
      . ",B_address2="   . $dbh->quote( $data{'B_address2'} )
697
      . ",B_zipcode="   . $dbh->quote( $data{'B_zipcode'} )
698
      . ",B_zipcode="   . $dbh->quote( $data{'B_zipcode'} )
698
      . ",B_country="   . $dbh->quote( $data{'B_country'} )
699
      . ",B_country="   . $dbh->quote( $data{'B_country'} )
699
      . ",B_city="      . $dbh->quote( $data{'B_city'} )
700
      . ",B_city="      . $dbh->quote( $data{'B_city'} )
Lines 722-727 sub AddMember { Link Here
722
      . ",altcontactaddress2="  . $dbh->quote( $data{'altcontactaddress2'} ) 
723
      . ",altcontactaddress2="  . $dbh->quote( $data{'altcontactaddress2'} ) 
723
      . ",altcontactaddress3="  . $dbh->quote( $data{'altcontactaddress3'} ) 
724
      . ",altcontactaddress3="  . $dbh->quote( $data{'altcontactaddress3'} ) 
724
      . ",altcontactzipcode="   . $dbh->quote( $data{'altcontactzipcode'} ) 
725
      . ",altcontactzipcode="   . $dbh->quote( $data{'altcontactzipcode'} ) 
726
      . ",altcontactcountry="   . $dbh->quote( $data{'altcontactcountry'} ) 
725
      . ",altcontactphone="     . $dbh->quote( $data{'altcontactphone'} ) ;
727
      . ",altcontactphone="     . $dbh->quote( $data{'altcontactphone'} ) ;
726
    $debug and print STDERR "AddMember SQL: ($query)\n";
728
    $debug and print STDERR "AddMember SQL: ($query)\n";
727
    my $sth = $dbh->prepare($query);
729
    my $sth = $dbh->prepare($query);
(-)a/C4/SIP/ILS/Patron.pm (+5 lines)
Lines 384-389 From borrowers table: Link Here
384
| address2            | text         | YES  |     |
384
| address2            | text         | YES  |     |
385
| city                | mediumtext   | NO   |     |
385
| city                | mediumtext   | NO   |     |
386
| zipcode             | varchar(25)  | YES  |     |
386
| zipcode             | varchar(25)  | YES  |     |
387
| country             | text         | YES  |     |
387
| email               | mediumtext   | YES  |     |
388
| email               | mediumtext   | YES  |     |
388
| phone               | text         | YES  |     |
389
| phone               | text         | YES  |     |
389
| mobile              | varchar(50)  | YES  |     |
390
| mobile              | varchar(50)  | YES  |     |
Lines 393-400 From borrowers table: Link Here
393
| B_streetnumber      | varchar(10)  | YES  |     |
394
| B_streetnumber      | varchar(10)  | YES  |     |
394
| B_streettype        | varchar(50)  | YES  |     |
395
| B_streettype        | varchar(50)  | YES  |     |
395
| B_address           | varchar(100) | YES  |     |
396
| B_address           | varchar(100) | YES  |     |
397
| B_address2          | text         | YES  |     |
396
| B_city              | mediumtext   | YES  |     |
398
| B_city              | mediumtext   | YES  |     |
397
| B_zipcode           | varchar(25)  | YES  |     |
399
| B_zipcode           | varchar(25)  | YES  |     |
400
| B_country           | text         | YES  |     |
398
| B_email             | text         | YES  |     |
401
| B_email             | text         | YES  |     |
399
| B_phone             | mediumtext   | YES  |     |
402
| B_phone             | mediumtext   | YES  |     |
400
| dateofbirth         | date         | YES  |     |
403
| dateofbirth         | date         | YES  |     |
Lines 427-433 From borrowers table: Link Here
427
| altcontactaddress2  | varchar(255) | YES  |     |
430
| altcontactaddress2  | varchar(255) | YES  |     |
428
| altcontactaddress3  | varchar(255) | YES  |     |
431
| altcontactaddress3  | varchar(255) | YES  |     |
429
| altcontactzipcode   | varchar(50)  | YES  |     |
432
| altcontactzipcode   | varchar(50)  | YES  |     |
433
| altcontactcountry   | text         | YES  |     |
430
| altcontactphone     | varchar(50)  | YES  |     |
434
| altcontactphone     | varchar(50)  | YES  |     |
435
| smsalertnumber      | varchar(50)  | YES  |     |
431
+---------------------+--------------+------+-----+
436
+---------------------+--------------+------+-----+
432
437
433
From C4::Members
438
From C4::Members
(-)a/installer/data/Pg/kohastructure.sql (-2 / +22 lines)
Lines 483-488 phonepro text, Link Here
483
B_streetnumber varchar(10) default NULL,
483
B_streetnumber varchar(10) default NULL,
484
B_streettype varchar(50) default NULL,
484
B_streettype varchar(50) default NULL,
485
B_address varchar(100) default NULL,
485
B_address varchar(100) default NULL,
486
B_address2 text default NULL,
486
B_city text,
487
B_city text,
487
B_zipcode varchar(25) default NULL,
488
B_zipcode varchar(25) default NULL,
488
B_country text,
489
B_country text,
Lines 511-517 userid varchar(30) default NULL, Link Here
511
opacnote text,
512
opacnote text,
512
contactnote varchar(255) default NULL,
513
contactnote varchar(255) default NULL,
513
sort1 varchar(80) default NULL,
514
sort1 varchar(80) default NULL,
514
sort2 varchar(80) default NULL
515
sort2 varchar(80) default NULL,
516
altcontactfirstname varchar(255) default NULL,
517
altcontactsurname varchar(255) default NULL,
518
altcontactaddress1 varchar(255) default NULL,
519
altcontactaddress2 varchar(255) default NULL,
520
altcontactaddress3 varchar(255) default NULL,
521
altcontactzipcode varchar(50) default NULL,
522
altcontactcountry text default NULL,
523
altcontactphone varchar(50) default NULL,
524
smsalertnumber varchar(50) default NULL
515
);
525
);
516
CREATE INDEX borrowers_branchcode_idx ON borrowers (branchcode);
526
CREATE INDEX borrowers_branchcode_idx ON borrowers (branchcode);
517
CREATE INDEX borrowers_borrowernumber_idx ON borrowers (borrowernumber);
527
CREATE INDEX borrowers_borrowernumber_idx ON borrowers (borrowernumber);
Lines 769-774 phonepro text, Link Here
769
B_streetnumber varchar(10) default NULL,
779
B_streetnumber varchar(10) default NULL,
770
B_streettype varchar(50) default NULL,
780
B_streettype varchar(50) default NULL,
771
B_address varchar(100) default NULL,
781
B_address varchar(100) default NULL,
782
B_address2 text default NULL,
772
B_city text,
783
B_city text,
773
B_zipcode varchar(25) default NULL,
784
B_zipcode varchar(25) default NULL,
774
B_email text,
785
B_email text,
Lines 796-802 userid varchar(30) default NULL, Link Here
796
opacnote text,
807
opacnote text,
797
contactnote varchar(255) default NULL,
808
contactnote varchar(255) default NULL,
798
sort1 varchar(80) default NULL,
809
sort1 varchar(80) default NULL,
799
sort2 varchar(80) default NULL
810
sort2 varchar(80) default NULL,
811
altcontactfirstname varchar(255) default NULL,
812
altcontactsurname varchar(255) default NULL,
813
altcontactaddress1 varchar(255) default NULL,
814
altcontactaddress2 varchar(255) default NULL,
815
altcontactaddress3 varchar(255) default NULL,
816
altcontactzipcode varchar(50) default NULL,
817
altcontactcountry text default NULL,
818
altcontactphone varchar(50) default NULL,
819
smsalertnumber varchar(50) default NULL
800
);
820
);
801
CREATE INDEX deletedborrowers_borrowernumber_idx ON deletedborrowers (borrowernumber);
821
CREATE INDEX deletedborrowers_borrowernumber_idx ON deletedborrowers (borrowernumber);
802
CREATE INDEX deletedborrowers_cardnumber_idx ON deletedborrowers (cardnumber);
822
CREATE INDEX deletedborrowers_cardnumber_idx ON deletedborrowers (cardnumber);
(-)a/installer/data/mysql/kohastructure.sql (+4 lines)
Lines 454-459 CREATE TABLE `borrowers` ( Link Here
454
  `B_streetnumber` varchar(10) default NULL,
454
  `B_streetnumber` varchar(10) default NULL,
455
  `B_streettype` varchar(50) default NULL,
455
  `B_streettype` varchar(50) default NULL,
456
  `B_address` varchar(100) default NULL,
456
  `B_address` varchar(100) default NULL,
457
  `B_address2` text default NULL,
457
  `B_city` mediumtext,
458
  `B_city` mediumtext,
458
  `B_zipcode` varchar(25) default NULL,
459
  `B_zipcode` varchar(25) default NULL,
459
  `B_country` text,
460
  `B_country` text,
Lines 489-494 CREATE TABLE `borrowers` ( Link Here
489
  `altcontactaddress2` varchar(255) default NULL,
490
  `altcontactaddress2` varchar(255) default NULL,
490
  `altcontactaddress3` varchar(255) default NULL,
491
  `altcontactaddress3` varchar(255) default NULL,
491
  `altcontactzipcode` varchar(50) default NULL,
492
  `altcontactzipcode` varchar(50) default NULL,
493
  `altcontactcountry` text default NULL,
492
  `altcontactphone` varchar(50) default NULL,
494
  `altcontactphone` varchar(50) default NULL,
493
  `smsalertnumber` varchar(50) default NULL,
495
  `smsalertnumber` varchar(50) default NULL,
494
  UNIQUE KEY `cardnumber` (`cardnumber`),
496
  UNIQUE KEY `cardnumber` (`cardnumber`),
Lines 872-877 CREATE TABLE `deletedborrowers` ( Link Here
872
  `B_streetnumber` varchar(10) default NULL,
874
  `B_streetnumber` varchar(10) default NULL,
873
  `B_streettype` varchar(50) default NULL,
875
  `B_streettype` varchar(50) default NULL,
874
  `B_address` varchar(100) default NULL,
876
  `B_address` varchar(100) default NULL,
877
  `B_address2` text default NULL,
875
  `B_city` mediumtext,
878
  `B_city` mediumtext,
876
  `B_zipcode` varchar(25) default NULL,
879
  `B_zipcode` varchar(25) default NULL,
877
  `B_country` text,
880
  `B_country` text,
Lines 907-912 CREATE TABLE `deletedborrowers` ( Link Here
907
  `altcontactaddress2` varchar(255) default NULL,
910
  `altcontactaddress2` varchar(255) default NULL,
908
  `altcontactaddress3` varchar(255) default NULL,
911
  `altcontactaddress3` varchar(255) default NULL,
909
  `altcontactzipcode` varchar(50) default NULL,
912
  `altcontactzipcode` varchar(50) default NULL,
913
  `altcontactcountry` text default NULL,
910
  `altcontactphone` varchar(50) default NULL,
914
  `altcontactphone` varchar(50) default NULL,
911
  `smsalertnumber` varchar(50) default NULL,
915
  `smsalertnumber` varchar(50) default NULL,
912
  KEY `borrowernumber` (`borrowernumber`),
916
  KEY `borrowernumber` (`borrowernumber`),
(-)a/installer/data/mysql/updatedatabase.pl (+10 lines)
Lines 2596-2601 if (C4::Context->preference("Version") < TransformToNum($DBversion)) { Link Here
2596
    print "Upgrade to $DBversion done (bug 3481: add permanent_location column to deleteditems)\n";
2596
    print "Upgrade to $DBversion done (bug 3481: add permanent_location column to deleteditems)\n";
2597
}
2597
}
2598
2598
2599
$DBversion = '3.01.00.053';
2600
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
2601
   $dbh->do("ALTER TABLE borrowers ADD `B_address2` text AFTER B_address");
2602
   $dbh->do("ALTER TABLE borrowers ADD `altcontactcountry` text AFTER altcontactzipcode");
2603
   $dbh->do("ALTER TABLE deletedborrowers ADD `B_address2` text AFTER B_address");
2604
   $dbh->do("ALTER TABLE deletedborrowers ADD `altcontactcountry` text AFTER altcontactzipcode");
2605
    SetVersion ($DBversion);
2606
    print "Upgrade to $DBversion done (bug 1600, bug 3454: add altcontactcountry and B_address2 to borrowers and deletedborrowers)\n";
2607
}
2608
2599
=item DropAllForeignKeys($table)
2609
=item DropAllForeignKeys($table)
2600
2610
2601
  Drop all foreign keys of the table $table
2611
  Drop all foreign keys of the table $table
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/import_borrowers.tmpl (-1 / +1 lines)
Lines 7-13 Link Here
7
			<ul>
7
			<ul>
8
				<li>Format your file with the following fields
8
				<li>Format your file with the following fields
9
				<ul>
9
				<ul>
10
					<li>'cardnumber',    'surname',      'firstname',        'title',     'othernames',    'initials',     'streetnumber',     'streettype',     'address',       'address2',     'city',             'zipcode',     'country',     'email',         'phone',        'mobile',           'fax',     'emailpro',      'phonepro',     'B_streetnumber',   'B_streettype',     'B_address',     'B_city',       'B_zipcode',        'B_country',        'B_email',     'B_phone',       'dateofbirth',  'branchcode',       'categorycode',     'dateenrolled',  'dateexpiry',   'gonenoaddress',    'lost',     'debarred',      'contactname',  'contactfirstname', 'contacttitle',     'borrowernotes', 'relationship', 'ethnicity',        'ethnotes',     'sex',           'userid',       'opacnote',         'contactnote',     'password',      'sort1',        'sort2'
10
					<li>'surname', 'firstname', 'title', 'othernames', 'initials', 'streetnumber', 'streettype', 'address', 'address2', 'city', 'zipcode', 'country', 'email', 'phone', 'mobile', 'fax', 'emailpro', 'phonepro', 'B_streetnumber', 'B_streettype', 'B_address', 'B_address2', 'B_city', 'B_zipcode', 'B_country', 'B_email', 'B_phone', 'dateofbirth', 'branchcode', 'categorycode', 'dateenrolled', 'dateexpiry', 'gonenoaddress', 'lost', 'debarred', 'contactname', 'contactfirstname', 'contacttitle', 'guarantorid', 'borrowernotes', 'relationship', 'ethnicity', 'ethnotes', 'sex', 'password', 'flags', 'userid', 'opacnote', 'contactnote', 'sort1', 'sort2', 'altcontactfirstname', 'altcontactsurname', 'altcontactaddress1', 'altcontactaddress2', 'altcontactaddress3', 'altcontactzipcode', 'altcontactcountry', 'altcontactphone', 'smsalertnumber', 'patron_attributes'
11
					<ul>
11
					<ul>
12
						<li>
12
						<li>
13
					    <span style="background-color: #ffe599">
13
					    <span style="background-color: #ffe599">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tmpl (-9 / +44 lines)
Lines 415-424 Link Here
415
      <input type="text" name="zipcode" id="zipcode" size="10" value="<!-- TMPL_VAR NAME="zipcode" -->" />
415
      <input type="text" name="zipcode" id="zipcode" size="10" value="<!-- TMPL_VAR NAME="zipcode" -->" />
416
	  <!-- TMPL_IF NAME="mandatoryzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
416
	  <!-- TMPL_IF NAME="mandatoryzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
417
    </li>
417
    </li>
418
    <li>
418
    
419
      <label for="country">Country: </label>
419
    <li> 
420
      <input type="text" name="country" id="country" value="<!-- TMPL_VAR NAME="country" -->" />
420
      <!-- TMPL_IF NAME="mandatorycountry" -->
421
    </li>
421
        <label for="country" class="required">
422
      <!--TMPL_ELSE-->
423
        <label for="country">
424
      <!-- /TMPL_IF-->
425
      Country: </label>
426
      <input type="text" name="country" id="country" size="20" value="<!-- TMPL_VAR NAME="country" -->" />
427
	  <!-- TMPL_IF NAME="mandatorycountry" --><span class="required">Required</span><!-- /TMPL_IF -->
428
    </li>    
422
  
429
  
423
	</ol>
430
	</ol>
424
    </fieldset>
431
    </fieldset>
Lines 492-498 Link Here
492
499
493
<!-- ************************ STEP_1 *********************** -->
500
<!-- ************************ STEP_1 *********************** -->
494
<!--/TMPL_IF -->
501
<!--/TMPL_IF -->
495
<!--TMPL_IF Name="step_2"-->
502
<!--TMPL_IF Name="step_6"-->
496
503
497
		<fieldset class="rows" id="memberentry_address">
504
		<fieldset class="rows" id="memberentry_address">
498
		<legend>Alternate address</legend><ol>
505
		<legend>Alternate address</legend><ol>
Lines 507-512 Link Here
507
	  <!-- TMPL_IF NAME="mandatoryB_address" --><span class="required">Required</span><!-- /TMPL_IF -->
514
	  <!-- TMPL_IF NAME="mandatoryB_address" --><span class="required">Required</span><!-- /TMPL_IF -->
508
			</li>
515
			</li>
509
			<li>
516
			<li>
517
				<!-- TMPL_IF NAME="mandatoryB_address2" -->
518
					<label for="B_address2" class="required">
519
				<!--TMPL_ELSE-->
520
					<label for="B_address2">
521
				<!-- /TMPL_IF-->
522
				Address 2: </label>
523
				<input type="text" id="B_address2" name="B_address2" size="40" value="<!-- TMPL_VAR NAME="B_address2" -->" />
524
	  <!-- TMPL_IF NAME="mandatoryB_address2" --><span class="required">Required</span><!-- /TMPL_IF -->
525
			</li>			
526
			<li>
510
				<!-- TMPL_IF NAME="mandatoryB_city" -->
527
				<!-- TMPL_IF NAME="mandatoryB_city" -->
511
					<label for="B_city" class="required" >
528
					<label for="B_city" class="required" >
512
				<!--TMPL_ELSE-->
529
				<!--TMPL_ELSE-->
Lines 526-535 Link Here
526
				<input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="<!-- TMPL_VAR NAME="B_zipcode" -->" />
543
				<input type="text" id="B_zipcode" name="B_zipcode" maxlength="10" size="10" value="<!-- TMPL_VAR NAME="B_zipcode" -->" />
527
	  <!-- TMPL_IF NAME="mandatoryB_zipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
544
	  <!-- TMPL_IF NAME="mandatoryB_zipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
528
			</li>
545
			</li>
529
	    <li>
546
			<li>
530
	        <label for="B_country">Country: </label>
547
				<!-- TMPL_IF NAME="mandatoryB_country" -->
531
	        <input type="text" name="B_country" id="B_country" value="<!-- TMPL_VAR NAME="B_country" -->" />
548
					<label for="B_country" class="required">
532
	    </li>
549
				<!--TMPL_ELSE-->
550
					<label for="B_country">
551
				<!-- /TMPL_IF-->
552
				Country: </label>
553
				<input type="text" id="B_country" name="B_country" size="20" value="<!-- TMPL_VAR NAME="B_country" -->" />
554
	  <!-- TMPL_IF NAME="mandatoryB_country" --><span class="required">Required</span><!-- /TMPL_IF -->
555
			</li>
533
            <li>
556
            <li>
534
                <!-- TMPL_IF NAME="mandatoryB_phone" -->
557
                <!-- TMPL_IF NAME="mandatoryB_phone" -->
535
                <label for="B_phone" class="required">
558
                <label for="B_phone" class="required">
Lines 561-566 Link Here
561
            </li>
584
            </li>
562
			</ol>
585
			</ol>
563
		</fieldset>
586
		</fieldset>
587
<!-- /TMPL_IF -->		
588
<!--TMPL_IF Name="step_2"-->
564
		<fieldset class="rows" id="memberentry_altaddress">       
589
		<fieldset class="rows" id="memberentry_altaddress">       
565
		    <legend>Alternate Contact</legend><ol>
590
		    <legend>Alternate Contact</legend><ol>
566
			<li>
591
			<li>
Lines 624-629 Link Here
624
				<!-- TMPL_IF NAME="mandatoryaltcontactzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
649
				<!-- TMPL_IF NAME="mandatoryaltcontactzipcode" --><span class="required">Required</span><!-- /TMPL_IF -->
625
			</li>
650
			</li>
626
			<li>
651
			<li>
652
			    <!-- TMPL_IF NAME="mandatoryaltcontactcountry" -->
653
				<label for="altcontactcountry" class="required">
654
				<!-- TMPL_ELSE -->
655
				<label for="altcontactcountry">
656
				<!-- /TMPL_IF -->
657
				Country:</label>
658
				<input type="text" name="altcontactcountry" id="altcontactcountry" value="<!-- TMPL_VAR NAME="altcontactcountry" -->" size="20" />
659
				<!-- TMPL_IF NAME="mandatoryaltcontactcountry" --><span class="required">Required</span><!-- /TMPL_IF -->
660
			</li>			
661
			<li>
627
			    <!-- TMPL_IF NAME="mandatoryaltcontactphone" -->
662
			    <!-- TMPL_IF NAME="mandatoryaltcontactphone" -->
628
				<label for="altcontactphone" class="required">
663
				<label for="altcontactphone" class="required">
629
				<!-- TMPL_ELSE -->
664
				<!-- TMPL_ELSE -->
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tmpl (-6 / +11 lines)
Lines 169-175 if (nodename =="barcodes[]"){ Link Here
169
        <!-- TMPL_VAR NAME="address" --><br />
169
        <!-- TMPL_VAR NAME="address" --><br />
170
        <!-- TMPL_IF NAME="address2" --><!-- TMPL_VAR NAME="address2"--><br /><!-- /TMPL_IF -->
170
        <!-- TMPL_IF NAME="address2" --><!-- TMPL_VAR NAME="address2"--><br /><!-- /TMPL_IF -->
171
    	<!-- TMPL_IF NAME="city" --><!-- TMPL_VAR NAME="city" --><!-- /TMPL_IF -->
171
    	<!-- TMPL_IF NAME="city" --><!-- TMPL_VAR NAME="city" --><!-- /TMPL_IF -->
172
    	<!-- TMPL_IF NAME="zipcode" --><!-- TMPL_VAR NAME="zipcode" --><!-- /TMPL_IF --></p>
172
    	<!-- TMPL_IF NAME="zipcode" --><!-- TMPL_VAR NAME="zipcode" --><br /><!-- /TMPL_IF -->
173
	<!-- TMPL_IF NAME="country" --><!-- TMPL_VAR NAME="country" --><!-- /TMPL_IF --></p>
173
		    
174
		    
174
	<div class="rows">
175
	<div class="rows">
175
		<ol>
176
		<ol>
Lines 333-341 if (nodename =="barcodes[]"){ Link Here
333
 <div id="patron-alternate-address" style="padding-top: 1em;">
334
 <div id="patron-alternate-address" style="padding-top: 1em;">
334
    <h3>Alternate Address</h3>
335
    <h3>Alternate Address</h3>
335
    <!-- TMPL_UNLESS NAME="I"--><!-- TMPL_UNLESS NAME="C"-->
336
    <!-- TMPL_UNLESS NAME="I"--><!-- TMPL_UNLESS NAME="C"-->
336
  <p><!-- TMPL_VAR NAME="B_address" --><br />
337
    <div class="rows">  <ol><li><span class="label">Address: </span><!-- TMPL_VAR NAME="B_address" --></li>
337
      <!-- TMPL_VAR NAME="B_city" --><br />
338
      <li><span class="label">Address 2: </span><!-- TMPL_VAR NAME="B_address2" --></li>
338
      <!-- TMPL_VAR NAME="B_zipcode" --></p>
339
      <li><span class="label">City, State: </span><!-- TMPL_VAR NAME="B_city" --></li>
340
      <li><span class="label">Zip/Postal Code: </span><!-- TMPL_VAR NAME="B_zipcode" --></li>
341
      <li><span class="label">Country: </span><!-- TMPL_VAR NAME="B_country" --></li></ol></div>
339
    <!-- /TMPL_UNLESS --><!-- /TMPL_UNLESS -->
342
    <!-- /TMPL_UNLESS --><!-- /TMPL_UNLESS -->
340
     <!-- TMPL_IF NAME="C" -->
343
     <!-- TMPL_IF NAME="C" -->
341
   <div class="rows"> <ol><li><span class="label">Surname: </span><!-- TMPL_VAR NAME="contactname" --></li>
344
   <div class="rows"> <ol><li><span class="label">Surname: </span><!-- TMPL_VAR NAME="contactname" --></li>
Lines 345-359 if (nodename =="barcodes[]"){ Link Here
345
    <li><span class="label">Relationship: </span><!-- TMPL_VAR NAME="relationship" --></li></ol></div>
348
    <li><span class="label">Relationship: </span><!-- TMPL_VAR NAME="relationship" --></li></ol></div>
346
   <!-- /TMPL_IF -->
349
   <!-- /TMPL_IF -->
347
</div>
350
</div>
351
<div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&amp;step=6">Edit</a></div>
348
352
349
 <div id="patron-alternative-contact" style="padding-top: 1em;">
353
 <div id="patron-alternative-contact" style="padding-top: 1em;">
350
 <h3>Alternative Contact</h3>	
354
 <h3>Alternative Contact</h3>	
351
   <div class="rows"> <ol><li><span class="label">Surname: </span><!-- TMPL_VAR NAME="altcontactsurname" --></li>
355
   <div class="rows"> <ol><li><span class="label">Surname: </span><!-- TMPL_VAR NAME="altcontactsurname" --></li>
352
    <li><span class="label">First name: </span><!-- TMPL_VAR NAME="altcontactfirstname" --></li>    
356
    <li><span class="label">First name: </span><!-- TMPL_VAR NAME="altcontactfirstname" --></li>    
353
    <li><span class="label">Address: </span><!-- TMPL_VAR NAME="altcontactaddress1" --></li>
357
    <li><span class="label">Address: </span><!-- TMPL_VAR NAME="altcontactaddress1" --></li>
354
    <li><span class="label">Address (cont.): </span><!-- TMPL_VAR NAME="altcontactaddress2" --></li>
358
    <li><span class="label">Address 2: </span><!-- TMPL_VAR NAME="altcontactaddress2" --></li>
355
	<li><span class="label">City, State: </span><!-- TMPL_VAR NAME="altcontactaddress3" --></li>
359
	<li><span class="label">City, State: </span><!-- TMPL_VAR NAME="altcontactaddress3" --></li>
356
	<li><span class="label">Zip/Postal Code: </span><!-- TMPL_VAR NAME="altcontactzipcode" --></li>
360
	<li><span class="label">Zip/Postal Code: </span><!-- TMPL_VAR NAME="altcontactzipcode" --></li>
361
	<li><span class="label">Country: </span><!-- TMPL_VAR NAME="altcontactcountry" --></li>
357
    <li><span class="label">Phone: </span><!-- TMPL_VAR NAME="altcontactphone" --></li></ol></div>
362
    <li><span class="label">Phone: </span><!-- TMPL_VAR NAME="altcontactphone" --></li></ol></div>
358
</div>
363
</div>
359
<div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&amp;step=2">Edit</a></div>
364
<div class="action"><a href="memberentry.pl?op=modify&amp;borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&amp;step=2">Edit</a></div>
Lines 516-522 if (nodename =="barcodes[]"){ Link Here
516
			<th>Call Number</th>
521
			<th>Call Number</th>
517
			<th>Barcode</th>
522
			<th>Barcode</th>
518
			<th>Priority</th>
523
			<th>Priority</th>
519
			<th>Delete?</th>
524
			<th>Delete?alter</th>
520
		</tr></thead>
525
		</tr></thead>
521
		<tbody><!-- TMPL_LOOP NAME="reservloop" -->
526
		<tbody><!-- TMPL_LOOP NAME="reservloop" -->
522
		<tr class="<!-- TMPL_VAR NAME="color" -->">
527
		<tr class="<!-- TMPL_VAR NAME="color" -->">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-userdetails.tmpl (-1 / +1 lines)
Lines 21-27 Card Number:</th><td><!-- TMPL_VAR NAME="cardnumber" --></td></tr> Link Here
21
<caption>Contact Details</caption>
21
<caption>Contact Details</caption>
22
<tr><th scope="row">Mailing Address:</th><td><!-- TMPL_VAR NAME="address" -->, <!-- TMPL_VAR NAME="city" --></td></tr>
22
<tr><th scope="row">Mailing Address:</th><td><!-- TMPL_VAR NAME="address" -->, <!-- TMPL_VAR NAME="city" --></td></tr>
23
23
24
<tr><th scope="row">Permanent Address:</th><td> <!-- TMPL_VAR NAME="B_address" -->, <!-- TMPL_VAR NAME="B_city" --></td></tr>
24
<tr><th scope="row">Permanent Address:</th><td> <!-- TMPL_VAR NAME="B_address" -->, <!-- TMPL_VAR NAME="B_address2" -->, <!-- TMPL_VAR NAME="B_city" --></td></tr>
25
25
26
<tr><th scope="row">Phone (Home):</th><td><!-- TMPL_IF NAME="phone" --><!-- TMPL_VAR NAME="phone" --><!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_IF --></td></tr>
26
<tr><th scope="row">Phone (Home):</th><td><!-- TMPL_IF NAME="phone" --><!-- TMPL_VAR NAME="phone" --><!-- TMPL_ELSE -->&nbsp;<!-- /TMPL_IF --></td></tr>
27
27
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-userupdate.tmpl (-3 / +5 lines)
Lines 30-36 Link Here
30
	<input type="text" name="address" value="<!-- TMPL_VAR NAME="address" -->" id="address" />
30
	<input type="text" name="address" value="<!-- TMPL_VAR NAME="address" -->" id="address" />
31
	<input type="text" name="address2" value="<!-- TMPL_VAR NAME="address2" -->" id="address2" /></li>
31
	<input type="text" name="address2" value="<!-- TMPL_VAR NAME="address2" -->" id="address2" /></li>
32
<li><label for="city">City, State:</label> <input id="city" type="text" value="<!-- TMPL_VAR name="city" -->"  name="city" /></li>
32
<li><label for="city">City, State:</label> <input id="city" type="text" value="<!-- TMPL_VAR name="city" -->"  name="city" /></li>
33
<li><label for="zipcode">Zip Code: </label><input id="zipcode" name="zipcode" value="<!-- TMPL_VAR NAME="zipcode" -->" /></li>
33
<li><label for="zipcode">Zip Code: </label><input id="zipcode" name="zipcode" value="<!-- TMPL_VAR NAME="zipcode" -->" name="zipcode" /></li>
34
<li><label for="country">Country: </label><input id="country" name="country" value="<!-- TMPL_VAR NAME="country" -->" name="country" /></li>
34
<li><label for="phone">Home Phone:</label> <input id="phone" type="text" value="<!-- TMPL_VAR name="phone" -->"  name="phone" /></li>
35
<li><label for="phone">Home Phone:</label> <input id="phone" type="text" value="<!-- TMPL_VAR name="phone" -->"  name="phone" /></li>
35
<li><label for="mobile">Mobile Phone:</label> <input id="mobile" type="text" value="<!-- TMPL_VAR name="mobile" -->"  name="mobile" /></li>
36
<li><label for="mobile">Mobile Phone:</label> <input id="mobile" type="text" value="<!-- TMPL_VAR name="mobile" -->"  name="mobile" /></li>
36
<li><label for="fax">Fax:</label> <input id="fax" type="text" value="<!-- TMPL_VAR name="fax" -->"  name="fax" /></li>
37
<li><label for="fax">Fax:</label> <input id="fax" type="text" value="<!-- TMPL_VAR name="fax" -->"  name="fax" /></li>
Lines 92-102 Link Here
92
<ol>
93
<ol>
93
<li>
94
<li>
94
    <label for="B_streetaddress">Permanent or Alternate Address:</label>
95
    <label for="B_streetaddress">Permanent or Alternate Address:</label>
95
        <textarea id="B_streetaddress" cols="25" rows="2" name="B_streetaddress"><!--TMPL_VAR NAME="B_streetnumber"--> <!-- TMPL_VAR name="B_address" --></textarea>
96
        <textarea id="B_streetaddress" cols="25" rows="3" name="B_streetaddress"><!--TMPL_VAR NAME="B_streetnumber"--> <!-- TMPL_VAR name="B_address" --> <!-- TMPL_VAR name="B_address2" --></textarea>
96
</li>
97
</li>
97
98
98
<li><label for="B_city">City, State:</label> <input id="B_city" type="text" value="<!-- TMPL_VAR name="B_city" -->"  name="B_city" /></li>
99
<li><label for="B_city">City, State:</label> <input id="B_city" type="text" value="<!-- TMPL_VAR name="B_city" -->"  name="B_city" /></li>
99
<li><label for="B_zipcode">Zip Code</label> <input type="text" id="B_zipcode" name="B_zipcode" value="<!-- TMPL_VAR NAME="B_zipcode" -->" /></li>
100
<li><label for="B_zipcode">Zip Code</label> <input type="text" id="B_zipcode" name="B_zipcode" value="<!-- TMPL_VAR NAME="B_zipcode" -->" name="B_zipcode" /></li>
101
<li><label for="B_country">Country</label> <input type="text" id="B_country" name="B_country" value="<!-- TMPL_VAR NAME="B_country" -->" name="B_country" /></li>
100
</ol>
102
</ol>
101
</fieldset>
103
</fieldset>
102
<fieldset class="brief">
104
<fieldset class="brief">
(-)a/members/memberentry.pl (-4 / +3 lines)
Lines 360-366 if ($nok or !$nodouble){ Link Here
360
    %data=%newdata; 
360
    %data=%newdata; 
361
    $template->param( updtype => ($op eq 'add' ?'I':'M'));	# used to check for $op eq "insert"... but we just changed $op!
361
    $template->param( updtype => ($op eq 'add' ?'I':'M'));	# used to check for $op eq "insert"... but we just changed $op!
362
    unless ($step){  
362
    unless ($step){  
363
        $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1);
363
        $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1);
364
    }  
364
    }  
365
} 
365
} 
366
if (C4::Context->preference("IndependantBranches")) {
366
if (C4::Context->preference("IndependantBranches")) {
Lines 375-385 if (C4::Context->preference("IndependantBranches")) { Link Here
375
if ($op eq 'add'){
375
if ($op eq 'add'){
376
    my $arg2 = $newdata{'dateenrolled'} || C4::Dates->today('iso');
376
    my $arg2 = $newdata{'dateenrolled'} || C4::Dates->today('iso');
377
    $data{'dateexpiry'} = GetExpiryDate($newdata{'categorycode'},$arg2);
377
    $data{'dateexpiry'} = GetExpiryDate($newdata{'categorycode'},$arg2);
378
    $template->param( updtype => 'I', step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1);
378
    $template->param( updtype => 'I', step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1);
379
}
379
}
380
if ($op eq "modify")  {
380
if ($op eq "modify")  {
381
    $template->param( updtype => 'M',modify => 1 );
381
    $template->param( updtype => 'M',modify => 1 );
382
    $template->param( step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1) unless $step;
382
    $template->param( step_1=>1, step_2=>1, step_3=>1, step_4=>1, step_5 => 1, step_6 => 1) unless $step;
383
}
383
}
384
# my $cardnumber=$data{'cardnumber'};
384
# my $cardnumber=$data{'cardnumber'};
385
$data{'cardnumber'}=fixup_cardnumber($data{'cardnumber'}) if $op eq 'add';
385
$data{'cardnumber'}=fixup_cardnumber($data{'cardnumber'}) if $op eq 'add';
386
- 

Return to bug 1600