added patch in delivery note page

This commit is contained in:
2025-11-30 14:52:19 +01:00
parent 3373453141
commit 1c8be0a261
4 changed files with 41 additions and 6 deletions

View File

@@ -31,7 +31,7 @@ export class DelivereryNoteForm {
deliverer: new FormControl<string>(null,[Validators.required]),
expeditionDate: new FormControl(null,[Validators.required]),
estimatedDate: new FormControl(null),
realDate: new FormControl(null)
realDeliveryDate: new FormControl(null)
})
private deliverersService = inject(DeliverersService);