From 2b473fd7eca106f41519a1e41d071661bad12672 Mon Sep 17 00:00:00 2001 From: risadmin_prod Date: Mon, 16 Jun 2025 04:58:35 +0000 Subject: [PATCH] build_app --- .../login/login-page/login_environment.ts | 18 +- .../testdata/Country/Country.component.html | 376 +++++++++++++ .../testdata/Country/Country.component.scss | 78 +++ .../testdata/Country/Country.component.ts | 270 +++++++++ .../testdata/Country/Country.service.ts | 39 ++ .../testdata/Country/Country_cardvariable.ts | 4 + .../Demoregistration.component.html | 518 ++++++++++++++++++ .../Demoregistration.component.scss | 78 +++ .../Demoregistration.component.ts | 405 ++++++++++++++ .../Demoregistration.service.ts | 58 ++ .../Demoregistration_cardvariable.ts | 4 + .../testdata/District/District.component.html | 405 ++++++++++++++ .../testdata/District/District.component.scss | 78 +++ .../testdata/District/District.component.ts | 294 ++++++++++ .../testdata/District/District.service.ts | 41 ++ .../District/District_cardvariable.ts | 4 + .../testdata/State/State.component.html | 405 ++++++++++++++ .../testdata/State/State.component.scss | 78 +++ .../testdata/State/State.component.ts | 294 ++++++++++ .../testdata/State/State.service.ts | 41 ++ .../testdata/State/State_cardvariable.ts | 4 + .../app/modules/main/main-routing.module.ts | 16 + .../src/app/modules/main/main.module.ts | 16 + .../src/assets/i18n/en.json | 17 +- .../Builders/Services/BuilderService.java | 12 + .../Controllers/CountryController.java | 99 ++++ .../Country_ListFilter1Controller.java | 24 + .../DemoregistrationController.java | 123 +++++ .../Controllers/DistrictController.java | 107 ++++ .../District_ListFilter1Controller.java | 24 + .../testdata/Controllers/StateController.java | 107 ++++ .../State_ListFilter1Controller.java | 24 + .../tokenFree_CountryController.java | 99 ++++ ...kenFree_Country_ListFilter1Controller.java | 24 + .../tokenFree_DemoregistrationController.java | 123 +++++ .../tokenFree_DistrictController.java | 107 ++++ ...enFree_District_ListFilter1Controller.java | 24 + .../tokenFree_StateController.java | 107 ++++ ...tokenFree_State_ListFilter1Controller.java | 24 + .../com/realnet/testdata/Entity/Country.java | 33 ++ .../testdata/Entity/Country_ListFilter1.java | 14 + .../testdata/Entity/Demoregistration.java | 54 ++ .../com/realnet/testdata/Entity/District.java | 37 ++ .../testdata/Entity/District_ListFilter1.java | 14 + .../com/realnet/testdata/Entity/State.java | 37 ++ .../testdata/Entity/State_ListFilter1.java | 14 + .../Repository/CountryRepository.java | 30 + .../DemoregistrationRepository.java | 36 ++ .../Repository/DistrictRepository.java | 32 ++ .../testdata/Repository/StateRepository.java | 32 ++ .../testdata/Services/CountryService.java | 93 ++++ .../Services/Country_ListFilter1Service.java | 51 ++ .../Services/DemoregistrationService.java | 151 +++++ .../testdata/Services/DistrictService.java | 103 ++++ .../Services/District_ListFilter1Service.java | 57 ++ .../testdata/Services/StateService.java | 103 ++++ .../Services/State_ListFilter1Service.java | 57 ++ .../authsec_mysql/mysql/wf_table/wf_table.sql | 8 + 58 files changed, 5511 insertions(+), 14 deletions(-) create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.html create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.scss create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.service.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country_cardvariable.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.html create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.scss create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.service.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration_cardvariable.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.html create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.scss create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.service.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District_cardvariable.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.html create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.scss create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.service.ts create mode 100644 testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State_cardvariable.ts create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/CountryController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/Country_ListFilter1Controller.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DemoregistrationController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DistrictController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/District_ListFilter1Controller.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/StateController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/State_ListFilter1Controller.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_CountryController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_Country_ListFilter1Controller.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DemoregistrationController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DistrictController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_District_ListFilter1Controller.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_StateController.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_State_ListFilter1Controller.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country_ListFilter1.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Demoregistration.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District_ListFilter1.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State_ListFilter1.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/CountryRepository.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DemoregistrationRepository.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DistrictRepository.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/StateRepository.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/CountryService.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/Country_ListFilter1Service.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DemoregistrationService.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DistrictService.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/District_ListFilter1Service.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/StateService.java create mode 100644 testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/State_ListFilter1Service.java create mode 100755 testdd001-testdb-d/authsec_mysql/mysql/wf_table/wf_table.sql diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts index 231b3a1..fdff417 100644 --- a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts @@ -2,14 +2,14 @@ export const LoginEnvironment = { - "templateNo": "", - "loginHeading": "", - "loginHeading2": "", - "isSignup": "", - "loginSignup": " ", - "loginSignup2": "", - "loginForgotpass": "", - "loginImage": "", - "loginImageURL": "" + "templateNo": "Template 1", + "loginHeading": "Welcome to", + "loginHeading2": "io8.dev", + "isSignup": "true", + "loginSignup": "Use your ID to sign in OR ", + "loginSignup2": "create one now", + "loginForgotpass": "FORGOT PASSWORD?", + "loginImage": "[]", + "loginImageURL": "null" } diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.html b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.html new file mode 100644 index 0000000..93acb64 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.html @@ -0,0 +1,376 @@ + +
+
+
+

