You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
800 B
18 lines
800 B
6 months ago
|
<h2 mat-dialog-title>{{ 'routes.wcs.reuquestWms.title' | translate }}</h2>
|
||
|
<form autocomplete="off" [formGroup]="form">
|
||
|
<div mat-dialog-content>
|
||
|
<mat-form-field >
|
||
|
<mat-label>{{ 'routes.wcs.reuquestWms.Barcode1' | translate }}</mat-label>
|
||
|
<input matInput #barcode formControlName="Barcode1">
|
||
|
</mat-form-field>
|
||
|
<mat-form-field >
|
||
|
<mat-label>{{ 'routes.wcs.reuquestWms.Barcode2' | translate }}</mat-label>
|
||
|
<input matInput #barcode formControlName="Barcode2">
|
||
|
</mat-form-field>
|
||
|
</div>
|
||
|
<div mat-dialog-actions align="end">
|
||
|
<button mat-button color="primary" (click)="save()">{{ 'shared.dialog.ok' | translate | uppercase }}</button>
|
||
|
<button mat-button mat-dialog-close>{{ 'shared.dialog.cancel' | translate | uppercase }}</button>
|
||
|
</div>
|
||
|
</form>
|