Stock Movement Done!!
This commit is contained in:
@ -32,7 +32,11 @@
|
||||
<!-- Name Column -->
|
||||
<ng-container matColumnDef="name">
|
||||
<mat-header-cell *matHeaderCellDef mat-sort-header>Name</mat-header-cell>
|
||||
<mat-cell *matCellDef="let row">{{row.name}}</mat-cell>
|
||||
<mat-cell *matCellDef="let row">
|
||||
<a [routerLink]="row.url" [queryParams]="{startDate: info.startDate, finishDate: info.finishDate}">
|
||||
{{row.name}}
|
||||
</a>
|
||||
</mat-cell>
|
||||
</ng-container>
|
||||
|
||||
<!-- Opening Column -->
|
||||
|
||||
@ -1,11 +1,13 @@
|
||||
|
||||
export class StockMovementItem {
|
||||
id: string;
|
||||
group: string;
|
||||
name: string;
|
||||
opening: number;
|
||||
purchase: number;
|
||||
issue: number;
|
||||
closing: number;
|
||||
url: string[];
|
||||
}
|
||||
|
||||
export class StockMovement {
|
||||
|
||||
Reference in New Issue
Block a user