Skip to content

Commit

Permalink
[BF] oops, BillingAddress3 was omitted in two locations
Browse files Browse the repository at this point in the history
  • Loading branch information
nickhilliard committed Dec 3, 2015
1 parent a75e1fc commit 0e061c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions application/views/customer/overview-tabs/details.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
<td>
{if $bdetails->getBillingAddress1()}{$bdetails->getBillingAddress1()}<br/>{/if}
{if $bdetails->getBillingAddress2()}{$bdetails->getBillingAddress2()}<br/>{/if}
{if $bdetails->getBillingAddress3()}{$bdetails->getBillingAddress3()}<br/>{/if}
{if $bdetails->getBillingTownCity()}{$bdetails->getBillingTownCity()}<br/>{/if}
{if $bdetails->getBillingPostcode()}{$bdetails->getBillingPostcode()}{/if}
</td>
Expand Down
1 change: 1 addition & 0 deletions bin/migration-scripts/billing-details.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
$bdetail->setBillingContactName( $cust->getBillingContact() );
$bdetail->setBillingAddress1( $cust->getBillingAddress1() );
$bdetail->setBillingAddress2( $cust->getBillingAddress2() );
$bdetail->setBillingAddress3( $cust->getBillingAddress3() );
$bdetail->setBillingTownCity( $cust->getBillingCity() );
$bdetail->setBillingCountry( $cust->getBillingCountry() );

Expand Down

0 comments on commit 0e061c0

Please sign in to comment.