Add files via upload

This commit is contained in:
gopi17701 2018-09-28 12:42:39 -04:00 committed by GitHub
parent b7d7dc48c8
commit c02f0192eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
26 changed files with 3049 additions and 3047 deletions

View File

@ -43,7 +43,7 @@
<!--<i class="material-icons text-danger">info</i> Not yet implemented-->
</app-app-box>
<app-app-box class="m-3" [name]="'Invoice Payment'" [symbol]="'attach_money'" routerLink="/invoice-payment">
<h6 class="card-subtitle mb-2 text-muted">Go here to to pay an invoice</h6>
<h6 class="card-subtitle mb-2 text-muted">Go here to enter payments received</h6>
<!--<i class="material-icons text-danger">info</i> Not yet implemented-->
</app-app-box>
</div>

View File

@ -8,6 +8,7 @@
<a class="nav-link" [ngClass]="customerActive ? 'active' : ''" routerLink="/customer" routerLinkActive="active">Customer</a>
<a class="nav-link" [ngClass]="salesOrderActive ? 'active' : ''"routerLink="/sales-order" routerLinkActive="active">Sales Order</a>
<a class="nav-link" [ngClass]="invoiceActive ? 'active' : ''"routerLink="/invoice" routerLinkActive="active">Invoice</a>
<a class="nav-link" [ngClass]="invoicePaymentActive ? 'active' : ''"routerLink="/invoice-payment" routerLinkActive="active">Invoice Payment</a>
</div>
</div>
</nav>

View File

@ -9,6 +9,7 @@ export class NavBarComponent implements OnInit {
@Input() customerActive: boolean;
@Input() salesOrderActive: boolean;
@Input() invoiceActive: boolean;
@Input() invoicePaymentActive: boolean;
constructor() { }