From 1ba9d0f8cad1a32437ec72b920e7df7ebaabbe26 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Thu, 20 Nov 2025 17:20:46 +0100 Subject: [PATCH] updated quotation-form.html --- src/app/components/product-form/product-form.html | 4 ++-- src/app/components/quotation-table/quotation-table.ts | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/components/product-form/product-form.html b/src/app/components/product-form/product-form.html index aa6c53c..c4362c1 100644 --- a/src/app/components/product-form/product-form.html +++ b/src/app/components/product-form/product-form.html @@ -4,7 +4,7 @@ Prix - + @@ -14,7 +14,7 @@ Quantité - + diff --git a/src/app/components/quotation-table/quotation-table.ts b/src/app/components/quotation-table/quotation-table.ts index 6dcbfca..db47810 100644 --- a/src/app/components/quotation-table/quotation-table.ts +++ b/src/app/components/quotation-table/quotation-table.ts @@ -6,6 +6,7 @@ import {NzDividerComponent} from "ng-zorro-antd/divider"; import {NzIconDirective} from "ng-zorro-antd/icon"; import {QuotationForm} from "../quotation-form/quotation-form"; import {ProductTable} from "../product-table/product-table"; +import {ProductForm} from "../product-form/product-form"; interface QuotationInfo { quotationId: number; @@ -30,7 +31,8 @@ interface QuotationInfo { NzDividerComponent, NzIconDirective, NzTableComponent, - QuotationForm + QuotationForm, + ProductForm ], templateUrl: './quotation-table.html', styleUrl: './quotation-table.css',