diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java index f9801fb..46fc2f2 100644 --- a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java +++ b/stepper065-back-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( "Stepper","Stepper_workflow", "Transcations"); + + +addCustomMenu( "Testdd","Testdd", "Transcations"); + + +addCustomMenu( "State","State", "Transcations"); + + +addCustomMenu( "Country","Country", "Transcations"); + + System.out.println("dashboard and menu inserted..."); diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/City_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/City_ListFilter1Controller.java new file mode 100644 index 0000000..2a85c29 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/City_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.City_ListFilter1; +import com.realnet.basicp1.Services.City_ListFilter1Service ; +@RequestMapping(value = "/City_ListFilter1") +@RestController +public class City_ListFilter1Controller { + + @Autowired + private City_ListFilter1Service Service; + + @GetMapping("/City_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/City_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CountryController.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CountryController.java new file mode 100644 index 0000000..fbdc27f --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CountryController.java @@ -0,0 +1,99 @@ +package com.realnet.basicp1.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.basicp1.Entity.Country; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Country_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Country_ListFilter1Controller.java new file mode 100644 index 0000000..b1e52dc --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Country_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.Country_ListFilter1; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Distric_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Distric_ListFilter1Controller.java new file mode 100644 index 0000000..9744bbe --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Distric_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.Distric_ListFilter1; +import com.realnet.basicp1.Services.Distric_ListFilter1Service ; +@RequestMapping(value = "/Distric_ListFilter1") +@RestController +public class Distric_ListFilter1Controller { + + @Autowired + private Distric_ListFilter1Service Service; + + @GetMapping("/Distric_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Distric_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/StateController.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/StateController.java new file mode 100644 index 0000000..ef3ca0b --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/StateController.java @@ -0,0 +1,107 @@ +package com.realnet.basicp1.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.basicp1.Entity.State; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/State_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/State_ListFilter1Controller.java new file mode 100644 index 0000000..a661335 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/State_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.State_ListFilter1; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/TestddController.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/TestddController.java new file mode 100644 index 0000000..b6d1f76 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/TestddController.java @@ -0,0 +1,115 @@ +package com.realnet.basicp1.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.basicp1.Entity.Testdd; +import com.realnet.basicp1.Services.TestddService ; + + + + + + + + + + +@RequestMapping(value = "/Testdd") + @CrossOrigin("*") +@RestController +public class TestddController { + @Autowired + private TestddService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + @PostMapping("/Testdd") + public Testdd Savedata(@RequestBody Testdd data) { + Testdd save = Service.Savedata(data) ; + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Testdd/{id}") + public Testdd update(@RequestBody Testdd data,@PathVariable Integer id ) { + Testdd update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Testdd/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("/Testdd") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Testdd") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Testdd/{id}") + public Testdd getdetailsbyId(@PathVariable Integer id ) { + Testdd get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Testdd/{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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Village_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Village_ListFilter1Controller.java new file mode 100644 index 0000000..cddd905 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Village_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.Village_ListFilter1; +import com.realnet.basicp1.Services.Village_ListFilter1Service ; +@RequestMapping(value = "/Village_ListFilter1") +@RestController +public class Village_ListFilter1Controller { + + @Autowired + private Village_ListFilter1Service Service; + + @GetMapping("/Village_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Village_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_City_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_City_ListFilter1Controller.java new file mode 100644 index 0000000..5c4e3ea --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_City_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.City_ListFilter1; +import com.realnet.basicp1.Services.City_ListFilter1Service ; +@RequestMapping(value = "/token/City_ListFilter1") +@RestController +public class tokenFree_City_ListFilter1Controller { + + @Autowired + private City_ListFilter1Service Service; + + @GetMapping("/City_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/City_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_CountryController.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_CountryController.java new file mode 100644 index 0000000..72d4f34 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_CountryController.java @@ -0,0 +1,99 @@ +package com.realnet.basicp1.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.basicp1.Entity.Country; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Country_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Country_ListFilter1Controller.java new file mode 100644 index 0000000..0a58c88 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Country_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.Country_ListFilter1; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Distric_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Distric_ListFilter1Controller.java new file mode 100644 index 0000000..b07cd7a --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Distric_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.Distric_ListFilter1; +import com.realnet.basicp1.Services.Distric_ListFilter1Service ; +@RequestMapping(value = "/token/Distric_ListFilter1") +@RestController +public class tokenFree_Distric_ListFilter1Controller { + + @Autowired + private Distric_ListFilter1Service Service; + + @GetMapping("/Distric_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Distric_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_StateController.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_StateController.java new file mode 100644 index 0000000..6b5dd9a --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_StateController.java @@ -0,0 +1,107 @@ +package com.realnet.basicp1.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.basicp1.Entity.State; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_State_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_State_ListFilter1Controller.java new file mode 100644 index 0000000..02feb04 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_State_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.State_ListFilter1; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_TestddController.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_TestddController.java new file mode 100644 index 0000000..d88c1d1 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_TestddController.java @@ -0,0 +1,115 @@ +package com.realnet.basicp1.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.basicp1.Entity.Testdd; +import com.realnet.basicp1.Services.TestddService ; + + + + + + + + + + +@RequestMapping(value = "/token/Testdd") + @CrossOrigin("*") +@RestController +public class tokenFree_TestddController { + @Autowired + private TestddService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + @PostMapping("/Testdd") + public Testdd Savedata(@RequestBody Testdd data) { + Testdd save = Service.Savedata(data) ; + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Testdd/{id}") + public Testdd update(@RequestBody Testdd data,@PathVariable Integer id ) { + Testdd update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Testdd/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("/Testdd") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Testdd") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Testdd/{id}") + public Testdd getdetailsbyId(@PathVariable Integer id ) { + Testdd get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Testdd/{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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Village_ListFilter1Controller.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Village_ListFilter1Controller.java new file mode 100644 index 0000000..5e3bc9c --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Village_ListFilter1Controller.java @@ -0,0 +1,24 @@ +package com.realnet.basicp1.Controllers; +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.web.bind.annotation.*; +import com.realnet.basicp1.Entity.Village_ListFilter1; +import com.realnet.basicp1.Services.Village_ListFilter1Service ; +@RequestMapping(value = "/token/Village_ListFilter1") +@RestController +public class tokenFree_Village_ListFilter1Controller { + + @Autowired + private Village_ListFilter1Service Service; + + @GetMapping("/Village_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Village_ListFilter11/{item}") + public List getlistwithparam( @PathVariable String item) { + List get = Service.getlistbuilderparam( item); + return get; +} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/City_ListFilter1.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/City_ListFilter1.java new file mode 100644 index 0000000..97fa5b8 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/City_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.basicp1.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class City_ListFilter1 { + + private Integer id; + + + private String city_name; +} diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country.java new file mode 100644 index 0000000..1ffd720 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country.java @@ -0,0 +1,33 @@ +package com.realnet.basicp1.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 country_name; + +@Column(length = 2000) +private String description; + +private boolean active; + + +} diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country_ListFilter1.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country_ListFilter1.java new file mode 100644 index 0000000..58bedc8 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.basicp1.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class Country_ListFilter1 { + + private Integer id; + + + private String country_name; +} diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Distric_ListFilter1.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Distric_ListFilter1.java new file mode 100644 index 0000000..6cc6286 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Distric_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.basicp1.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class Distric_ListFilter1 { + + private Integer id; + + + private String district_name; +} diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State.java new file mode 100644 index 0000000..f82173f --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State.java @@ -0,0 +1,37 @@ +package com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State_ListFilter1.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State_ListFilter1.java new file mode 100644 index 0000000..9dfb100 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Testdd.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Testdd.java new file mode 100644 index 0000000..572e2a5 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Testdd.java @@ -0,0 +1,46 @@ +package com.realnet.basicp1.Entity; + import lombok.*; +import com.realnet.WhoColumn.Entity.Extension; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + + + + + + + + + + @Entity + @Data + public class Testdd 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 contry; +private String contryname; + +private String state; + + + + + + +} diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Village_ListFilter1.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Village_ListFilter1.java new file mode 100644 index 0000000..99ba46a --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Village_ListFilter1.java @@ -0,0 +1,14 @@ +package com.realnet.basicp1.Entity; + import lombok.*; + import javax.persistence.*; + import java.time.LocalDateTime; + import java.util.*; + + @Data + public class Village_ListFilter1 { + + private Integer id; + + + private String village_name; +} diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CountryRepository.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CountryRepository.java new file mode 100644 index 0000000..b5d100b --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CountryRepository.java @@ -0,0 +1,30 @@ +package com.realnet.basicp1.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.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/StateRepository.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/StateRepository.java new file mode 100644 index 0000000..5d7b00a --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/StateRepository.java @@ -0,0 +1,32 @@ +package com.realnet.basicp1.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.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/TestddRepository.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/TestddRepository.java new file mode 100644 index 0000000..d33e264 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/TestddRepository.java @@ -0,0 +1,34 @@ +package com.realnet.basicp1.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.basicp1.Entity.Testdd; + +@Repository +public interface TestddRepository extends JpaRepository { + +@Query(value = "select * from testdd where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from testdd where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/City_ListFilter1Service.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/City_ListFilter1Service.java new file mode 100644 index 0000000..bc8c51a --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/City_ListFilter1Service.java @@ -0,0 +1,53 @@ +package com.realnet.basicp1.Services; +import java.util.*; +import com.realnet.basicp1.Repository.CityRepository; +import com.realnet.basicp1.Entity.City; + +import com.realnet.basicp1.Entity.City_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class City_ListFilter1Service { +@Autowired +private CityRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (City data : list) { +String Distric_name = data.getDistric_name(); + System.out.println(Distric_name + "\n"); + + if ("item".equals(Distric_name)){ +City_ListFilter1 dummy = new City_ListFilter1(); + dummy.setId(data.getId()); + dummy.setCity_name(data.getCity_name()); + l.add(dummy); +} +} +return l;} + + + + public List getlistbuilderparam( String item) { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (City data : list) { +String Distric_name = data.getDistric_name(); + System.out.println(Distric_name + "\n"); + + if (item.equals(Distric_name)){ +City_ListFilter1 dummy = new City_ListFilter1(); + dummy.setId(data.getId()); + dummy.setCity_name(data.getCity_name()); + l.add(dummy); +} +} +return l;} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CountryService.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CountryService.java new file mode 100644 index 0000000..a7692d1 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CountryService.java @@ -0,0 +1,93 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.CountryRepository; +import com.realnet.basicp1.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.setCountry_name(data.getCountry_name()); + +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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Country_ListFilter1Service.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Country_ListFilter1Service.java new file mode 100644 index 0000000..4a49f5a --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Country_ListFilter1Service.java @@ -0,0 +1,51 @@ +package com.realnet.basicp1.Services; +import java.util.*; +import com.realnet.basicp1.Repository.CountryRepository; +import com.realnet.basicp1.Entity.Country; + +import com.realnet.basicp1.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.setCountry_name(data.getCountry_name()); + 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.setCountry_name(data.getCountry_name()); + l.add(dummy); +}} +} +return l;} +} \ No newline at end of file diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Distric_ListFilter1Service.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Distric_ListFilter1Service.java new file mode 100644 index 0000000..9c67ec5 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Distric_ListFilter1Service.java @@ -0,0 +1,53 @@ +package com.realnet.basicp1.Services; +import java.util.*; +import com.realnet.basicp1.Repository.DistricRepository; +import com.realnet.basicp1.Entity.Distric; + +import com.realnet.basicp1.Entity.Distric_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class Distric_ListFilter1Service { +@Autowired +private DistricRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Distric data : list) { +String State_name = data.getState_name(); + System.out.println(State_name + "\n"); + + if ("item".equals(State_name)){ +Distric_ListFilter1 dummy = new Distric_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 (Distric data : list) { +String State_name = data.getState_name(); + System.out.println(State_name + "\n"); + + if (item.equals(State_name)){ +Distric_ListFilter1 dummy = new Distric_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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/StateService.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/StateService.java new file mode 100644 index 0000000..9aac09b --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/StateService.java @@ -0,0 +1,103 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.StateRepository; +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/State_ListFilter1Service.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/State_ListFilter1Service.java new file mode 100644 index 0000000..76b4640 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/State_ListFilter1Service.java @@ -0,0 +1,57 @@ +package com.realnet.basicp1.Services; +import java.util.*; +import com.realnet.basicp1.Repository.StateRepository; +import com.realnet.basicp1.Entity.State; + +import com.realnet.basicp1.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/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/TestddService.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/TestddService.java new file mode 100644 index 0000000..12cc2e8 --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/TestddService.java @@ -0,0 +1,138 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.TestddRepository; +import com.realnet.basicp1.Entity.Testdd +;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.basicp1.Entity.Country; +import com.realnet.basicp1.Services.CountryService; + + + + + + import org.springframework.stereotype.Service; + +@Service + public class TestddService { +@Autowired +private TestddRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + +@Autowired + private CountryService contryserv; + + + +public Testdd Savedata(Testdd data) { + + + + + + + + +if (data.getContry() != null) { + try { + int contryId = Integer.valueOf(data.getContry()); +Country get = contryserv.getdetailsbyId(contryId); + if (get != null) { + + data.setContryname(get.getCountry_name()); +} +} catch (NumberFormatException e) { + System.out.println(" contryId is not integer.."); + // Invalid integer string — ignore or log + } + + } + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Testdd 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 Testdd getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Testdd update(Testdd data,Integer id) { + Testdd old = Repository.findById(id).get(); +old.setName(data.getName()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setContry(data.getContry()); + +old.setState(data.getState()); + + + + +final Testdd test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Village_ListFilter1Service.java b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Village_ListFilter1Service.java new file mode 100644 index 0000000..b225dfa --- /dev/null +++ b/stepper065-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Village_ListFilter1Service.java @@ -0,0 +1,53 @@ +package com.realnet.basicp1.Services; +import java.util.*; +import com.realnet.basicp1.Repository.VillageRepository; +import com.realnet.basicp1.Entity.Village; + +import com.realnet.basicp1.Entity.Village_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class Village_ListFilter1Service { +@Autowired +private VillageRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Village data : list) { +String City_name = data.getCity_name(); + System.out.println(City_name + "\n"); + + if ("item".equals(City_name)){ +Village_ListFilter1 dummy = new Village_ListFilter1(); + dummy.setId(data.getId()); + dummy.setVillage_name(data.getVillage_name()); + l.add(dummy); +} +} +return l;} + + + + public List getlistbuilderparam( String item) { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Village data : list) { +String City_name = data.getCity_name(); + System.out.println(City_name + "\n"); + + if (item.equals(City_name)){ +Village_ListFilter1 dummy = new Village_ListFilter1(); + dummy.setId(data.getId()); + dummy.setVillage_name(data.getVillage_name()); + l.add(dummy); +} +} +return l;} +} \ No newline at end of file diff --git a/stepper065-db-d/authsec_mysql/mysql/wf_table/wf_table.sql b/stepper065-db-d/authsec_mysql/mysql/wf_table/wf_table.sql new file mode 100755 index 0000000..4dc964e --- /dev/null +++ b/stepper065-db-d/authsec_mysql/mysql/wf_table/wf_table.sql @@ -0,0 +1,6 @@ +CREATE TABLE db.Country(id BIGINT NOT NULL AUTO_INCREMENT, active VARCHAR(400), description VARCHAR(400), country_name VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.State(id BIGINT NOT NULL AUTO_INCREMENT, active VARCHAR(400), description VARCHAR(400), country_name VARCHAR(400), state_name VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Testdd(id BIGINT NOT NULL AUTO_INCREMENT, active VARCHAR(400), description VARCHAR(400), contry int, state VARCHAR(400), name VARCHAR(400), PRIMARY KEY (id)); + diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts index 231b3a1..fdff417 100644 --- a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts +++ b/stepper065-front-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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.html b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.html new file mode 100644 index 0000000..563f293 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.html @@ -0,0 +1,376 @@ + +
+
+
+

Country

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Country Name + + + + Description + + + + Active + + + + + + Action + + + + + +{{user.country_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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.scss b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.ts new file mode 100644 index 0000000..92f9b68 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/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({ +country_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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.service.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.service.ts new file mode 100644 index 0000000..05a5665 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country_cardvariable.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country_cardvariable.ts new file mode 100644 index 0000000..efc9e50 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country_cardvariable.ts @@ -0,0 +1,4 @@ +export const Countrycardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.html b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.html new file mode 100644 index 0000000..3a947a8 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.scss b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.ts new file mode 100644 index 0000000..6a2cc1e --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.service.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.service.ts new file mode 100644 index 0000000..b072891 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State_cardvariable.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State_cardvariable.ts new file mode 100644 index 0000000..fce7bf8 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State_cardvariable.ts @@ -0,0 +1,4 @@ +export const Statecardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.html b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.html new file mode 100644 index 0000000..b9dab1f --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.html @@ -0,0 +1,467 @@ + +
+
+
+

Testdd

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Name + + + + Description + + + + Active + + + + contry + + + + state + + + + + + Action + + + + + +{{user.name }} + + + + + + +{{user.active }} + + +{{user. contryname }} + + +{{user.state }} + + + + + + + +
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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.scss b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.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/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.ts new file mode 100644 index 0000000..fd3cd7a --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.ts @@ -0,0 +1,352 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Testddservice} from './Testdd.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 { Testddcardvariable } from './Testdd_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Testdd', + templateUrl: './Testdd.component.html', + styleUrls: ['./Testdd.component.scss'] +}) +export class TestddComponent implements OnInit { + cardButton = Testddcardvariable.cardButton; + cardmodeldata = Testddcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Testddcardvariable.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 = 'Testdd_formCode' +tableName = 'Testdd'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Testddservice, + 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], + +contry : [null], + +state : [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 === "Testdd_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.getallcontry(); + + + // Listen for country changes + + + this.entryForm.get('contry')?.valueChanges.subscribe((item) => { + + + if (item) { + this.dependet2state(item); + } else { + this.statedependentData = []; + this.entryForm.get('state')?.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 + + + 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; } + + + +selectcontry ; +getallcontry() { + this.mainService.getAllcontry().subscribe(data=>{ +this.selectcontry = 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 + +// updateaction +} + + + + + + + + + diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.service.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.service.ts new file mode 100644 index 0000000..9d04766 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.service.ts @@ -0,0 +1,50 @@ +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 Testddservice{ + private baseURL = "Testdd/Testdd" ; 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); + } + + + + + + +getAllcontry(): Observable { +return this.apiRequest.get("Country_ListFilter1/Country_ListFilter1"); } + + + + getstateDependent(field: string): Observable { + return this.apiRequest.get("State_ListFilter1/State_ListFilter11/" + field); + } + + + +// updateaction +} \ No newline at end of file diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd_cardvariable.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd_cardvariable.ts new file mode 100644 index 0000000..43351cf --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd_cardvariable.ts @@ -0,0 +1,4 @@ +export const Testddcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component.ts index 8052672..97bbfb0 100644 --- a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component.ts +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/Stepper_workflow/Stepper_workflow.component.ts @@ -19,6 +19,7 @@ + import { Component, OnInit } from '@angular/core'; @@ -249,6 +250,8 @@ export class Stepper_workflowComponent implements OnInit { console.log('id is ', id) // stepper route + this.router.navigate(["../stepper/", id], { relativeTo: this.route }); + diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.css.map b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.css.map new file mode 100644 index 0000000..4215b45 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["stepper.component.scss","stepper.component.css"],"names":[],"mappings":"AAAA;EACE,UAAA;EACA,YAAA;ACCF;;ADCA;EACE,UAAA;EACA,aAAA;ACEF;;ADAA;EACE,UAAA;EACA,aAAA;ACGF;;ADDA;EACE,UAAA;EACA,aAAA;ACIF;;ADDA;EACE,WAAA;EACA,aAAA;ACIF;;ADDA;EACE,WAAA;EACA,kBAAA;EACA,aAAA;EACA,qBAAA;EACA,sBAAA;EACA,kBAAA;EACA,sBAAA;ACIF;;ADFA;EACE,UAAA;ACKF;;ADHA;EACE,kBAAA;ACMF;;ADHA;EACE,WAAA;ACMF;;ADJA;EACA;IACA,WAAA;ECOE;AACF","file":"stepper.component.css"} \ No newline at end of file diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.html b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.html new file mode 100644 index 0000000..3e784bd --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.html @@ -0,0 +1,162 @@ + + +
+ + + + + + + +
+ +
+
+
+
+

Workflow

+
+ +
+ + + + step 0 + Application Update + Datagrid + Create/bgh
Information Of + Customer
+
+ + + Step 2 + Review And
Confirmation
+ + Finish . + +
+
+
+
+
+ +
+
+

bgh

+

Update {{TestddentryForm.name}}

+
+ +
+ + +
+ +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ + + +
+ +
+ + + + +
+ +
+
+
+ + +
+ + + + + + + + + + + +
+ +
+ +
+
+ + + +
+
+ +
+ +
+
+
+
+

Review And Confirmation

+
+ + +
+
+
Bgh Summary:

Name : {{ TestddentryForm.get('name')?.value | json}}

+ +

Description : {{ TestddentryForm.get('description')?.value | json}}

+ +

Active : {{ TestddentryForm.get('active')?.value | json}}

+ +

contry : {{ TestddentryForm.get('contry')?.value | json}}

+ +

state : {{ TestddentryForm.get('state')?.value | json}}

+ + +
+
+ + +
+
+
\ No newline at end of file diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.scss b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.scss new file mode 100644 index 0000000..35a9e5a --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.scss @@ -0,0 +1,46 @@ +.horizontal{ + width: 25%; + padding: 5px; +} +.horizontal1{ + width: 50%; + padding: 10px; +} +.middle{ + width: 33%; + padding: 10px; +} +.middle1{ + width: 75%; + padding: 10px; +} + +.full{ + width: 100%; + padding: 10px; +} + +input[type=text],[type=date], select { + width: 100%; + padding: 12px 20px; + margin: 8px 0; + display: inline-block; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} +.required-field{ + color: red; +} +.center { + text-align: center; + +} +.center{ + color: blue; +} +@media (max-width: 600px){ +.horizontal,.middle,.horizontal1,.middle1 { +width: 100%; +}} + diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.spec.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.spec.ts new file mode 100644 index 0000000..bb1f08f --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { stepperComponent } from './stepper.component'; + +describe('stepperComponent', () => { + let component: stepperComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ stepperComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(stepperComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.ts new file mode 100644 index 0000000..4ab505b --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.component.ts @@ -0,0 +1,362 @@ +import { Component, OnInit } from '@angular/core'; + + +import { ToastrService } from 'ngx-toastr'; +import { ActivatedRoute, Router } from '@angular/router'; +import { College } from 'src/app/models/fnd/play'; +import { student } from 'src/app/models/fnd/Studentadd'; +import { AbstractControl,FormArray, FormBuilder, FormGroup, ValidationErrors, Validators } from '@angular/forms'; +import { Observable } from 'rxjs'; +import { ValidationError } from 'src/app/models/fnd/ValidationError'; +import { stepperservice } from './stepper.service'; +declare var JsBarcode: any; + @Component({ + selector: 'app-editstepper', + templateUrl: './stepper.component.html', + styleUrls: ['./stepper.component.scss'] +}) +export class stepperComponent implements OnInit { + updated = false; + stringJson: any; + customerId: string = ''; + selectedFile!: File; + fileName = ''; + + id: number; + errorFields: ValidationError[] = []; + appToUpdate: College = null; + trained = false; + + json: string = ""; + luisApp = + { + name: '', + created: 1, + trained: 1, + tested: 1, + updated: 1, + published: 1, + + }; + // Layout direction changing + layout = { + direction: "vertical", + block1: "clr-col-lg-3 clr-col-12 ", + block2: "clr-col-lg-9 clr-col-12 ", + }; + + timelineStyle = { + step0: { state: "current", open: true, failed: false }, + step1: { state: "not-started", open: false, failed: false }, +}; +public TestddentryForm: FormGroup; + submitted = false; + rowSelected: any = {}; + modalcomplete = false; + + constructor( +private mainService: stepperservice, + +private Testdd_fb: FormBuilder, +private router: Router, + private route: ActivatedRoute, + private toastr: ToastrService, + ) { } + + ngOnInit(): void { + this.id = this.route.snapshot.params["id"]; + console.log("update with id = ", this.id); + + + this.TestddentryForm = this.Testdd_fb.group({ +name : [null], + +description : [null], + +active : [true], + +contry : [null], + +state : [null], + + + }); + + + + + +this.getallcontry(); + + + + + const stepId = this.id; // or from route/query/etc + + this.getResolvedDataFromStepper(stepId).subscribe(res => { + console.log('response get ', res); + + if (res === null) { + this.showEmptyForm(); + } else { + if (res['Testdd']) { + + this.prefillbghForm(res['Testdd']); + } +} + }); + + } +showEmptyForm(): void { + console.log('No config found. Showing empty form.'); + // You can choose to show one or both based on some logic + + this.TestddentryForm.reset(); + } prefillbghForm(data: any): void { + + console.log(' bgh data ', data) + this.TestddentryForm.patchValue({ + id: data.id || '', +name: data.name || '', + +description: data.description || '', + +active: data.active || '', + +contry: data.contry || '', + +state: data.state || '', + + }); + } + getResolvedDataFromStepper(id: number): Observable { + console.log('get step config'); + + return new Observable(observer => { + this.mainService.gettabledata(id).subscribe(configList => { + if (!configList || configList.length === 0) { + console.log('empty config'); + observer.next(null); + observer.complete(); + return; + } + + const results: { [key: string]: any } = {}; + let processed = 0; + + configList.forEach(config => { + const { table_name, table_id } = config; + + this.getByTableNameAndId(table_name, table_id).subscribe(data => { + + console.log('data is ', data); + results[table_name] = data; + + processed++; + if (processed === configList.length) { + observer.next(results); // emit combined data + observer.complete(); + } + + }, error => { + console.error(`Error loading data for table ${table_name}`, error); + processed++; + if (processed === configList.length) { + observer.next(results); // continue with what we have + observer.complete(); + } + }); + }); + + }, error => { + console.error("Error loading stepper config", error); + observer.error(error); + }); + }); + } + + + + getByTableNameAndId(tableName: string, id: number): Observable { + + switch (tableName) { + case 'Testdd': + return this.mainService.getTestddById(id);// aur bhi cases agar naye table add ho to + default: + throw new Error(`Unknown table name: ${tableName}`); + } + } + // Change to Horizontal Layout + changeToHorizonTal() { + this.layout = { + direction: "horizontal", + block1: "clr-col-lg-12 clr-col-12 height container", + block2: "clr-col-lg-12 clr-col-12 container", + } + } + // Change to Vertical Layout + changeToVertical() { + this.layout = { + direction: "vertical", + block1: "clr-col-lg-3 clr-col-12 ", + block2: "clr-col-lg-9 clr-col-12 ", + } + } + + + + onbghSave() { + console.log('Form Submitted:', this.TestddentryForm.value); + this.submitted = true; + if (this.TestddentryForm.invalid) { + + console.log('invalid form ..'); + // Log all form errors + Object.keys(this.TestddentryForm.controls).forEach(field => { + const control = this.TestddentryForm.get(field); + if (control && control.invalid) { + console.log(`Error in field: ${field}`, control.errors); + } + } + ); + return; + } + this.onbghCreate(); + } + + onbghCreate() { + + + + + + + + + + + this.mainService.createTestdd(this.TestddentryForm.value).subscribe( + (data) => { + console.log('adding data ', data); + this.customerId = data.id; + + console.log('id is ', this.customerId); + + + const tableId = data.id; + const tableName = 'Testdd'; + const stepperId = this.id; + + // Save stepper config + this.mainService.saveStepperConfig(stepperId, tableId, tableName).subscribe(() => { + this.toastr.success("Stepper Config Saved"); + }); 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"); + } + }); + this.rowSelected = this.TestddentryForm.value; + + setTimeout(() => { + this.ngOnInit(); + }, 500); + } + + + onnext() { + this.router.navigate(["../../main/workflow"], { relativeTo: this.route }); + } + reset() { + this.json = ""; + this.luisApp = + { + name: '', + trained: 1, + tested: 1, + updated: 1, + published: 1, + created: 1, + + }; + + this.timelineStyle = { + step0: { state: "current", open: true, failed: false }, + step1: { state: "not-started", open: false, failed: false }, + }; + } + current() { + console.log(this.timelineStyle) + this.stringJson = JSON.stringify(this.timelineStyle); + console.log("String json object :", this.stringJson); + + } + + +rsModaldescription = false; +goToReplaceStringdescription(row){ +this.rowSelected = row; this.rsModaldescription =true; } + + + +selectcontry ; +getallcontry() { + this.mainService.getAllcontry().subscribe(data=>{ +this.selectcontry = data; +console.log(data); +},(error) => { console.log(error); }); } + +// Dependemt Dropdown field start +onEntityChangestate(item){ + this.dependet2state(item); } + dependentData: any; +dependet2state (item){ + this.mainService.getById(item).subscribe( (data) => { + console.log(data); this.dependentData = [data]; + },(error) => { console.log(error); }); } + // DependemtDropdown field end + + + + + + + + + + + +// updateaction +} + + + + + + + + + diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.service.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.service.ts new file mode 100644 index 0000000..a457ff3 --- /dev/null +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/stepperworkflow/stepper/stepper.service.ts @@ -0,0 +1,57 @@ +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 stepperservice{ + private StepperURL = "Stepper_table_config/Stepper_table_config"; + private TestddURL = "Testdd/Testdd" ; constructor( + private http: HttpClient, + private apiRequest: ApiRequestService, + ) { } +gettabledata(id: number): Observable { + const _http = this.StepperURL + "/stepId/" + id; + return this.apiRequest.get(_http); + } + + saveStepperConfig(stepperId: number, tableId: number, tableName: string): Observable { + const params = new HttpParams() + .set('stepperId', stepperId.toString()) + .set('tableId', tableId.toString()) + .set('tableName', tableName); + + return this.apiRequest.post(this.StepperURL, null, params); // null body, params used + } getAllTestdd(page?: number, size?: number): Observable { + return this.apiRequest.get(this.TestddURL); + } + getTestddById(id: number): Observable { + const _http = this.TestddURL + "/" + id; + return this.apiRequest.get(_http); + } + createTestdd(data: any): Observable { + return this.apiRequest.post(this.TestddURL, data); + } + updateTestdd(id: number, data: any): Observable { + const _http = this.TestddURL + "/" + id; + return this.apiRequest.put(_http, data); + } + deleteTestdd(id: number): Observable { + const _http = this.TestddURL + "/" + id; + return this.apiRequest.delete(_http); + } + + + + + + +getAllcontry(): Observable { +return this.apiRequest.get("Country_ListFilter1/Country_ListFilter1"); } + + + +// updateaction +} \ No newline at end of file diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts index 7377c69..5dcdf68 100644 --- a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts @@ -1,3 +1,7 @@ +import { stepperComponent } from './BuilderComponents/stepperworkflow/stepper/stepper.component'; +import { TestddComponent } from './BuilderComponents/basicp1/Testdd/Testdd.component'; +import { StateComponent } from './BuilderComponents/basicp1/State/State.component'; +import { CountryComponent } from './BuilderComponents/basicp1/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:'stepper/:id',component:stepperComponent}, + + +{path:'Testdd',component:TestddComponent}, + + +{path:'State',component:StateComponent}, + + +{path:'Country',component:CountryComponent}, + + diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts index ecbab3d..33370bc 100644 --- a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts @@ -1,3 +1,7 @@ +import { stepperComponent } from './BuilderComponents/stepperworkflow/stepper/stepper.component'; +import { TestddComponent } from './BuilderComponents/basicp1/Testdd/Testdd.component'; +import { StateComponent } from './BuilderComponents/basicp1/State/State.component'; +import { CountryComponent } from './BuilderComponents/basicp1/Country/Country.component'; import { CommonModule } from '@angular/common'; @@ -129,6 +133,18 @@ import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/S // buildercomponents +stepperComponent, + + +TestddComponent, + + +StateComponent, + + +CountryComponent, + + diff --git a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json index ee15955..7794049 100644 --- a/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json +++ b/stepper065-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json @@ -228,8 +228,13 @@ "SUB_MENU": "Sub Menu", "Active": "Active", "Description": "Description", - "Fileupload_Field": "Fileupload_Field", - "Test22": "Test22", - "Test11": "Test11", + "Country_name": "Country_name", + "State": "State", + "State_Name": "State_Name", + "contry": "contry", + "Country": "Country", + "state": "state", + "Country_Name": "Country_Name", + "Testdd": "Testdd", "Name": "Name" } \ No newline at end of file