zgo/src/app/items/item-add/item-add.component.html

23 lines
682 B
HTML

<div class='itemDataTitle'>{{ vE.itemaddAdd2Order }}</div>
<div class='container'>
<mat-dialog-content [formGroup]="orderForm">
<p class="text">{{lineItem.name}}</p>
<mat-form-field [style.width.%]="100">
<input matInput type="number" placeholder="Quantity" formControlName="qty">
</mat-form-field>
</mat-dialog-content>
<div style="display: flex;
justify-content: space-between;
margin-top: 20px;
padding: 20px;">
<button mat-raised-button
class="text"
(click)="close()">{{ vE.itemaddCancelBtn }}</button>
<button mat-raised-button
class="text"
color="primary"
(click)="save()">{{ vE.itemaddSaveBtn }}</button>
</div>
</div>