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',