Country

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Name + + + + Description + + + + Active + + + + + + Action + + + + + +{{user. name }} + + + + + + +{{user. active }} + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.scss b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.ts new file mode 100644 index 0000000..b63ec46 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.component.ts @@ -0,0 +1,270 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Countryservice} from './Country.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Countrycardvariable } from './Country_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Country', + templateUrl: './Country.component.html', + styleUrls: ['./Country.component.scss'] +}) +export class CountryComponent implements OnInit { + cardButton = Countrycardvariable.cardButton; + cardmodeldata = Countrycardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Countrycardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'Country_formCode' +tableName = 'Country'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Countryservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +name : [null], + +description : [null], + +active : [true], + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "Country_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + + + + + } + + + + + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + + + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + + + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + + + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} + + +rsModaldescription = false; +goToReplaceStringdescription(row){ +this.rowSelected = row; this.rsModaldescription =true; } + + + +// updateaction +} + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.service.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.service.ts new file mode 100644 index 0000000..05a5665 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country.service.ts @@ -0,0 +1,39 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Countryservice{ + private baseURL = "Country/Country" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + +// updateaction +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country_cardvariable.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country_cardvariable.ts new file mode 100644 index 0000000..efc9e50 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Country/Country_cardvariable.ts @@ -0,0 +1,4 @@ +export const Countrycardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.html b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.html new file mode 100644 index 0000000..383c306 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.html @@ -0,0 +1,518 @@ + +
+
+
+

Demoregistration

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Name + + + + Description + + + + Active + + + + country + + + + state + + + + district + + + + + + Action + + + + + +{{user. name }} + + + + + + +{{user. active }} + + +{{user. countryname }} + + +{{user. state }} + + +{{user. district }} + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.scss b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.ts new file mode 100644 index 0000000..90c3eb5 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.component.ts @@ -0,0 +1,405 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Demoregistrationservice} from './Demoregistration.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Demoregistrationcardvariable } from './Demoregistration_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Demoregistration', + templateUrl: './Demoregistration.component.html', + styleUrls: ['./Demoregistration.component.scss'] +}) +export class DemoregistrationComponent implements OnInit { + cardButton = Demoregistrationcardvariable.cardButton; + cardmodeldata = Demoregistrationcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Demoregistrationcardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'Demoregistration_formCode' +tableName = 'Demoregistration'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Demoregistrationservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +name : [null], + +description : [null], + +active : [true], + +country : [null], + +state : [null], + + +district : [null], + + + + + + + + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "Demoregistration_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + + + +this.getallcountry(); + + + // Listen for country changes + + + this.entryForm.get('country')?.valueChanges.subscribe((item) => { + + + if (item) { + this.dependet2state(item); + } else { + this.statedependentData = []; + this.entryForm.get('state')?.setValue(null); // clear state + } + }); + + + + // Listen for country changes + + + this.entryForm.get('state')?.valueChanges.subscribe((item) => { + + + if (item) { + this.dependet2district(item); + } else { + this.districtdependentData = []; + this.entryForm.get('district')?.setValue(null); // clear state + } + }); + + + + } + + + + + + + + + + + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + + +// Dependemt Dropdown field start +this.dependet2state(row.dependentDD); + // Dependemt Dropdown field end + +// Dependemt Dropdown field start +this.dependet2district(row.dependentDD); + // Dependemt Dropdown field end + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + + + + + + + + + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + + + + + + + + + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + + + + + + + + + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} + + +rsModaldescription = false; +goToReplaceStringdescription(row){ +this.rowSelected = row; this.rsModaldescription =true; } + + + +selectcountry ; +getallcountry() { + this.mainService.getAllcountry().subscribe(data=>{ +this.selectcountry = data; +console.log(data); +},(error) => { console.log(error); }); } + +// Dependemt Dropdown field start + + + statedependentData: any; +dependet2state (item){ + this.mainService.getstateDependent(item).subscribe( (data) => { + console.log(data); + this.statedependentData = data; + },(error) => { console.log(error); }); + } + + + // DependemtDropdown field end + +// Dependemt Dropdown field start + + + districtdependentData: any; +dependet2district (item){ + this.mainService.getdistrictDependent(item).subscribe( (data) => { + console.log(data); + this.districtdependentData = data; + },(error) => { console.log(error); }); + } + + + // DependemtDropdown field end + +// updateaction +} + + + + + + + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.service.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.service.ts new file mode 100644 index 0000000..a9d1114 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration.service.ts @@ -0,0 +1,58 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Demoregistrationservice{ + private baseURL = "Demoregistration/Demoregistration" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + +getAllcountry(): Observable { +return this.apiRequest.get("Country_ListFilter1/Country_ListFilter1"); } + + + + getstateDependent(field: string): Observable { + return this.apiRequest.get("State_ListFilter1/State_ListFilter11/" + field); + } + + + + + + getdistrictDependent(field: string): Observable { + return this.apiRequest.get("District_ListFilter1/District_ListFilter11/" + field); + } + + + +// updateaction +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration_cardvariable.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration_cardvariable.ts new file mode 100644 index 0000000..9085acb --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/Demoregistration/Demoregistration_cardvariable.ts @@ -0,0 +1,4 @@ +export const Demoregistrationcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.html b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.html new file mode 100644 index 0000000..3931d9b --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.html @@ -0,0 +1,405 @@ + +
+
+
+

