updated quotation-form.html

This commit is contained in:
2025-11-20 17:20:46 +01:00
parent c5f34ef6ad
commit 1ba9d0f8ca
2 changed files with 5 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
Prix Prix
</nz-form-label> </nz-form-label>
<nz-form-control nzSpan="12" nzErrorTip="Ce champ est requis"> <nz-form-control nzSpan="8" nzErrorTip="Ce champ est requis">
<input nz-input placeholder="Prix" formControlName="price"> <input nz-input placeholder="Prix" formControlName="price">
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>
@@ -14,7 +14,7 @@
Quantité Quantité
</nz-form-label> </nz-form-label>
<nz-form-control nzSpan="12" nzErrorTip="Ce champ est requis"> <nz-form-control nzSpan="8" nzErrorTip="Ce champ est requis">
<input nz-input placeholder="Quantité" formControlName="quantity"> <input nz-input placeholder="Quantité" formControlName="quantity">
</nz-form-control> </nz-form-control>
</nz-form-item> </nz-form-item>

View File

@@ -6,6 +6,7 @@ import {NzDividerComponent} from "ng-zorro-antd/divider";
import {NzIconDirective} from "ng-zorro-antd/icon"; import {NzIconDirective} from "ng-zorro-antd/icon";
import {QuotationForm} from "../quotation-form/quotation-form"; import {QuotationForm} from "../quotation-form/quotation-form";
import {ProductTable} from "../product-table/product-table"; import {ProductTable} from "../product-table/product-table";
import {ProductForm} from "../product-form/product-form";
interface QuotationInfo { interface QuotationInfo {
quotationId: number; quotationId: number;
@@ -30,7 +31,8 @@ interface QuotationInfo {
NzDividerComponent, NzDividerComponent,
NzIconDirective, NzIconDirective,
NzTableComponent, NzTableComponent,
QuotationForm QuotationForm,
ProductForm
], ],
templateUrl: './quotation-table.html', templateUrl: './quotation-table.html',
styleUrl: './quotation-table.css', styleUrl: './quotation-table.css',