Skip to content
Snippets Groups Projects
Commit 35080dd3 authored by FrankR's avatar FrankR
Browse files
# Conflicts:
#	src/app/components/pick-list/pick-list.component.html
parents 385f11a2 bb7db820
Branches
No related tags found
No related merge requests found
...@@ -13,14 +13,4 @@ ...@@ -13,14 +13,4 @@
<chart-timeline> ... </chart-timeline> <chart-timeline> ... </chart-timeline>
</mat-tab> </mat-tab>
</mat-tab-group> </mat-tab-group>
\ No newline at end of file
...@@ -36,23 +36,9 @@ ...@@ -36,23 +36,9 @@
<th mat-header-cell *matHeaderCellDef> Inventory Ist </th> <th mat-header-cell *matHeaderCellDef> Inventory Ist </th>
<td mat-cell *matCellDef="let item"> <td mat-cell *matCellDef="let item">
<mat-chip-list *ngIf="item.inventoryItemIst"> <mat-chip-list *ngIf="item.inventoryItemIst">
<mat-basic-chip selected [style]="item.inventoryIsCorrect === true ? 'background-color:green; color:white' : 'background-color:red; color:white'"> <mat-chip selected [color]="item.inventoryIsCorrect === true ? 'accent' : 'warn'">
{{item.inventoryItemIst}} {{item.inventoryItemIst}}
</mat-basic-chip> </mat-chip>
</mat-chip-list>
</td>
</ng-container>
<!-- Shipment Ist-->
<ng-container matColumnDef="shipment_ist">
<th mat-header-cell *matHeaderCellDef>
Shipment Ist
</th>
<td mat-cell *matCellDef="let item">
<mat-chip-list *ngIf="item.shipmentBinNrIst">
<mat-basic-chip selected [style]="item.shipmentIsCorrect === true ? 'background-color:green; color:white' : 'background-color:red; color:white'">
{{item.shipmentBinNrIst}}
</mat-basic-chip>
</mat-chip-list> </mat-chip-list>
</td> </td>
</ng-container> </ng-container>
...@@ -71,6 +57,20 @@ ...@@ -71,6 +57,20 @@
</td> </td>
</ng-container> </ng-container>
<!-- Shipment Ist-->
<ng-container matColumnDef="shipment_ist">
<th mat-header-cell *matHeaderCellDef>
Shipment Ist
</th>
<td mat-cell *matCellDef="let item">
<mat-chip-list *ngIf="item.shipmentBinNrIst">
<mat-chip selected [color]="item.shipmentIsCorrect === true ? 'accent' : 'warn'">
{{item.shipmentBinNrIst}}
</mat-chip>
</mat-chip-list>
</td>
</ng-container>
<!-- Picker --> <!-- Picker -->
<ng-container matColumnDef="picker"> <ng-container matColumnDef="picker">
<th mat-header-cell *matHeaderCellDef> <th mat-header-cell *matHeaderCellDef>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment