build_app
This commit is contained in:
parent
d981a7bfce
commit
87c6721aac
@ -1,3 +1,20 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
import { ChildformComponent } from './BuilderComponents/stpkg/Childform/Childform.component';
|
||||
import { DistrictComponent } from './BuilderComponents/testdata/District/District.component';
|
||||
import { StateComponent } from './BuilderComponents/testdata/State/State.component';
|
||||
@ -277,6 +294,40 @@ const routes: Routes = [
|
||||
|
||||
|
||||
// buildercomponents
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{path:'Childform',component:ChildformComponent},
|
||||
|
||||
|
||||
|
||||
@ -1,3 +1,20 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
import { ChildformComponent } from './BuilderComponents/stpkg/Childform/Childform.component';
|
||||
import { DistrictComponent } from './BuilderComponents/testdata/District/District.component';
|
||||
import { StateComponent } from './BuilderComponents/testdata/State/State.component';
|
||||
@ -150,6 +167,40 @@ import { MyworkspaceComponent } from './admin/myworkspace/myworkspace.component'
|
||||
|
||||
|
||||
// buildercomponents
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
ChildformComponent,
|
||||
|
||||
|
||||
|
||||
@ -117,6 +117,57 @@ addCustomMenu( "Basicp3","Basicp3", "Transcations");
|
||||
addCustomMenu( "Basicp2","Basicp2", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Basicp1","Basicp1", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Childform","Childform", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "District","District", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "State","State", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Country","Country", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Ad9","Ad9", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Ad8","Ad8", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Ad7","Ad7", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Ad6","Ad6", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Adv5","Adv5", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Adv4","Adv4", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Support","Support", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Adv3","Adv3", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Dv2","Dv2", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Adv1","Adv1", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Basicp3","Basicp3", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Basicp2","Basicp2", "Transcations");
|
||||
|
||||
|
||||
addCustomMenu( "Basicp1","Basicp1", "Transcations");
|
||||
|
||||
|
||||
|
||||
@ -21,9 +21,9 @@ private DistrictRepository Repository;
|
||||
List<District> list= Repository.findAll();
|
||||
ArrayList<District_ListFilter1> l = new ArrayList<>();
|
||||
for (District data : list) {
|
||||
boolean isactive = data.getActive();
|
||||
Boolean isActive = data.getActive();
|
||||
|
||||
if (isactive) {String State_name = data.getState_name();
|
||||
if (Boolean.TRUE.equals(isActive)) {String State_name = data.getState_name();
|
||||
System.out.println(State_name + "\n");
|
||||
|
||||
if ("item".equals(State_name)){
|
||||
@ -41,9 +41,9 @@ return l;}
|
||||
List<District> list= Repository.findAll();
|
||||
ArrayList<District_ListFilter1> l = new ArrayList<>();
|
||||
for (District data : list) {
|
||||
boolean isactive = data.getActive();
|
||||
Boolean isActive = data.getActive();
|
||||
|
||||
if (isactive) {String State_name = data.getState_name();
|
||||
if (Boolean.TRUE.equals(isActive)) {String State_name = data.getState_name();
|
||||
System.out.println(State_name + "\n");
|
||||
|
||||
if (item.equals(State_name)){
|
||||
|
||||
@ -21,9 +21,9 @@ private StateRepository Repository;
|
||||
List<State> list= Repository.findAll();
|
||||
ArrayList<State_ListFilter1> l = new ArrayList<>();
|
||||
for (State data : list) {
|
||||
boolean isactive = data.getActive();
|
||||
Boolean isActive = data.getActive();
|
||||
|
||||
if (isactive) {String Country_name = data.getCountry_name();
|
||||
if (Boolean.TRUE.equals(isActive)) {String Country_name = data.getCountry_name();
|
||||
System.out.println(Country_name + "\n");
|
||||
|
||||
if ("item".equals(Country_name)){
|
||||
@ -41,9 +41,9 @@ return l;}
|
||||
List<State> list= Repository.findAll();
|
||||
ArrayList<State_ListFilter1> l = new ArrayList<>();
|
||||
for (State data : list) {
|
||||
boolean isactive = data.getActive();
|
||||
Boolean isActive = data.getActive();
|
||||
|
||||
if (isactive) {String Country_name = data.getCountry_name();
|
||||
if (Boolean.TRUE.equals(isActive)) {String Country_name = data.getCountry_name();
|
||||
System.out.println(Country_name + "\n");
|
||||
|
||||
if (item.equals(Country_name)){
|
||||
|
||||
@ -21,9 +21,9 @@ private CountryRepository Repository;
|
||||
List<Country> list= Repository.findAll();
|
||||
ArrayList<Country_ListFilter1> l = new ArrayList<>();
|
||||
for (Country data : list) {
|
||||
boolean isactive = data.getActive();
|
||||
Boolean isActive = data.getActive();
|
||||
|
||||
if (isactive) {{
|
||||
if (Boolean.TRUE.equals(isActive)) {{
|
||||
Country_ListFilter1 dummy = new Country_ListFilter1();
|
||||
dummy.setId(data.getId());
|
||||
dummy.setName(data.getName());
|
||||
@ -39,9 +39,9 @@ return l;}
|
||||
List<Country> list= Repository.findAll();
|
||||
ArrayList<Country_ListFilter1> l = new ArrayList<>();
|
||||
for (Country data : list) {
|
||||
boolean isactive = data.getActive();
|
||||
Boolean isActive = data.getActive();
|
||||
|
||||
if (isactive) {{
|
||||
if (Boolean.TRUE.equals(isActive)) {{
|
||||
Country_ListFilter1 dummy = new Country_ListFilter1();
|
||||
dummy.setId(data.getId());
|
||||
dummy.setName(data.getName());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user