build_app

This commit is contained in:
risadmin_prod 2025-07-25 10:12:54 +00:00
parent 802751a548
commit f6fcc6c992
13 changed files with 161 additions and 224 deletions

View File

@ -81,6 +81,21 @@ addCustomMenu( "Manufacturer","Manufacturer", "Transcations");
addCustomMenu( "Deployment_type","Deployment_type", "Transcations");
addCustomMenu( "Customer_information","Customer_information", "Transcations");
addCustomMenu( "Types","Types", "Transcations");
addCustomMenu( "Product","Product", "Transcations");
addCustomMenu( "Manufacturer","Manufacturer", "Transcations");
addCustomMenu( "Deployment_type","Deployment_type", "Transcations");
addCustomMenu( "Customer_information","Customer_information", "Transcations");

View File

@ -43,8 +43,6 @@ import com.realnet.basicp1.Services.Customer_informationService ;
@ -85,8 +83,6 @@ public class Customer_informationController {
@ -119,8 +115,6 @@ public class Customer_informationController {
@ -195,8 +189,6 @@ public class Customer_informationController {

View File

@ -43,8 +43,6 @@ import com.realnet.basicp1.Services.Customer_informationService ;
@ -85,8 +83,6 @@ public class tokenFree_Customer_informationController {
@ -119,8 +115,6 @@ public class tokenFree_Customer_informationController {
@ -195,8 +189,6 @@ public class tokenFree_Customer_informationController {

View File

@ -31,8 +31,6 @@ import com.realnet.WhoColumn.Entity.Extension;
@ -82,7 +80,7 @@ private String deployment_typename;
private Boolean dg_monitoring___with_fule;
private Boolean busbar_monitoring;
@ -90,7 +88,11 @@ private Boolean active_energy;
private Boolean dg_monitoring___without_fule;
private Boolean dg_monitoring__with_fule;
private Boolean dg_monitoring_without_fule;
@ -102,10 +104,6 @@ private Boolean apfc_panel_monitoring;
private Boolean busbar_monitoring;
private Boolean lt_panel_monitoring;
@ -114,11 +112,11 @@ private Boolean ht_panel_monitoring;
private Boolean compressed_air__gag_monitoring;
private Boolean compressed_air_gag_monitoring;
private Boolean compressed_air___lpg_n2_o2_co2;
private Boolean compressed_air__lpg_n2_o2_co2;
@ -136,11 +134,9 @@ private int price;
private String total;
private String descriptionn;
private String description;
private int gst;
}

View File

@ -48,8 +48,6 @@ import com.realnet.basicp1.Services.Service;
import org.springframework.stereotype.Service;
@Service
@ -91,8 +89,6 @@ private Customer_informationRepository Repository;
public Customer_information Savedata(Customer_information data) {
@ -160,8 +156,6 @@ if (data.getDeployment_type() != null) {
data.setUpdatedBy(getUser().getUserId());
data.setCreatedBy(getUser().getUserId());
data.setAccountId(getUser().getAccount().getAccount_id());
@ -219,7 +213,7 @@ old.setDeployment_type(data.getDeployment_type());
old.setUps_monitoring(data.getUps_monitoring());
old.setBusbar_monitoring(data.getBusbar_monitoring());
@ -227,23 +221,23 @@ old.setActive_energy(data.getActive_energy());
old.setDg_monitoring___with_fule(data.getDg_monitoring___with_fule());
old.setDg_monitoring___without_fule(data.getDg_monitoring___without_fule());
old.setWater_management_stp_etp(data.getWater_management_stp_etp());
old.setApfc_panel_monitoring(data.getApfc_panel_monitoring());
old.setDg_monitoring__with_fule(data.getDg_monitoring__with_fule());
old.setBusbar_monitoring(data.getBusbar_monitoring());
old.setDg_monitoring_without_fule(data.getDg_monitoring_without_fule());
old.setUps_monitoring(data.getUps_monitoring());
old.setApfc_panel_monitoring(data.getApfc_panel_monitoring());
@ -255,11 +249,11 @@ old.setHt_panel_monitoring(data.getHt_panel_monitoring());
old.setCompressed_air__gag_monitoring(data.getCompressed_air__gag_monitoring());
old.setCompressed_air_gag_monitoring(data.getCompressed_air_gag_monitoring());
old.setCompressed_air___lpg_n2_o2_co2(data.getCompressed_air___lpg_n2_o2_co2());
old.setCompressed_air__lpg_n2_o2_co2(data.getCompressed_air__lpg_n2_o2_co2());
@ -275,12 +269,10 @@ old.setPrice(data.getPrice());
old.setTotal(data.getTotal());
old.setDescriptionn(data.getDescriptionn());
old.setDescription(data.getDescription());
old.setGst(data.getGst());
final Customer_information test = Repository.save(old);
data.setUpdatedBy(getUser().getUserId());
return test;}
@ -311,8 +303,6 @@ final Customer_information test = Repository.save(old);

View File

@ -1,4 +1,4 @@
CREATE TABLE db.Customer_information(id BIGINT NOT NULL AUTO_INCREMENT, lt_panel_monitoring bit(1), contact_person VARCHAR(400), product VARCHAR(400), phone_number int, compressed_air_-_lpg/n2/o2/co2 bit(1), descriptionn VARCHAR(400), water_management-stp/etp bit(1), order_summary VARCHAR(400), manufacturer int, deployment_type int, compressed_air_-gag_monitoring bit(1), apfc_panel_monitoring bit(1), active_energy bit(1), ht_panel_monitoring bit(1), email_address VARCHAR(400), dg_monitoring_-_with_fule bit(1), quantity int, gst int, ups_monitoring bit(1), water_management-water_monitoring bit(1), type VARCHAR(400), dg_monitoring_-_without_fule bit(1), price int, busbar_monitoring bit(1), total VARCHAR(400), company_name VARCHAR(400), customer_address VARCHAR(400), PRIMARY KEY (id));
CREATE TABLE db.Customer_information(id BIGINT NOT NULL AUTO_INCREMENT, lt_panel_monitoring bit(1), description VARCHAR(400), contact_person VARCHAR(400), product VARCHAR(400), phone_number int, total VARCHAR(400), order_summary VARCHAR(400), manufacturer int, deployment_type int, apfc_panel_monitoring bit(1), active_energy bit(1), ht_panel_monitoring bit(1), email_address VARCHAR(400), water_management_stp/etp bit(1), quantity int, ups_monitoring bit(1), dg_monitoring__with_fule bit(1), water_management_water_monitoring bit(1), dg_monitoring_without_fule bit(1), type VARCHAR(400), price int, busbar_monitoring bit(1), company_name VARCHAR(400), compressed_air_gag_monitoring bit(1), compressed_air__lpg_n2_o2_co2 bit(1), customer_address VARCHAR(400), PRIMARY KEY (id));
CREATE TABLE db.Deployment_type(id BIGINT NOT NULL AUTO_INCREMENT, deployment_type VARCHAR(400), PRIMARY KEY (id));

View File

@ -61,22 +61,17 @@
<clr-dg-column [clrDgField]="' dg_monitoring_without_fule'"> <ng-container *clrDgHideableColumn="{hidden: false}"> dg monitoring without fule
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="' active_energy'"> <ng-container *clrDgHideableColumn="{hidden: false}"> active energy
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="' dg_monitoring___with_fule'"> <ng-container *clrDgHideableColumn="{hidden: false}"> dg monitoring - with fule
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="' dg_monitoring___without_fule'"> <ng-container *clrDgHideableColumn="{hidden: false}"> dg monitoring - without fule
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="' water_management_stp_etp'"> <ng-container *clrDgHideableColumn="{hidden: false}"> water management-stp/etp
<clr-dg-column [clrDgField]="' dg_monitoring__with_fule'"> <ng-container *clrDgHideableColumn="{hidden: false}"> dg monitoring with fule
</ng-container></clr-dg-column>
@ -106,17 +101,22 @@
<clr-dg-column [clrDgField]="' compressed_air__gag_monitoring'"> <ng-container *clrDgHideableColumn="{hidden: false}"> compressed air -gag monitoring
<clr-dg-column [clrDgField]="' compressed_air_gag_monitoring'"> <ng-container *clrDgHideableColumn="{hidden: false}"> compressed air gag monitoring
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="' compressed_air___lpg_n2_o2_co2'"> <ng-container *clrDgHideableColumn="{hidden: false}"> compressed air - lpg/n2/o2/co2
<clr-dg-column [clrDgField]="' compressed_air__lpg_n2_o2_co2'"> <ng-container *clrDgHideableColumn="{hidden: false}"> compressed air lpg n2 o2 co2
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="' water_management_water_monitoring'"> <ng-container *clrDgHideableColumn="{hidden: false}"> water management-water monitoring
<clr-dg-column [clrDgField]="' water_management_water_monitoring'"> <ng-container *clrDgHideableColumn="{hidden: false}"> water management water monitoring
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="' water_management_stp_etp'"> <ng-container *clrDgHideableColumn="{hidden: false}"> water management stp/etp
</ng-container></clr-dg-column>
@ -133,15 +133,11 @@
<clr-dg-column [clrDgField]="'descriptionn'"> <ng-container *clrDgHideableColumn="{hidden: false}"> Descriptionn
<clr-dg-column [clrDgField]="'description'"> <ng-container *clrDgHideableColumn="{hidden: false}"> Description
</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="'gst'"> <ng-container *clrDgHideableColumn="{hidden: false}"> GST
</ng-container></clr-dg-column>
<!-- who column -->
<clr-dg-column> <ng-container *clrDgHideableColumn="{hidden: false}">
@ -181,7 +177,7 @@
<clr-dg-cell>{{user.dg_monitoring___without_fule}}</clr-dg-cell>
<clr-dg-cell>{{user.lt_panel_monitoring}}</clr-dg-cell>
@ -189,7 +185,11 @@
<clr-dg-cell>{{user.dg_monitoring___with_fule}}</clr-dg-cell>
<clr-dg-cell>{{user.dg_monitoring__with_fule}}</clr-dg-cell>
<clr-dg-cell>{{user.dg_monitoring_without_fule}}</clr-dg-cell>
@ -197,6 +197,10 @@
<clr-dg-cell>{{user.water_management_stp_etp}}</clr-dg-cell>
<clr-dg-cell>{{user.apfc_panel_monitoring}}</clr-dg-cell>
@ -205,29 +209,21 @@
<clr-dg-cell>{{user.lt_panel_monitoring}}</clr-dg-cell>
<clr-dg-cell>{{user.ht_panel_monitoring}}</clr-dg-cell>
<clr-dg-cell>{{user.compressed_air__gag_monitoring}}</clr-dg-cell>
<clr-dg-cell>{{user.compressed_air_gag_monitoring}}</clr-dg-cell>
<clr-dg-cell>{{user.compressed_air___lpg_n2_o2_co2}}</clr-dg-cell>
<clr-dg-cell>{{user.compressed_air__lpg_n2_o2_co2}}</clr-dg-cell>
<clr-dg-cell>{{user.water_management_water_monitoring}}</clr-dg-cell>
<clr-dg-cell>{{user.water_management_stp_etp}}</clr-dg-cell>
@ -239,13 +235,10 @@
<clr-dg-cell>{{user.descriptionn }}</clr-dg-cell>
<clr-dg-cell>{{user.description }}</clr-dg-cell>
<clr-dg-cell>{{user.gst }}</clr-dg-cell>
<!-- who column -->
<clr-dg-cell>
@ -436,8 +429,6 @@
<!-- // EDIT DATA......... -->
<clr-modal [(clrModalOpen)]="modalEdit" [clrModalSize]="'lg'" [clrModalStaticBackdrop]="true">
<h3 class="modal-title">Update Customer Information
@ -471,8 +462,6 @@
<button class="btn btn-icon btn-primary" (click)="openvalueListorder_summary('EDIT')">V</button>
</h3>
<div class="modal-body" *ngIf="rowSelected.id">
<h2 class="heading">{{rowSelected.id}}</h2>
@ -556,7 +545,7 @@
<label>Deployment Type</label>
<select name="deployment_type" [(ngModel)]="rowSelected.deployment_type">
<option [value]="null">Choose deployment_type</option>
<option *ngFor=" let item of selectdeployment_type" [value]="item.deployment_type">{{item.deployment_type }}</option> </select> </div>
<option *ngFor=" let item of selectdeployment_type" [value]="item.id">{{item.deployment_type }}</option> </select> </div>
@ -568,8 +557,8 @@
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="busbar_monitoring" name="busbar_monitoring" [(ngModel)]="rowSelected.busbar_monitoring" class="clr-checkbox" />
<label for="busbar_monitoring" class="clr-control-label"> busbar monitoring</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="dg_monitoring__with_fule" name="dg_monitoring__with_fule" [(ngModel)]="rowSelected.dg_monitoring__with_fule" class="clr-checkbox" />
<label for="dg_monitoring__with_fule" class="clr-control-label"> dg monitoring with fule</label> </div>
@ -582,22 +571,8 @@
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="water_management_stp_etp" name="water_management_stp_etp" [(ngModel)]="rowSelected.water_management_stp_etp" class="clr-checkbox" />
<label for="water_management_stp_etp" class="clr-control-label"> water management-stp/etp</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="dg_monitoring___with_fule" name="dg_monitoring___with_fule" [(ngModel)]="rowSelected.dg_monitoring___with_fule" class="clr-checkbox" />
<label for="dg_monitoring___with_fule" class="clr-control-label"> dg monitoring - with fule</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="dg_monitoring___without_fule" name="dg_monitoring___without_fule" [(ngModel)]="rowSelected.dg_monitoring___without_fule" class="clr-checkbox" />
<label for="dg_monitoring___without_fule" class="clr-control-label"> dg monitoring - without fule</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="dg_monitoring_without_fule" name="dg_monitoring_without_fule" [(ngModel)]="rowSelected.dg_monitoring_without_fule" class="clr-checkbox" />
<label for="dg_monitoring_without_fule" class="clr-control-label"> dg monitoring without fule</label> </div>
@ -617,6 +592,13 @@
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="busbar_monitoring" name="busbar_monitoring" [(ngModel)]="rowSelected.busbar_monitoring" class="clr-checkbox" />
<label for="busbar_monitoring" class="clr-control-label"> busbar monitoring</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="lt_panel_monitoring" name="lt_panel_monitoring" [(ngModel)]="rowSelected.lt_panel_monitoring" class="clr-checkbox" />
<label for="lt_panel_monitoring" class="clr-control-label"> lt panel monitoring</label> </div>
@ -624,6 +606,13 @@
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="water_management_stp_etp" name="water_management_stp_etp" [(ngModel)]="rowSelected.water_management_stp_etp" class="clr-checkbox" />
<label for="water_management_stp_etp" class="clr-control-label"> water management stp/etp</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="ht_panel_monitoring" name="ht_panel_monitoring" [(ngModel)]="rowSelected.ht_panel_monitoring" class="clr-checkbox" />
<label for="ht_panel_monitoring" class="clr-control-label"> ht panel monitoring</label> </div>
@ -631,22 +620,22 @@
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="compressed_air__gag_monitoring" name="compressed_air__gag_monitoring" [(ngModel)]="rowSelected.compressed_air__gag_monitoring" class="clr-checkbox" />
<label for="compressed_air__gag_monitoring" class="clr-control-label"> compressed air -gag monitoring</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="compressed_air_gag_monitoring" name="compressed_air_gag_monitoring" [(ngModel)]="rowSelected.compressed_air_gag_monitoring" class="clr-checkbox" />
<label for="compressed_air_gag_monitoring" class="clr-control-label"> compressed air gag monitoring</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="compressed_air___lpg_n2_o2_co2" name="compressed_air___lpg_n2_o2_co2" [(ngModel)]="rowSelected.compressed_air___lpg_n2_o2_co2" class="clr-checkbox" />
<label for="compressed_air___lpg_n2_o2_co2" class="clr-control-label"> compressed air - lpg/n2/o2/co2</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="compressed_air__lpg_n2_o2_co2" name="compressed_air__lpg_n2_o2_co2" [(ngModel)]="rowSelected.compressed_air__lpg_n2_o2_co2" class="clr-checkbox" />
<label for="compressed_air__lpg_n2_o2_co2" class="clr-control-label"> compressed air lpg n2 o2 co2</label> </div>
<div class="clr-checkbox-wrapper"> <input type="checkbox" id="water_management_water_monitoring" name="water_management_water_monitoring" [(ngModel)]="rowSelected.water_management_water_monitoring" class="clr-checkbox" />
<label for="water_management_water_monitoring" class="clr-control-label"> water management-water monitoring</label> </div>
<label for="water_management_water_monitoring" class="clr-control-label"> water management water monitoring</label> </div>
@ -667,22 +656,17 @@
</div>
<div class="clr-col-sm-12">
<label>Total</label>
<label>total</label>
<input class="clr-input" type="text" [value]="totaltotal" readonly />
</div>
<div class="clr-col-sm-12">
<label>Descriptionn</label>
<input class="clr-input" type="text" [(ngModel)]="rowSelected.descriptionn" name="descriptionn" />
<label>Description</label>
<input class="clr-input" type="text" [(ngModel)]="rowSelected.description" name="description" />
</div>
<div class="clr-col-sm-12">
<label>GST</label>
<input id="name" class="clr-input" type="number" [(ngModel)]="rowSelected.gst" name="gst" />
</div>
</div>
@ -711,8 +695,6 @@
@ -790,8 +772,6 @@
<button class="btn btn-icon btn-primary" (click)="openvalueListorder_summary('ADD')">V</button>
<!-- aeroplane icon -->
&nbsp; &nbsp; &nbsp; &nbsp;
<a *ngIf="userrole?.includes('ADMIN')" style="float: right;" href="javascript:void(0)" role="tooltip" aria-haspopup="true"
@ -883,7 +863,7 @@
<label> Deployment Type</label>
<select formControlName="deployment_type">
<option [value]="null">Choose Deployment Type</option>
<option *ngFor="let item of selectdeployment_type" [value]="item.deployment_type">{{item.deployment_type}}</option>
<option *ngFor="let item of selectdeployment_type" [value]="item.id">{{item.deployment_type}}</option>
</select> </div>
@ -897,8 +877,8 @@
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="ups_monitoring" formControlName="ups_monitoring" class="clr-checkbox" />
<label for="ups_monitoring" class="clr-control-label">ups monitoring</label> </div>
<input type="checkbox" id="dg_monitoring_without_fule" formControlName="dg_monitoring_without_fule" class="clr-checkbox" />
<label for="dg_monitoring_without_fule" class="clr-control-label">dg monitoring without fule</label> </div>
@ -909,14 +889,14 @@
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="dg_monitoring___with_fule" formControlName="dg_monitoring___with_fule" class="clr-checkbox" />
<label for="dg_monitoring___with_fule" class="clr-control-label">dg monitoring - with fule</label> </div>
<input type="checkbox" id="dg_monitoring__with_fule" formControlName="dg_monitoring__with_fule" class="clr-checkbox" />
<label for="dg_monitoring__with_fule" class="clr-control-label">dg monitoring with fule</label> </div>
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="dg_monitoring___without_fule" formControlName="dg_monitoring___without_fule" class="clr-checkbox" />
<label for="dg_monitoring___without_fule" class="clr-control-label">dg monitoring - without fule</label> </div>
<input type="checkbox" id="ups_monitoring" formControlName="ups_monitoring" class="clr-checkbox" />
<label for="ups_monitoring" class="clr-control-label">ups monitoring</label> </div>
@ -945,26 +925,26 @@
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="compressed_air__gag_monitoring" formControlName="compressed_air__gag_monitoring" class="clr-checkbox" />
<label for="compressed_air__gag_monitoring" class="clr-control-label">compressed air -gag monitoring</label> </div>
<input type="checkbox" id="compressed_air_gag_monitoring" formControlName="compressed_air_gag_monitoring" class="clr-checkbox" />
<label for="compressed_air_gag_monitoring" class="clr-control-label">compressed air gag monitoring</label> </div>
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="compressed_air___lpg_n2_o2_co2" formControlName="compressed_air___lpg_n2_o2_co2" class="clr-checkbox" />
<label for="compressed_air___lpg_n2_o2_co2" class="clr-control-label">compressed air - lpg/n2/o2/co2</label> </div>
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="water_management_stp_etp" formControlName="water_management_stp_etp" class="clr-checkbox" />
<label for="water_management_stp_etp" class="clr-control-label">water management-stp/etp</label> </div>
<input type="checkbox" id="compressed_air__lpg_n2_o2_co2" formControlName="compressed_air__lpg_n2_o2_co2" class="clr-checkbox" />
<label for="compressed_air__lpg_n2_o2_co2" class="clr-control-label">compressed air lpg n2 o2 co2</label> </div>
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="water_management_water_monitoring" formControlName="water_management_water_monitoring" class="clr-checkbox" />
<label for="water_management_water_monitoring" class="clr-control-label">water management-water monitoring</label> </div>
<label for="water_management_water_monitoring" class="clr-control-label">water management water monitoring</label> </div>
<div class="clr-checkbox-wrapper">
<input type="checkbox" id="water_management_stp_etp" formControlName="water_management_stp_etp" class="clr-checkbox" />
<label for="water_management_stp_etp" class="clr-control-label">water management stp/etp</label> </div>
</div> </div> </div>
@ -987,25 +967,17 @@
</div>
<div class="clr-col-sm-12">
<label>Total</label>
<label>total</label>
<input class="clr-input" type="text" [value]="totaltotal" readonly />
</div>
<div class="clr-col-sm-12">
<label> Descriptionn</label>
<input class="clr-input" type="text" formControlName="descriptionn" />
<label> Description</label>
<input class="clr-input" type="text" formControlName="description" />
</div>
<div class="clr-col-sm-12">
<label> GST</label>
<input class="clr-input" type="number" formControlName="gst" />
<div *ngIf="submitted && entryForm.controls.gst.errors" class="error_mess">
<div *ngIf="submitted && entryForm.controls.gst.errors.required" class="error_mess">*This field is Required</div>
</div>
</div>
</div>
@ -1035,8 +1007,6 @@
@ -1132,10 +1102,6 @@
<clr-dg-column [clrDgField]="'total'"> <ng-container *clrDgHideableColumn="{hidden: false}">total</ng-container></clr-dg-column>
<clr-dg-column [clrDgField]="'gst'"> <ng-container *clrDgHideableColumn="{hidden: false}">gst</ng-container></clr-dg-column>
<clr-dg-row *clrDgItems="let user of product?.slice()?.reverse() | filter:searchcusttextorder_summary; let i = index " [clrDgItem]="user">
@ -1159,10 +1125,6 @@
<clr-dg-cell (click)="getcustorder_summaryID(user.id)" style="color: rgb(108, 108, 194); cursor:pointer;">{{user.total}}</clr-dg-cell>
<clr-dg-cell (click)="getcustorder_summaryID(user.id)" style="color: rgb(108, 108, 194); cursor:pointer;">{{user.gst}}</clr-dg-cell>
</clr-dg-row> <clr-dg-footer>
<clr-dg-pagination #pagination [clrDgPageSize]="10">
@ -1172,6 +1134,4 @@
</clr-dg-footer> </clr-datagrid> </div></clr-modal>
<!-- value List field end-->
<!-- htmlpopup -->

View File

@ -86,7 +86,7 @@ deployment_type : [null],
dg_monitoring___without_fule:[false],
dg_monitoring__with_fule:[false],
@ -94,7 +94,11 @@ active_energy:[false],
dg_monitoring___with_fule:[false],
water_management_stp_etp:[false],
dg_monitoring_without_fule:[false],
@ -106,10 +110,6 @@ apfc_panel_monitoring:[false],
water_management_stp_etp:[false],
busbar_monitoring:[false],
@ -122,11 +122,11 @@ ht_panel_monitoring:[false],
compressed_air__gag_monitoring:[false],
compressed_air_gag_monitoring:[false],
compressed_air___lpg_n2_o2_co2:[false],
compressed_air__lpg_n2_o2_co2:[false],
@ -140,12 +140,10 @@ price : [null,[Validators.required]],
descriptionn : [null],
description : [null],
gst : [null,[Validators.required]],
@ -174,8 +172,6 @@ gst : [null,[Validators.required]],
@ -269,8 +265,6 @@ this.getalldeployment_type();
}
ngOnDestroy(): void {
@ -304,8 +298,6 @@ this.getalldeployment_type();
@ -357,8 +349,6 @@ this.dependet2product(row.dependentDD);
@ -415,8 +405,6 @@ this.onInputChangetotal ('edit');
//console.log("in update");
console.log("id " + id);
console.log(this.rowSelected);
@ -457,8 +445,6 @@ setTimeout(() => {
@ -507,8 +493,6 @@ onCreate() {
@ -547,8 +531,6 @@ setTimeout(() => {
@ -597,8 +579,6 @@ this.modalAdd = true; this.submitted = false;
@ -844,10 +824,6 @@ getcustorder_summaryID(id:number){
this.entryForm.get('total').setValue(data.total);
this.entryForm.get('gst').setValue(data.gst);
}else if(this.valuelistMode == "EDIT"){
@ -872,16 +848,10 @@ getcustorder_summaryID(id:number){
this.rowSelected.total= data. total
this.rowSelected.gst= data. gst
} }); this.valueListModalorder_summary =false;
} //value List field end
// updateaction
}
@ -910,8 +880,6 @@ getcustorder_summaryID(id:number){

View File

@ -1,3 +1,8 @@
import { TypesComponent } from './BuilderComponents/basicp1/Types/Types.component';
import { ProductComponent } from './BuilderComponents/basicp1/Product/Product.component';
import { ManufacturerComponent } from './BuilderComponents/basicp1/Manufacturer/Manufacturer.component';
@ -261,6 +266,16 @@ const routes: Routes = [
// buildercomponents
{path:'Types',component:TypesComponent},

View File

@ -1,3 +1,8 @@
import { TypesComponent } from './BuilderComponents/basicp1/Types/Types.component';
import { ProductComponent } from './BuilderComponents/basicp1/Product/Product.component';
import { ManufacturerComponent } from './BuilderComponents/basicp1/Manufacturer/Manufacturer.component';
@ -134,6 +139,16 @@ import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/S
// buildercomponents
TypesComponent,

View File

@ -232,33 +232,31 @@
"Contact_Person": "Contact_Person",
"Product": "Product",
"Phone_Number": "Phone_Number",
"Compressed_Air_-_LPG/N2/O2/CO2": "Compressed_Air_-_LPG/N2/O2/CO2",
"Manufacturer_name": "Manufacturer_name",
"Descriptionn": "Descriptionn",
"Water_Management-STP/ETP": "Water_Management-STP/ETP",
"total": "total",
"Order_Summary": "Order_Summary",
"Manufacturer": "Manufacturer",
"Deployment_Type": "Deployment_Type",
"Compressed_Air_-Gag_Monitoring": "Compressed_Air_-Gag_Monitoring",
"APFC_Panel_Monitoring": "APFC_Panel_Monitoring",
"Active_Energy": "Active_Energy",
"Type_Name": "Type_Name",
"HT_Panel_Monitoring": "HT_Panel_Monitoring",
"Email_Address": "Email_Address",
"Customer_information": "Customer_information",
"DG_Monitoring_-_with_fule": "DG_Monitoring_-_with_fule",
"Water_Management_STP/ETP": "Water_Management_STP/ETP",
"Quantity": "Quantity",
"GST": "GST",
"Product_Name": "Product_Name",
"UPS_Monitoring": "UPS_Monitoring",
"Deployment_type": "Deployment_type",
"Water_Management-water_Monitoring": "Water_Management-water_Monitoring",
"DG_Monitoring__with_fule": "DG_Monitoring__with_fule",
"Water_Management_water_Monitoring": "Water_Management_water_Monitoring",
"DG_Monitoring_without_fule": "DG_Monitoring_without_fule",
"Type": "Type",
"Type_name": "Type_name",
"DG_Monitoring_-_without_fule": "DG_Monitoring_-_without_fule",
"Price": "Price",
"Busbar_Monitoring": "Busbar_Monitoring",
"Total": "Total",
"Company_Name": "Company_Name",
"Compressed_Air_Gag_Monitoring": "Compressed_Air_Gag_Monitoring",
"Compressed_Air__LPG_N2_O2_CO2": "Compressed_Air__LPG_N2_O2_CO2",
"Customer_Address": "Customer_Address"
}