update delivery note form

This commit is contained in:
2025-12-11 17:48:54 +01:00
parent dfaea894e4
commit 586c9458b1
6 changed files with 103 additions and 2 deletions
@@ -28,7 +28,7 @@ import {firstValueFrom} from "rxjs";
})
export class DelivereryNoteForm implements OnInit {
deliveryNoteForm: FormGroup = new FormGroup({
trackingNumber: new FormControl<string>("TRK-" + Date.now),
trackingNumber: new FormControl<string>(null),
deliverer: new FormControl<string>(null,[Validators.required]),
expeditionDate: new FormControl(null,[Validators.required]),
estimatedDate: new FormControl(null),