add getall and delete function from quotation page

This commit is contained in:
2025-11-30 12:12:43 +01:00
parent a76b184dc1
commit 9a90336642
5 changed files with 65 additions and 111 deletions

View File

@@ -26,15 +26,4 @@ export class QuotationForm {
quotationMessage: new FormControl<string>(null),
quotationConditionsSale: new FormControl<string>(null),
})
submitForm() {
// Pour annuler si le formulaire est invalide
if (this.QuotationForm.invalid) return;
// Pour obtenir la valeur du formulaire
console.log(this.QuotationForm.getRawValue())
// Pour vider le formulaire
this.QuotationForm.reset()
}
}