updated quotation and delivery note
This commit is contained in:
@@ -1,14 +1,4 @@
|
||||
<form nz-form nzLayout="horizontal" [formGroup]="deliveryNoteForm" (ngSubmit)="submitForm()">
|
||||
<nz-form-item nz-flex>
|
||||
<nz-form-label nzSpan="9" nzRequired>
|
||||
Numéro de livraison
|
||||
</nz-form-label>
|
||||
|
||||
<nz-form-control nzSpan="12" nzErrorTip="Ce champ est requis">
|
||||
<input nz-input placeholder="Numéro de livraison" formControlName="trackingNumber">
|
||||
</nz-form-control>
|
||||
</nz-form-item>
|
||||
|
||||
<nz-form-item nz-flex>
|
||||
<nz-form-label nzSpan="9" nzRequired>
|
||||
Transporteur
|
||||
|
||||
@@ -24,7 +24,6 @@ import {NzDatePickerComponent} from "ng-zorro-antd/date-picker";
|
||||
})
|
||||
export class DelivereryNoteForm {
|
||||
deliveryNoteForm: FormGroup = new FormGroup({
|
||||
trackingNumber: new FormControl<string>(null,[Validators.required]),
|
||||
deliverer: new FormControl<string>(null,[Validators.required]),
|
||||
expeditionDate: new FormControl(null,[Validators.required]),
|
||||
estimatedDate: new FormControl(null),
|
||||
|
||||
@@ -1,14 +1,4 @@
|
||||
<form nz-form nzLayout="horizontal" [formGroup]="QuotationForm" (ngSubmit)="submitForm()">
|
||||
<nz-form-item nz-flex>
|
||||
<nz-form-label nzSpan="9" nzRequired>
|
||||
ID Devis
|
||||
</nz-form-label>
|
||||
|
||||
<nz-form-control nzSpan="12">
|
||||
<input nz-input type="number" placeholder="ID Devis" formControlName="quotationId">
|
||||
</nz-form-control>
|
||||
</nz-form-item>
|
||||
|
||||
<nz-form-item nz-flex>
|
||||
<nz-form-label nzSpan="9">
|
||||
Message du devis
|
||||
|
||||
@@ -23,7 +23,6 @@ import {NzDatePickerComponent} from "ng-zorro-antd/date-picker";
|
||||
})
|
||||
export class QuotationForm {
|
||||
QuotationForm: FormGroup = new FormGroup({
|
||||
quotationId: new FormControl<number>(null),
|
||||
quotationMessage: new FormControl<string>(null),
|
||||
quotationConditionsSale: new FormControl<string>(null),
|
||||
})
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<app-search></app-search>
|
||||
</div>
|
||||
</div>
|
||||
voir prix dans les produits + suppr id devis dans form et dans bon de livraison form
|
||||
voir prix dans les produits
|
||||
<div class="mt-1">
|
||||
<app-quotation-table></app-quotation-table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user