Skip to content
Snippets Groups Projects
Select Git revision
  • c3b0b8373b5969c21fd416ae76fa2ecf5ff87d1e
  • master default protected
2 results

pick-list.component.html

Blame
  • pick-list.component.html 1.65 KiB
    
    <!-- <mat-card *ngIf="tableData">
        <p><mat-icon aria-hidden="false" aria-label="Product">people</mat-icon> Picker: <span>{{tableData.fEndInitPicklists[0].pickerId}}</span></p>
        <p><mat-icon aria-hidden="false" aria-label="List">format_list_bulleted</mat-icon> Lisdt ID: <span>{{tableData.fEndInitPicklists[0].picklistId}}</span></p>
    </mat-card> -->
    
    
    <div class="table" *ngIf="tableData">
        <table mat-table [dataSource]="tableData" class="mat-elevation-z8">
    
            <!-- Product -->
            <ng-container matColumnDef="product">
                <th mat-header-cell *matHeaderCellDef>
                    <mat-icon aria-hidden="false" aria-label="Product">production_quantity_limits</mat-icon> Product
                </th>
                <td mat-cell *matCellDef="let item"> {{item.productId}} </td>
            </ng-container>
    
            <!-- Inventory -->
            <ng-container matColumnDef="inventory">
                <th mat-header-cell *matHeaderCellDef>
                    <mat-icon aria-hidden="false" aria-label="Inventory">style</mat-icon> Inventory
                </th>
                <td mat-cell *matCellDef="let item"> {{item.inventoryItemSoll}} </td>
            </ng-container>
    
            <!-- Shipment -->
            <ng-container matColumnDef="shipment">
                <th mat-header-cell *matHeaderCellDef>
                    <mat-icon aria-hidden="false" aria-label="Shipment">departure_board</mat-icon> Shipment
                </th>
                <td mat-cell *matCellDef="let item"> {{item.shipmentBinNrSoll}} </td>
            </ng-container>
    
            <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
            <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
    
        </table>
    </div>