Skip to content
Snippets Groups Projects
Select Git revision
  • 7f23f7c5e2a3f7fb41803f82579418632616a146
  • main default
  • kinetic protected
  • hydro
  • indigo
  • obsolete/master
  • 0.3.3
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.1.24
  • 0.1.23
  • 0.2.1
  • 0.1.22
  • 0.1.21
  • 0.1.20
  • 0.1.19
  • 0.1.18
  • 0.1.17
  • 0.1.16
  • 0.1.15
  • 0.1.14
  • 0.1.13
  • 0.1.12
  • 0.1.11
  • 0.1.10
26 results

.project

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>