6be1dd5a3a
---- Pending * Table width for the points column in incentive * Linting * keyboard navigation where it was used earlier * can remove the unused totals calculated serverside in productledger * spinner and loading bars * Activate Guard for Employee Function tabs * Progress for Fingerprint uploads * deleted reconcile and receipe features as they were not being used * focus the right control on component load
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
<h1 mat-dialog-title>Edit Issue Entry</h1>
|
|
<div mat-dialog-content>
|
|
<form [formGroup]="form">
|
|
<div fxLayout="row" fxLayoutAlign="space-around start" fxLayout.lt-md="column" fxLayoutGap="20px"
|
|
fxLayoutGap.lt-md="0px">
|
|
<mat-form-field fxFlex="65">
|
|
<input type="text" matInput placeholder="Product" #batchElement [matAutocomplete]="autoB"
|
|
formControlName="batch" autocomplete="off">
|
|
<mat-autocomplete #autoB="matAutocomplete" autoActiveFirstOption [displayWith]="displayBatchName"
|
|
(optionSelected)="batchSelected($event)">
|
|
<mat-option *ngFor="let batch of batches | async" [value]="batch">{{batch.name}}</mat-option>
|
|
</mat-autocomplete>
|
|
</mat-form-field>
|
|
<mat-form-field fxFlex="35">
|
|
<mat-label>Quantity</mat-label>
|
|
<input type="text" matInput placeholder="Quantity" formControlName="quantity" autocomplete="off">
|
|
</mat-form-field>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div mat-dialog-actions>
|
|
<button mat-button [mat-dialog-close]="false" cdkFocusInitial>Cancel</button>
|
|
<button mat-button (click)="accept()" color="primary">Ok</button>
|
|
</div>
|
|
|