mirror of
https://github.com/dyiop/astute.git
synced 2025-04-17 02:30:17 -04:00
Add files via upload
This commit is contained in:
parent
b7d7dc48c8
commit
c02f0192eb
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -9,6 +9,7 @@ export class NavBarComponent implements OnInit {
|
|||
@Input() customerActive: boolean;
|
||||
@Input() salesOrderActive: boolean;
|
||||
@Input() invoiceActive: boolean;
|
||||
@Input() invoicePaymentActive: boolean;
|
||||
|
||||
constructor() { }
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user