District

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + district name + + + + Description + + + + Active + + + + state name + + + + + + Action + + + + + +{{user. district_name }} + + + + + + +{{user. active }} + + +{{user. state_name }} + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.scss b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.ts new file mode 100644 index 0000000..5448003 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.component.ts @@ -0,0 +1,294 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Districtservice} from './District.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Districtcardvariable } from './District_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-District', + templateUrl: './District.component.html', + styleUrls: ['./District.component.scss'] +}) +export class DistrictComponent implements OnInit { + cardButton = Districtcardvariable.cardButton; + cardmodeldata = Districtcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Districtcardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'District_formCode' +tableName = 'District'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Districtservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +district_name : [null], + +description : [null], + +active : [true], + +state_name : [null], + + + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "District_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + + + + + + + } + + + + + + + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + + + + + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + + + + + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + + + + + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} + + +rsModaldescription = false; +goToReplaceStringdescription(row){ +this.rowSelected = row; this.rsModaldescription =true; } + + + + + +// updateaction +} + + + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.service.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.service.ts new file mode 100644 index 0000000..3484a22 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District.service.ts @@ -0,0 +1,41 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Districtservice{ + private baseURL = "District/District" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + + + +// updateaction +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District_cardvariable.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District_cardvariable.ts new file mode 100644 index 0000000..7dd47dd --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/District/District_cardvariable.ts @@ -0,0 +1,4 @@ +export const Districtcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.html b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.html new file mode 100644 index 0000000..86488bb --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.html @@ -0,0 +1,405 @@ + +
+
+
+

