Update ordest700-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.html
This commit is contained in:
parent
40470e58da
commit
dfaf540c42
@ -861,56 +861,20 @@
|
||||
<div class="clr-row" style="height: fit-content;">
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Company Name</label>
|
||||
<label> Customer Name</label>
|
||||
<input class="clr-input" type="text" formControlName="company_name" />
|
||||
</div>
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label>Description</label>
|
||||
<input class="form-control" type="Text" formControlName="description" style="border: none; outline: none; height:33px !important;" />
|
||||
</div>
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Contact Person</label>
|
||||
<textarea cols="10" rows="2" formControlName="contact_person" placeholder="Textarea"> </textarea>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Manufacturer</label>
|
||||
<select formControlName="manufacturer">
|
||||
<option [value]="null">Choose Manufacturer</option>
|
||||
<option *ngFor="let item of selectmanufacturer" [value]="item.manufacturer_name">{{item.manufacturer_name}}</option>
|
||||
</select> </div>
|
||||
|
||||
|
||||
|
||||
<!-- dependent dropdown field start -->
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Type</label> <select formControlName="type" class="clr-dropdown">
|
||||
<option [ngValue]="null">Select Option</option>
|
||||
<option *ngFor="let entity of typedependentData" [value]="entity.type_name">{{ entity.type_name}}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- dependent dropdown field end -->
|
||||
|
||||
<!-- dependent dropdown field start -->
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Product</label> <select formControlName="product" class="clr-dropdown">
|
||||
<option [ngValue]="null">Select Option</option>
|
||||
<option *ngFor="let entity of productdependentData" [value]="entity.product_name">{{ entity.product_name}}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- dependent dropdown field end -->
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Email Address</label>
|
||||
<input class="clr-input" type="email" formControlName="email_address" pattern="[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$">
|
||||
@ -919,13 +883,20 @@
|
||||
</div> </div>
|
||||
</div>
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Phone Number</label>
|
||||
<input class="clr-input" type="text" formControlName="phone_number" pattern="((\+)?([1-9]{2}))?[1-9]{1}[0-9]{9}$" />
|
||||
<div *ngIf="submitted && entryForm.controls['phone_number'].errors" class="error_mess">
|
||||
<div *ngIf="submitted && entryForm.controls['phone_number'].hasError('pattern')" class="error_mess">* Please Follow your pattern,+91 Enter 10 digit Mobile Number.
|
||||
</div> </div> </div>
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label>Customer Address</label>
|
||||
<input class="form-control" type="Text" formControlName="customer_address" style="border: none; outline: none; height:33px !important;" />
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Deployment Type</label>
|
||||
<select formControlName="deployment_type">
|
||||
@ -935,6 +906,8 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- multiselect checkbox field start -->
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Select Objective</label>
|
||||
@ -1017,14 +990,53 @@
|
||||
</div> </div> </div>
|
||||
<!-- multiselect checkbox field end -->
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Quantity</label>
|
||||
<input class="clr-input" type="number" formControlName="quantity" />
|
||||
<div *ngIf="submitted && entryForm.controls.quantity.errors" class="error_mess">
|
||||
<div *ngIf="submitted && entryForm.controls.quantity.errors.required" class="error_mess">*This field is Required</div>
|
||||
<label> Manufacturer</label>
|
||||
<select formControlName="manufacturer">
|
||||
<option [value]="null">Choose Manufacturer</option>
|
||||
<option *ngFor="let item of selectmanufacturer" [value]="item.manufacturer_name">{{item.manufacturer_name}}</option>
|
||||
</select> </div>
|
||||
|
||||
|
||||
|
||||
<!-- dependent dropdown field start -->
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Type</label> <select formControlName="type" class="clr-dropdown">
|
||||
<option [ngValue]="null">Select Option</option>
|
||||
<option *ngFor="let entity of typedependentData" [value]="entity.type_name">{{ entity.type_name}}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- dependent dropdown field end -->
|
||||
|
||||
<!-- dependent dropdown field start -->
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Product</label> <select formControlName="product" class="clr-dropdown">
|
||||
<option [ngValue]="null">Select Option</option>
|
||||
<option *ngFor="let entity of productdependentData" [value]="entity.product_name">{{ entity.product_name}}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- dependent dropdown field end -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Price</label>
|
||||
<input class="clr-input" type="number" formControlName="price" />
|
||||
@ -1033,22 +1045,24 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Quantity</label>
|
||||
<input class="clr-input" type="number" formControlName="quantity" />
|
||||
<div *ngIf="submitted && entryForm.controls.quantity.errors" class="error_mess">
|
||||
<div *ngIf="submitted && entryForm.controls.quantity.errors.required" class="error_mess">*This field is Required</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label>total</label>
|
||||
<input class="clr-input" type="text" [value]="totaltotal" readonly />
|
||||
</div>
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label>Description</label>
|
||||
<input class="form-control" type="Text" formControlName="description" style="border: none; outline: none; height:33px !important;" />
|
||||
</div>
|
||||
|
||||
<div class="clr-col-sm-12">
|
||||
<label> Phone Number</label>
|
||||
<input class="clr-input" type="text" formControlName="phone_number" pattern="((\+)?([1-9]{2}))?[1-9]{1}[0-9]{9}$" />
|
||||
<div *ngIf="submitted && entryForm.controls['phone_number'].errors" class="error_mess">
|
||||
<div *ngIf="submitted && entryForm.controls['phone_number'].hasError('pattern')" class="error_mess">* Please Follow your pattern,+91 Enter 10 digit Mobile Number.
|
||||
</div> </div> </div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -1058,30 +1072,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- one to many code start here -->
|
||||
<div style="margin-top: 30px;"><h4 style="display: inline;">order summary </h4>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user