Skip to content

Commit

Permalink
[BF] - Resold Member Billing Details - fixes islandbridgenetworks/IXP…
Browse files Browse the repository at this point in the history
  • Loading branch information
yannrobin authored and barryo committed Dec 18, 2019
1 parent 32c3ea3 commit c32e4e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/customer/overview-tabs/details.foil.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
</div>

<div class="col-md-6">
<?php if( !config('ixp.reseller.no_billing') || !$t->resellerMode() || !$t->c->isResoldCustomer() ): ?>
<?php if( !config('ixp.reseller.no_billing') && !$t->c->isResoldCustomer() ): ?>
<div class="tw-rounded tw-p-4 tw-shadow-md tw-border tw-border-grey-light">
<header class="tw-pb-2 tw-pl-2 tw-flex tw-border-b tw-border-grey-300">
<h3>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/customer/overview.foil.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
<li class="nav-item" onclick="window.location.href = '<?= route( "rs-prefixes@view", [ 'cid' => $c->getId() ] ) ?>'">
<a class="nav-link" data-toggle="tab" href="">
RS Prefixes
<?php if( $t->rsRoutes[ 'adv_nacc' ][ 'total' ] > 0 ): ?>
<?php if( $t->rsRoutes && $t->rsRoutes[ 'adv_nacc' ][ 'total' ] > 0 ): ?>
<span class="badge badge-danger"><?= $t->rsRoutes[ 'adv_nacc' ][ 'total' ] ?></span>
<?php endif ?>
&raquo;
Expand Down

0 comments on commit c32e4e0

Please sign in to comment.