State

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + state name + + + + Description + + + + Active + + + + country name + + + + + + Action + + + + + +{{user. state_name }} + + + + + + +{{user. active }} + + +{{user. country_name }} + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.scss b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.scss @@ -0,0 +1,78 @@ +//@import "../../../../assets/scss/var"; +.s-info-bar { + display: flex; + flex-direction: row; + justify-content: space-between; + button { + outline: none; + } +} +.delete,.heading{ + text-align: center; + color: red; +} +.entry-pg { + width: 750px; +} + +.button1::after { + content: none; +} +.button1:hover::after { + content: "ADD ROWS"; +} + +.section { + background-color: #dddddd; + height: 40px; +} + +.section p { + //color: white; + padding: 10px; + font-size: 18px; +} + +.clr-input { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + padding: 0.75rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.clr-file { + color: #212529; + border: 1px solid #ced4da; + border-radius: 0.25rem; + //padding: 0.6rem 0.75rem; + margin-top: 3px; + width: 100%; + margin-bottom: 10px; +} + +.center { + text-align: center; +} +select{ + width: 100%; + margin-top: 3px; + padding: 5px 5px; + border: 1px solid #ccc; + border-radius: 4px; +} +input[type=text],[type=date],[type=number],textarea { + width: 100%; + padding: 15px 15px; + background-color:rgb(255, 255, 255); + // margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.error_mess { + color: red; +} diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.ts new file mode 100644 index 0000000..6a2cc1e --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.component.ts @@ -0,0 +1,294 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Stateservice} from './State.service'; +import { AbstractControl, FormArray, FormBuilder, FormGroup, Validators, ValidationErrors } from '@angular/forms'; +import { ExtensionService } from 'src/app/services/fnd/extension.service'; +import { DashboardContentModel2 } from 'src/app/models/builder/dashboard'; +import { Statecardvariable } from './State_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-State', + templateUrl: './State.component.html', + styleUrls: ['./State.component.scss'] +}) +export class StateComponent implements OnInit { + cardButton = Statecardvariable.cardButton; + cardmodeldata = Statecardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Statecardvariable.cardButton; + cardmodal; changeView(){ + this.isCardview = !this.isCardview; + } + beforeText(fieldtext: string): string { // Extract the text before the first '<' + const index = fieldtext.indexOf('<'); + return index !== -1 ? fieldtext.substring(0, index) : fieldtext; + } + afterText(fieldtext: string): string { // Extract the text after the last '>' + const index = fieldtext.lastIndexOf('>'); + return index !== -1 ? fieldtext.substring(index + 1) : ''; + } + transform(fieldtext: string): string { + const match = fieldtext.match(/<([^>]*)>/); + return match ? match[1] : ''; // Extract the text between '<' and '>' + } + userrole; + rowSelected :any= {}; + modaldelete=false; + modalEdit=false; + modalAdd= false; + public entryForm: FormGroup; + loading = false; + product; + modalOpenedforNewLine = false; + newLine:any; + additionalFieldsFromBackend: any[] = []; + formcode = 'State_formCode' +tableName = 'State'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Stateservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +state_name : [null], + +description : [null], + +active : [true], + +country_name : [null], + + + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "State_formCode"); + console.log(this.checkFormCode); + console.log(this.additionalFieldsFromBackend); + if (this.additionalFieldsFromBackend && this.additionalFieldsFromBackend.length > 0) { + this.additionalFieldsFromBackend.forEach(field => { + if (field.formCode === this.formcode) { + if (!this.entryForm.contains(field.extValue)) { + // Add the control only if it doesn't exist in the form + this.entryForm.addControl(field.extValue, this._fb.control(field.fieldValue)); + } + } + }); + } + }); + console.log(this.entryForm.value); + // form code end + + + + + + + + + + } + + + + + + + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + + + + this.modalEdit = true; + } + onDelete(row) { + this.rowSelected = row; + this.modaldelete=true; + } + delete(id) + { + this.modaldelete = false; + console.log("in delete "+id); + this.mainService.delete(id).subscribe( + (data) => { + console.log(data); + this.ngOnInit(); + if (data) { this.toastr.success('Deleted successfully'); } + }); + } + onUpdate(id) { + this.modalEdit = false; + + + + + + + + + //console.log("in update"); + console.log("id " + id); + console.log(this.rowSelected); + //console.log("out update"); + this.mainService.update(id, this.rowSelected).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Update Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("update Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Updated"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Updated"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } +onCreate() { + this.modalAdd=false; + + + + + + + + + this.mainService.create(this.entryForm.value).subscribe( + (data) => { + console.log(data); + if (data || data.status >= 200 && data.status <= 299) { + this.toastr.success("Added Successfully"); + } +setTimeout(() => { + this.ngOnInit(); + }, 500); + + + + + + + + + }, (error) => { + console.log(error); + if (error.status >= 200 && error.status <= 299) { + // this.toastr.success("Added Succesfully"); + } + if (error.status >= 400 && error.status <= 499) { + this.toastr.error("Not Added"); + } + if (error.status >= 500 && error.status <= 599) { + this.toastr.error("Not Added"); + } + }); + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + goToAdd(row) { +this.modalAdd = true; this.submitted = false; + + + + + + + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} + + +rsModaldescription = false; +goToReplaceStringdescription(row){ +this.rowSelected = row; this.rsModaldescription =true; } + + + + + +// updateaction +} + + + + + + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.service.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.service.ts new file mode 100644 index 0000000..b072891 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State.service.ts @@ -0,0 +1,41 @@ +import { Injectable } from '@angular/core'; +import { Observable } from "rxjs"; +import { HttpClient, HttpHeaders, HttpParams, } from "@angular/common/http"; +import { ApiRequestService } from "src/app/services/api/api-request.service"; +import { environment } from 'src/environments/environment'; +@Injectable({ + providedIn: 'root' +}) +export class Stateservice{ + private baseURL = "State/State" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } + getAll(page?: number, size?: number): Observable { + return this.apiRequest.get(this.baseURL); + } + getById(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.get(_http); + } + create(data: any): Observable { + return this.apiRequest.post(this.baseURL, data); + } + update(id: number, data: any): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.put(_http, data); + } + delete(id: number): Observable { + const _http = this.baseURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + + + +// updateaction +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State_cardvariable.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State_cardvariable.ts new file mode 100644 index 0000000..fce7bf8 --- /dev/null +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/testdata/State/State_cardvariable.ts @@ -0,0 +1,4 @@ +export const Statecardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts index 7377c69..703ca59 100644 --- a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts @@ -1,3 +1,7 @@ +import { DemoregistrationComponent } from './BuilderComponents/testdata/Demoregistration/Demoregistration.component'; +import { DistrictComponent } from './BuilderComponents/testdata/District/District.component'; +import { StateComponent } from './BuilderComponents/testdata/State/State.component'; +import { CountryComponent } from './BuilderComponents/testdata/Country/Country.component'; import { SequencegenaratorComponent } from './fnd/sequencegenarator/sequencegenarator.component'; import { Component, NgModule } from '@angular/core'; @@ -256,6 +260,18 @@ const routes: Routes = [ // buildercomponents +{path:'Demoregistration',component:DemoregistrationComponent}, + + +{path:'District',component:DistrictComponent}, + + +{path:'State',component:StateComponent}, + + +{path:'Country',component:CountryComponent}, + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts index ecbab3d..fa723d6 100644 --- a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts @@ -1,3 +1,7 @@ +import { DemoregistrationComponent } from './BuilderComponents/testdata/Demoregistration/Demoregistration.component'; +import { DistrictComponent } from './BuilderComponents/testdata/District/District.component'; +import { StateComponent } from './BuilderComponents/testdata/State/State.component'; +import { CountryComponent } from './BuilderComponents/testdata/Country/Country.component'; import { CommonModule } from '@angular/common'; @@ -129,6 +133,18 @@ import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/S // buildercomponents +DemoregistrationComponent, + + +DistrictComponent, + + +StateComponent, + + +CountryComponent, + + diff --git a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json index ee15955..6c24d38 100644 --- a/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json +++ b/testdd001-demot1-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json @@ -226,10 +226,17 @@ "MENU_ACTION_LINK": "Menu Action Link", "STATUS": "Status", "SUB_MENU": "Sub Menu", - "Active": "Active", + "country": "country", "Description": "Description", - "Fileupload_Field": "Fileupload_Field", - "Test22": "Test22", - "Test11": "Test11", - "Name": "Name" + "Demoregistration": "Demoregistration", + "Name": "Name", + "district_name": "district_name", + "Active": "Active", + "state_name": "state_name", + "State": "State", + "district": "district", + "country_name": "country_name", + "Country": "Country", + "state": "state", + "District": "District" } \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java index f9801fb..479eed9 100644 --- a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java @@ -69,6 +69,18 @@ public class BuilderService { executeDump(true); // ADD OTHER SERVICE +addCustomMenu( "Demoregistration","Demoregistration", "Transcations"); + + +addCustomMenu( "District","District", "Transcations"); + + +addCustomMenu( "State","State", "Transcations"); + + +addCustomMenu( "Country","Country", "Transcations"); + + System.out.println("dashboard and menu inserted..."); diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/CountryController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/CountryController.java new file mode 100644 index 0000000..ad0da5a --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/CountryController.java @@ -0,0 +1,99 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.Country; +import com.realnet.testdata.Services.CountryService ; + + + + + + +@RequestMapping(value = "/Country") + @CrossOrigin("*") +@RestController +public class CountryController { + @Autowired + private CountryService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + @PostMapping("/Country") + public Country Savedata(@RequestBody Country data) { + Country save = Service.Savedata(data) ; + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Country/{id}") + public Country update(@RequestBody Country data,@PathVariable Integer id ) { + Country update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Country/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Country") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Country") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Country/{id}") + public Country getdetailsbyId(@PathVariable Integer id ) { + Country get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Country/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/Country_ListFilter1Controller.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/Country_ListFilter1Controller.java new file mode 100644 index 0000000..24626d8 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/Country_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.testdata.Entity.Country_ListFilter1; +import com.realnet.testdata.Services.Country_ListFilter1Service ; +@RequestMapping(value = "/Country_ListFilter1") +@RestController +public class Country_ListFilter1Controller { + + @Autowired + private Country_ListFilter1Service Service; + + @GetMapping("/Country_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Country_ListFilter11") + public List getlistwithparam( ) { + List get = Service.getlistbuilderparam( ); + return get; +} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DemoregistrationController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DemoregistrationController.java new file mode 100644 index 0000000..c3c220a --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DemoregistrationController.java @@ -0,0 +1,123 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.Demoregistration; +import com.realnet.testdata.Services.DemoregistrationService ; + + + + + + + + + + + + +@RequestMapping(value = "/Demoregistration") + @CrossOrigin("*") +@RestController +public class DemoregistrationController { + @Autowired + private DemoregistrationService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + + + @PostMapping("/Demoregistration") + public Demoregistration Savedata(@RequestBody Demoregistration data) { + Demoregistration save = Service.Savedata(data) ; + + + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Demoregistration/{id}") + public Demoregistration update(@RequestBody Demoregistration data,@PathVariable Integer id ) { + Demoregistration update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Demoregistration/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Demoregistration") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Demoregistration") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Demoregistration/{id}") + public Demoregistration getdetailsbyId(@PathVariable Integer id ) { + Demoregistration get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Demoregistration/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DistrictController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DistrictController.java new file mode 100644 index 0000000..15790c8 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/DistrictController.java @@ -0,0 +1,107 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.District; +import com.realnet.testdata.Services.DistrictService ; + + + + + + + + +@RequestMapping(value = "/District") + @CrossOrigin("*") +@RestController +public class DistrictController { + @Autowired + private DistrictService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/District") + public District Savedata(@RequestBody District data) { + District save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/District/{id}") + public District update(@RequestBody District data,@PathVariable Integer id ) { + District update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/District/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/District") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/District") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/District/{id}") + public District getdetailsbyId(@PathVariable Integer id ) { + District get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/District/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/District_ListFilter1Controller.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/District_ListFilter1Controller.java new file mode 100644 index 0000000..7159157 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/District_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.testdata.Entity.District_ListFilter1; +import com.realnet.testdata.Services.District_ListFilter1Service ; +@RequestMapping(value = "/District_ListFilter1") +@RestController +public class District_ListFilter1Controller { + + @Autowired + private District_ListFilter1Service Service; + + @GetMapping("/District_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/District_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/StateController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/StateController.java new file mode 100644 index 0000000..7a7638f --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/StateController.java @@ -0,0 +1,107 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.State; +import com.realnet.testdata.Services.StateService ; + + + + + + + + +@RequestMapping(value = "/State") + @CrossOrigin("*") +@RestController +public class StateController { + @Autowired + private StateService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/State") + public State Savedata(@RequestBody State data) { + State save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/State/{id}") + public State update(@RequestBody State data,@PathVariable Integer id ) { + State update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/State/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/State") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/State") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/State/{id}") + public State getdetailsbyId(@PathVariable Integer id ) { + State get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/State/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/State_ListFilter1Controller.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/State_ListFilter1Controller.java new file mode 100644 index 0000000..9317bad --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/State_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.testdata.Entity.State_ListFilter1; +import com.realnet.testdata.Services.State_ListFilter1Service ; +@RequestMapping(value = "/State_ListFilter1") +@RestController +public class State_ListFilter1Controller { + + @Autowired + private State_ListFilter1Service Service; + + @GetMapping("/State_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/State_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_CountryController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_CountryController.java new file mode 100644 index 0000000..e920d13 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_CountryController.java @@ -0,0 +1,99 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.Country; +import com.realnet.testdata.Services.CountryService ; + + + + + + +@RequestMapping(value = "/token/Country") + @CrossOrigin("*") +@RestController +public class tokenFree_CountryController { + @Autowired + private CountryService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + @PostMapping("/Country") + public Country Savedata(@RequestBody Country data) { + Country save = Service.Savedata(data) ; + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Country/{id}") + public Country update(@RequestBody Country data,@PathVariable Integer id ) { + Country update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Country/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Country") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Country") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Country/{id}") + public Country getdetailsbyId(@PathVariable Integer id ) { + Country get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Country/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_Country_ListFilter1Controller.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_Country_ListFilter1Controller.java new file mode 100644 index 0000000..c348307 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_Country_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.testdata.Entity.Country_ListFilter1; +import com.realnet.testdata.Services.Country_ListFilter1Service ; +@RequestMapping(value = "/token/Country_ListFilter1") +@RestController +public class tokenFree_Country_ListFilter1Controller { + + @Autowired + private Country_ListFilter1Service Service; + + @GetMapping("/Country_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Country_ListFilter11") + public List getlistwithparam( ) { + List get = Service.getlistbuilderparam( ); + return get; +} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DemoregistrationController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DemoregistrationController.java new file mode 100644 index 0000000..6bec16a --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DemoregistrationController.java @@ -0,0 +1,123 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.Demoregistration; +import com.realnet.testdata.Services.DemoregistrationService ; + + + + + + + + + + + + +@RequestMapping(value = "/token/Demoregistration") + @CrossOrigin("*") +@RestController +public class tokenFree_DemoregistrationController { + @Autowired + private DemoregistrationService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + + + @PostMapping("/Demoregistration") + public Demoregistration Savedata(@RequestBody Demoregistration data) { + Demoregistration save = Service.Savedata(data) ; + + + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Demoregistration/{id}") + public Demoregistration update(@RequestBody Demoregistration data,@PathVariable Integer id ) { + Demoregistration update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Demoregistration/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/Demoregistration") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Demoregistration") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Demoregistration/{id}") + public Demoregistration getdetailsbyId(@PathVariable Integer id ) { + Demoregistration get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Demoregistration/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DistrictController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DistrictController.java new file mode 100644 index 0000000..41af86c --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_DistrictController.java @@ -0,0 +1,107 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.District; +import com.realnet.testdata.Services.DistrictService ; + + + + + + + + +@RequestMapping(value = "/token/District") + @CrossOrigin("*") +@RestController +public class tokenFree_DistrictController { + @Autowired + private DistrictService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/District") + public District Savedata(@RequestBody District data) { + District save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/District/{id}") + public District update(@RequestBody District data,@PathVariable Integer id ) { + District update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/District/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/District") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/District") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/District/{id}") + public District getdetailsbyId(@PathVariable Integer id ) { + District get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/District/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_District_ListFilter1Controller.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_District_ListFilter1Controller.java new file mode 100644 index 0000000..3dc3596 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_District_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.testdata.Entity.District_ListFilter1; +import com.realnet.testdata.Services.District_ListFilter1Service ; +@RequestMapping(value = "/token/District_ListFilter1") +@RestController +public class tokenFree_District_ListFilter1Controller { + + @Autowired + private District_ListFilter1Service Service; + + @GetMapping("/District_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/District_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_StateController.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_StateController.java new file mode 100644 index 0000000..5195902 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_StateController.java @@ -0,0 +1,107 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import com.fasterxml.jackson.core.JsonProcessingException; +import org.springframework.web.bind.annotation.CrossOrigin; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.realnet.config.EmailService; +import com.realnet.users.entity1.AppUser; +import com.realnet.users.service1.AppUserServiceImpl; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.springframework.data.domain.*; +import com.realnet.fnd.response.EntityResponse; +import org.springframework.http.*; +import org.springframework.beans.factory.annotation.*; +import com.realnet.testdata.Entity.State; +import com.realnet.testdata.Services.StateService ; + + + + + + + + +@RequestMapping(value = "/token/State") + @CrossOrigin("*") +@RestController +public class tokenFree_StateController { + @Autowired + private StateService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/State") + public State Savedata(@RequestBody State data) { + State save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/State/{id}") + public State update(@RequestBody State data,@PathVariable Integer id ) { + State update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/State/getall/page") + public Page getall(@RequestParam(value = "page", required = false) Integer page, + @RequestParam(value = "size", required = false) Integer size) { + Pageable paging = PageRequest.of(page, size); + Page get = Service.getAllWithPagination(paging); + + return get; + + } + @GetMapping("/State") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/State") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/State/{id}") + public State getdetailsbyId(@PathVariable Integer id ) { + State get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/State/{id}") + public ResponseEntity delete_by_id(@PathVariable Integer id ) { + Service.delete_by_id(id); + return new ResponseEntity<>(new EntityResponse("Deleted"), HttpStatus.OK); + + } + + + + + + + + + +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_State_ListFilter1Controller.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_State_ListFilter1Controller.java new file mode 100644 index 0000000..78595e4 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Controllers/tokenFree_State_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.testdata.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.testdata.Entity.State_ListFilter1; +import com.realnet.testdata.Services.State_ListFilter1Service ; +@RequestMapping(value = "/token/State_ListFilter1") +@RestController +public class tokenFree_State_ListFilter1Controller { + + @Autowired + private State_ListFilter1Service Service; + + @GetMapping("/State_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/State_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country.java new file mode 100644 index 0000000..9ed3fde --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country.java @@ -0,0 +1,33 @@ +package com.realnet.testdata.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + @Entity + @Data + public class Country extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String name; + +@Column(length = 2000) +private String description; + +private boolean active; + + +} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country_ListFilter1.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country_ListFilter1.java new file mode 100644 index 0000000..a35e61f --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Country_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.testdata.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class Country_ListFilter1 { + + private Integer id; + + + private String name; +} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Demoregistration.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Demoregistration.java new file mode 100644 index 0000000..763dd26 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/Demoregistration.java @@ -0,0 +1,54 @@ +package com.realnet.testdata.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + + + + + + + @Entity + @Data + public class Demoregistration extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String name; + +@Column(length = 2000) +private String description; + +private boolean active; + +private String country; +private String countryname; + +private String state; + + + + + +private String district; + + + + + + +} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District.java new file mode 100644 index 0000000..aa65479 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District.java @@ -0,0 +1,37 @@ +package com.realnet.testdata.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + + + @Entity + @Data + public class District extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String district_name; + +@Column(length = 2000) +private String description; + +private boolean active; + +private String state_name; + + +} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District_ListFilter1.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District_ListFilter1.java new file mode 100644 index 0000000..27fcf99 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/District_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.testdata.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class District_ListFilter1 { + + private Integer id; + + + private String district_name; +} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State.java new file mode 100644 index 0000000..b372ad4 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State.java @@ -0,0 +1,37 @@ +package com.realnet.testdata.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + + + @Entity + @Data + public class State extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String state_name; + +@Column(length = 2000) +private String description; + +private boolean active; + +private String country_name; + + +} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State_ListFilter1.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State_ListFilter1.java new file mode 100644 index 0000000..5502c8c --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Entity/State_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.testdata.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class State_ListFilter1 { + + private Integer id; + + + private String state_name; +} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/CountryRepository.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/CountryRepository.java new file mode 100644 index 0000000..d1c5c63 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/CountryRepository.java @@ -0,0 +1,30 @@ +package com.realnet.testdata.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + + + + + +import com.realnet.testdata.Entity.Country; + +@Repository +public interface CountryRepository extends JpaRepository { + +@Query(value = "select * from country where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from country where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DemoregistrationRepository.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DemoregistrationRepository.java new file mode 100644 index 0000000..53826fc --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DemoregistrationRepository.java @@ -0,0 +1,36 @@ +package com.realnet.testdata.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + + + + + + + + + + + +import com.realnet.testdata.Entity.Demoregistration; + +@Repository +public interface DemoregistrationRepository extends JpaRepository { + +@Query(value = "select * from demoregistration where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from demoregistration where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DistrictRepository.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DistrictRepository.java new file mode 100644 index 0000000..06407da --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/DistrictRepository.java @@ -0,0 +1,32 @@ +package com.realnet.testdata.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + + + + + + + +import com.realnet.testdata.Entity.District; + +@Repository +public interface DistrictRepository extends JpaRepository { + +@Query(value = "select * from district where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from district where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/StateRepository.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/StateRepository.java new file mode 100644 index 0000000..bfebd6d --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Repository/StateRepository.java @@ -0,0 +1,32 @@ +package com.realnet.testdata.Repository; + + +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; + +import org.springframework.stereotype.Repository; +import java.util.*; + + + + + + + + + + + +import com.realnet.testdata.Entity.State; + +@Repository +public interface StateRepository extends JpaRepository { + +@Query(value = "select * from state where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from state where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/CountryService.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/CountryService.java new file mode 100644 index 0000000..632ef1f --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/CountryService.java @@ -0,0 +1,93 @@ +package com.realnet.testdata.Services; +import com.realnet.testdata.Repository.CountryRepository; +import com.realnet.testdata.Entity.Country +;import java.util.*; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService; +import org.springframework.data.domain.Pageable; +import org.springframework.http.*; +import com.realnet.users.service1.AppUserServiceImpl; +import com.realnet.users.entity1.AppUser; + + + + + + + import org.springframework.stereotype.Service; + +@Service + public class CountryService { +@Autowired +private CountryRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + +public Country Savedata(Country data) { + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Country save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public Country getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Country update(Country data,Integer id) { + Country old = Repository.findById(id).get(); +old.setName(data.getName()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +final Country test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/Country_ListFilter1Service.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/Country_ListFilter1Service.java new file mode 100644 index 0000000..dbc269b --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/Country_ListFilter1Service.java @@ -0,0 +1,51 @@ +package com.realnet.testdata.Services; +import java.util.*; +import com.realnet.testdata.Repository.CountryRepository; +import com.realnet.testdata.Entity.Country; + +import com.realnet.testdata.Entity.Country_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class Country_ListFilter1Service { +@Autowired +private CountryRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Country data : list) { +boolean isactive = data.isActive(); + + if (isactive) {{ +Country_ListFilter1 dummy = new Country_ListFilter1(); + dummy.setId(data.getId()); + dummy.setName(data.getName()); + l.add(dummy); +}} +} +return l;} + + + + public List getlistbuilderparam( ) { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Country data : list) { +boolean isactive = data.isActive(); + + if (isactive) {{ +Country_ListFilter1 dummy = new Country_ListFilter1(); + dummy.setId(data.getId()); + dummy.setName(data.getName()); + l.add(dummy); +}} +} +return l;} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DemoregistrationService.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DemoregistrationService.java new file mode 100644 index 0000000..174fa07 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DemoregistrationService.java @@ -0,0 +1,151 @@ +package com.realnet.testdata.Services; +import com.realnet.testdata.Repository.DemoregistrationRepository; +import com.realnet.testdata.Entity.Demoregistration +;import java.util.*; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService; +import org.springframework.data.domain.Pageable; +import org.springframework.http.*; +import com.realnet.users.service1.AppUserServiceImpl; +import com.realnet.users.entity1.AppUser; + + + + + + +import com.realnet.testdata.Entity.Country; +import com.realnet.testdata.Services.CountryService; + + + + + + + + import org.springframework.stereotype.Service; + +@Service + public class DemoregistrationService { +@Autowired +private DemoregistrationRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + +@Autowired + private CountryService countryserv; + + + + + +public Demoregistration Savedata(Demoregistration data) { + + + + + + + + +if (data.getCountry() != null) { + try { + int countryId = Integer.valueOf(data.getCountry()); +Country get = countryserv.getdetailsbyId(countryId); + if (get != null) { + + data.setCountryname(get.getName()); +} +} catch (NumberFormatException e) { + System.out.println(" countryId is not integer.."); + // Invalid integer string — ignore or log + } + + } + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Demoregistration save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public Demoregistration getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Demoregistration update(Demoregistration data,Integer id) { + Demoregistration old = Repository.findById(id).get(); +old.setName(data.getName()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setCountry(data.getCountry()); + +old.setState(data.getState()); + + + + +old.setDistrict(data.getDistrict()); + + + + +final Demoregistration test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DistrictService.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DistrictService.java new file mode 100644 index 0000000..395b224 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/DistrictService.java @@ -0,0 +1,103 @@ +package com.realnet.testdata.Services; +import com.realnet.testdata.Repository.DistrictRepository; +import com.realnet.testdata.Entity.District +;import java.util.*; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService; +import org.springframework.data.domain.Pageable; +import org.springframework.http.*; +import com.realnet.users.service1.AppUserServiceImpl; +import com.realnet.users.entity1.AppUser; + + + + + + + + + import org.springframework.stereotype.Service; + +@Service + public class DistrictService { +@Autowired +private DistrictRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + +public District Savedata(District data) { + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +District save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public District getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public District update(District data,Integer id) { + District old = Repository.findById(id).get(); +old.setDistrict_name(data.getDistrict_name()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setState_name(data.getState_name()); + +final District test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/District_ListFilter1Service.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/District_ListFilter1Service.java new file mode 100644 index 0000000..65d3ca5 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/District_ListFilter1Service.java @@ -0,0 +1,57 @@ +package com.realnet.testdata.Services; +import java.util.*; +import com.realnet.testdata.Repository.DistrictRepository; +import com.realnet.testdata.Entity.District; + +import com.realnet.testdata.Entity.District_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class District_ListFilter1Service { +@Autowired +private DistrictRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (District data : list) { +boolean isactive = data.isActive(); + + if (isactive) {String State_name = data.getState_name(); + System.out.println(State_name + "\n"); + + if ("item".equals(State_name)){ +District_ListFilter1 dummy = new District_ListFilter1(); + dummy.setId(data.getId()); + dummy.setDistrict_name(data.getDistrict_name()); + l.add(dummy); +}} +} +return l;} + + + + public List getlistbuilderparam( String item) { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (District data : list) { +boolean isactive = data.isActive(); + + if (isactive) {String State_name = data.getState_name(); + System.out.println(State_name + "\n"); + + if (item.equals(State_name)){ +District_ListFilter1 dummy = new District_ListFilter1(); + dummy.setId(data.getId()); + dummy.setDistrict_name(data.getDistrict_name()); + l.add(dummy); +}} +} +return l;} +} \ No newline at end of file diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/StateService.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/StateService.java new file mode 100644 index 0000000..6beaf02 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/StateService.java @@ -0,0 +1,103 @@ +package com.realnet.testdata.Services; +import com.realnet.testdata.Repository.StateRepository; +import com.realnet.testdata.Entity.State +;import java.util.*; + +import org.springframework.beans.factory.annotation.Autowired; +import com.realnet.SequenceGenerator.Service.SequenceService; +import org.springframework.data.domain.Page; +import com.realnet.realm.Entity.Realm; +import com.realnet.realm.Services.RealmService; +import org.springframework.data.domain.Pageable; +import org.springframework.http.*; +import com.realnet.users.service1.AppUserServiceImpl; +import com.realnet.users.entity1.AppUser; + + + + + + + + + import org.springframework.stereotype.Service; + +@Service + public class StateService { +@Autowired +private StateRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + +public State Savedata(State data) { + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +State save = Repository.save(data); + return save; + } + + +// get all with pagination + public Page getAllWithPagination(Pageable page) { + return Repository.findAll(page, getUser().getUserId()); + } +public List getdetails() { + List realm = realmService.findByUserId(getUser().getUserId()); +List all = Repository.findAll(getUser().getUserId()); + + return all ; } + + +public State getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public State update(State data,Integer id) { + State old = Repository.findById(id).get(); +old.setState_name(data.getState_name()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setCountry_name(data.getCountry_name()); + +final State test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/State_ListFilter1Service.java b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/State_ListFilter1Service.java new file mode 100644 index 0000000..37eca95 --- /dev/null +++ b/testdd001-test2-b/authsec_springboot/backend/src/main/java/com/realnet/testdata/Services/State_ListFilter1Service.java @@ -0,0 +1,57 @@ +package com.realnet.testdata.Services; +import java.util.*; +import com.realnet.testdata.Repository.StateRepository; +import com.realnet.testdata.Entity.State; + +import com.realnet.testdata.Entity.State_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class State_ListFilter1Service { +@Autowired +private StateRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (State data : list) { +boolean isactive = data.isActive(); + + if (isactive) {String Country_name = data.getCountry_name(); + System.out.println(Country_name + "\n"); + + if ("item".equals(Country_name)){ +State_ListFilter1 dummy = new State_ListFilter1(); + dummy.setId(data.getId()); + dummy.setState_name(data.getState_name()); + l.add(dummy); +}} +} +return l;} + + + + public List getlistbuilderparam( String item) { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (State data : list) { +boolean isactive = data.isActive(); + + if (isactive) {String Country_name = data.getCountry_name(); + System.out.println(Country_name + "\n"); + + if (item.equals(Country_name)){ +State_ListFilter1 dummy = new State_ListFilter1(); + dummy.setId(data.getId()); + dummy.setState_name(data.getState_name()); + l.add(dummy); +}} +} +return l;} +} \ No newline at end of file diff --git a/testdd001-testdb-d/authsec_mysql/mysql/wf_table/wf_table.sql b/testdd001-testdb-d/authsec_mysql/mysql/wf_table/wf_table.sql new file mode 100755 index 0000000..b222ed1 --- /dev/null +++ b/testdd001-testdb-d/authsec_mysql/mysql/wf_table/wf_table.sql @@ -0,0 +1,8 @@ +CREATE TABLE testdb.Country(id BIGINT NOT NULL AUTO_INCREMENT, active VARCHAR(400), description VARCHAR(400), name VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE testdb.State(id BIGINT NOT NULL AUTO_INCREMENT, active VARCHAR(400), description VARCHAR(400), state_name VARCHAR(400), country_name VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE testdb.District(id BIGINT NOT NULL AUTO_INCREMENT, district_name VARCHAR(400), active VARCHAR(400), description VARCHAR(400), state_name VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE testdb.Demoregistration(id BIGINT NOT NULL AUTO_INCREMENT, country int, active VARCHAR(400), description VARCHAR(400), district VARCHAR(400), state VARCHAR(400), name VARCHAR(400), PRIMARY KEY (id)); +