diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java index f9801fb..3ca1dca 100644 --- a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java @@ -69,6 +69,24 @@ public class BuilderService { executeDump(true); // ADD OTHER SERVICE +addCustomMenu( "Village","Village", "Master"); + + +addCustomMenu( "City","City", "Master"); + + +addCustomMenu( "Testdd","Testdd", "Transcations"); + + +addCustomMenu( "Distric","Distric", "Transcations"); + + +addCustomMenu( "State","State", "Transcations"); + + +addCustomMenu( "Country","Country", "Transcations"); + + System.out.println("dashboard and menu inserted..."); diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CityController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CityController.java new file mode 100644 index 0000000..07b0d4e --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CityController.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.City; +import com.realnet.basicp1.Services.CityService ; + + + + + + + + +@RequestMapping(value = "/City") + @CrossOrigin("*") +@RestController +public class CityController { + @Autowired + private CityService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/City") + public City Savedata(@RequestBody City data) { + City save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/City/{id}") + public City update(@RequestBody City data,@PathVariable Integer id ) { + City update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/City/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("/City") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/City") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/City/{id}") + public City getdetailsbyId(@PathVariable Integer id ) { + City get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/City/{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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/City_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CountryController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/CountryController.java new file mode 100644 index 0000000..fbdc27f --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Country_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/DistricController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/DistricController.java new file mode 100644 index 0000000..91a3a5f --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/DistricController.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.Distric; +import com.realnet.basicp1.Services.DistricService ; + + + + + + + + +@RequestMapping(value = "/Distric") + @CrossOrigin("*") +@RestController +public class DistricController { + @Autowired + private DistricService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/Distric") + public Distric Savedata(@RequestBody Distric data) { + Distric save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Distric/{id}") + public Distric update(@RequestBody Distric data,@PathVariable Integer id ) { + Distric update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Distric/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("/Distric") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Distric") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Distric/{id}") + public Distric getdetailsbyId(@PathVariable Integer id ) { + Distric get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Distric/{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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Distric_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/StateController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/StateController.java new file mode 100644 index 0000000..ef3ca0b --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/State_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/TestddController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/TestddController.java new file mode 100644 index 0000000..4bef594 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/TestddController.java @@ -0,0 +1,139 @@ +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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/VillageController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/VillageController.java new file mode 100644 index 0000000..65b1b60 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/VillageController.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.Village; +import com.realnet.basicp1.Services.VillageService ; + + + + + + + + +@RequestMapping(value = "/Village") + @CrossOrigin("*") +@RestController +public class VillageController { + @Autowired + private VillageService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/Village") + public Village Savedata(@RequestBody Village data) { + Village save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Village/{id}") + public Village update(@RequestBody Village data,@PathVariable Integer id ) { + Village update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Village/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("/Village") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Village") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Village/{id}") + public Village getdetailsbyId(@PathVariable Integer id ) { + Village get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Village/{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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Village_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_CityController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_CityController.java new file mode 100644 index 0000000..0056bd0 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_CityController.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.City; +import com.realnet.basicp1.Services.CityService ; + + + + + + + + +@RequestMapping(value = "/token/City") + @CrossOrigin("*") +@RestController +public class tokenFree_CityController { + @Autowired + private CityService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/City") + public City Savedata(@RequestBody City data) { + City save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/City/{id}") + public City update(@RequestBody City data,@PathVariable Integer id ) { + City update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/City/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("/City") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/City") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/City/{id}") + public City getdetailsbyId(@PathVariable Integer id ) { + City get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/City/{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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_City_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_CountryController.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Country_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_DistricController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_DistricController.java new file mode 100644 index 0000000..7030466 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_DistricController.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.Distric; +import com.realnet.basicp1.Services.DistricService ; + + + + + + + + +@RequestMapping(value = "/token/Distric") + @CrossOrigin("*") +@RestController +public class tokenFree_DistricController { + @Autowired + private DistricService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/Distric") + public Distric Savedata(@RequestBody Distric data) { + Distric save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Distric/{id}") + public Distric update(@RequestBody Distric data,@PathVariable Integer id ) { + Distric update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Distric/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("/Distric") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Distric") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Distric/{id}") + public Distric getdetailsbyId(@PathVariable Integer id ) { + Distric get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Distric/{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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Distric_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_StateController.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_State_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_TestddController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_TestddController.java new file mode 100644 index 0000000..bc54a01 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_TestddController.java @@ -0,0 +1,139 @@ +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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_VillageController.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_VillageController.java new file mode 100644 index 0000000..56bd519 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_VillageController.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.Village; +import com.realnet.basicp1.Services.VillageService ; + + + + + + + + +@RequestMapping(value = "/token/Village") + @CrossOrigin("*") +@RestController +public class tokenFree_VillageController { + @Autowired + private VillageService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + @PostMapping("/Village") + public Village Savedata(@RequestBody Village data) { + Village save = Service.Savedata(data) ; + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Village/{id}") + public Village update(@RequestBody Village data,@PathVariable Integer id ) { + Village update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Village/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("/Village") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Village") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Village/{id}") + public Village getdetailsbyId(@PathVariable Integer id ) { + Village get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Village/{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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Village_ListFilter1Controller.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/City.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/City.java new file mode 100644 index 0000000..599edc6 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/City.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 City extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String city_name; + +@Column(length = 2000) +private String description; + +private boolean active; + +private String distric_name; + + +} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/City_ListFilter1.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country.java new file mode 100644 index 0000000..1ffd720 --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Country_ListFilter1.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Distric.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Distric.java new file mode 100644 index 0000000..4957a65 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Distric.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 Distric extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String district_name; + +@Column(length = 2000) +private String description; + +private boolean active; + +private String state_name; + + +} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Distric_ListFilter1.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State.java new file mode 100644 index 0000000..f82173f --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/State_ListFilter1.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Testdd.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Testdd.java new file mode 100644 index 0000000..26e4fea --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Testdd.java @@ -0,0 +1,70 @@ +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; + + + + + +private String distric; + + + + + +private String city; + + + + + +private String village; + + + + + + +} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Village.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Village.java new file mode 100644 index 0000000..1fbc579 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Village.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 Village extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String village_name; + +@Column(length = 2000) +private String description; + +private boolean active; + +private String city_name; + + +} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Village_ListFilter1.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CityRepository.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CityRepository.java new file mode 100644 index 0000000..1a9b719 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CityRepository.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.City; + +@Repository +public interface CityRepository extends JpaRepository { + +@Query(value = "select * from city where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from city where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CountryRepository.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/CountryRepository.java new file mode 100644 index 0000000..b5d100b --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/DistricRepository.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/DistricRepository.java new file mode 100644 index 0000000..38f5960 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/DistricRepository.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.Distric; + +@Repository +public interface DistricRepository extends JpaRepository { + +@Query(value = "select * from distric where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from distric where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/StateRepository.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/StateRepository.java new file mode 100644 index 0000000..5d7b00a --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/TestddRepository.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/TestddRepository.java new file mode 100644 index 0000000..da5a890 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/TestddRepository.java @@ -0,0 +1,40 @@ +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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/VillageRepository.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/VillageRepository.java new file mode 100644 index 0000000..5dbcc6e --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/VillageRepository.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.Village; + +@Repository +public interface VillageRepository extends JpaRepository { + +@Query(value = "select * from village where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from village where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CityService.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CityService.java new file mode 100644 index 0000000..f947563 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CityService.java @@ -0,0 +1,103 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.CityRepository; +import com.realnet.basicp1.Entity.City +;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 CityService { +@Autowired +private CityRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + +public City Savedata(City data) { + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +City 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 City getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public City update(City data,Integer id) { + City old = Repository.findById(id).get(); +old.setCity_name(data.getCity_name()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setDistric_name(data.getDistric_name()); + +final City test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/City_ListFilter1Service.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/City_ListFilter1Service.java new file mode 100644 index 0000000..9989253 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/City_ListFilter1Service.java @@ -0,0 +1,57 @@ +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) { +boolean isactive = data.isActive(); + + if (isactive) {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) { +boolean isactive = data.isActive(); + + if (isactive) {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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CountryService.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/CountryService.java new file mode 100644 index 0000000..a7692d1 --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Country_ListFilter1Service.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/DistricService.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/DistricService.java new file mode 100644 index 0000000..3a0ae76 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/DistricService.java @@ -0,0 +1,103 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.DistricRepository; +import com.realnet.basicp1.Entity.Distric +;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 DistricService { +@Autowired +private DistricRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + +public Distric Savedata(Distric data) { + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Distric 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 Distric getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Distric update(Distric data,Integer id) { + Distric old = Repository.findById(id).get(); +old.setDistrict_name(data.getDistrict_name()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setState_name(data.getState_name()); + +final Distric test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Distric_ListFilter1Service.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Distric_ListFilter1Service.java new file mode 100644 index 0000000..c7d6b88 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Distric_ListFilter1Service.java @@ -0,0 +1,57 @@ +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) { +boolean isactive = data.isActive(); + + if (isactive) {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) { +boolean isactive = data.isActive(); + + if (isactive) {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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/StateService.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/StateService.java new file mode 100644 index 0000000..9aac09b --- /dev/null +++ b/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/State_ListFilter1Service.java b/testdd006-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/testdd006-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/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/TestddService.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/TestddService.java new file mode 100644 index 0000000..aa1d953 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/TestddService.java @@ -0,0 +1,177 @@ +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()); + + + + +old.setDistric(data.getDistric()); + + + + +old.setCity(data.getCity()); + + + + +old.setVillage(data.getVillage()); + + + + +final Testdd test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/VillageService.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/VillageService.java new file mode 100644 index 0000000..9f0193e --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/VillageService.java @@ -0,0 +1,103 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.VillageRepository; +import com.realnet.basicp1.Entity.Village +;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 VillageService { +@Autowired +private VillageRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + +public Village Savedata(Village data) { + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Village 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 Village getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Village update(Village data,Integer id) { + Village old = Repository.findById(id).get(); +old.setVillage_name(data.getVillage_name()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setCity_name(data.getCity_name()); + +final Village test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Village_ListFilter1Service.java b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Village_ListFilter1Service.java new file mode 100644 index 0000000..46081e5 --- /dev/null +++ b/testdd006-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Village_ListFilter1Service.java @@ -0,0 +1,57 @@ +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) { +boolean isactive = data.isActive(); + + if (isactive) {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) { +boolean isactive = data.isActive(); + + if (isactive) {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/testdd006-db-d/authsec_mysql/mysql/wf_table/wf_table.sql b/testdd006-db-d/authsec_mysql/mysql/wf_table/wf_table.sql new file mode 100755 index 0000000..1c16beb --- /dev/null +++ b/testdd006-db-d/authsec_mysql/mysql/wf_table/wf_table.sql @@ -0,0 +1,12 @@ +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.Distric(id BIGINT NOT NULL AUTO_INCREMENT, district_name VARCHAR(400), active VARCHAR(400), description VARCHAR(400), state_name VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Testdd(id BIGINT NOT NULL AUTO_INCREMENT, distric VARCHAR(400), active VARCHAR(400), description VARCHAR(400), city VARCHAR(400), contry int, state VARCHAR(400), village VARCHAR(400), name VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.City(id BIGINT NOT NULL AUTO_INCREMENT, city_name VARCHAR(400), distric_name VARCHAR(400), active VARCHAR(400), description VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Village(id BIGINT NOT NULL AUTO_INCREMENT, active VARCHAR(400), city_name VARCHAR(400), description VARCHAR(400), village_name VARCHAR(400), PRIMARY KEY (id)); + diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts index 231b3a1..fdff417 100644 --- a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts +++ b/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.html b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.html new file mode 100644 index 0000000..1b732ea --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.html @@ -0,0 +1,412 @@ + +
+
+
+

City

+
+
+ + + + + + +
+ + + + Loading ... + +
{{error}}
+
+ + city Name + + + + Description + + + + Active + + + + distric name + + + + + + Action + + + + + +{{user. city_name }} + + + + + + +{{user. active }} + + +{{user. distric_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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.scss b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.ts new file mode 100644 index 0000000..3e44d8e --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.component.ts @@ -0,0 +1,312 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Cityservice} from './City.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 { Citycardvariable } from './City_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +import { ActivatedRoute, Router } from '@angular/router'; +declare var JsBarcode: any; +@Component({ + selector: 'app-City', + templateUrl: './City.component.html', + styleUrls: ['./City.component.scss'] +}) +export class CityComponent implements OnInit { + cardButton = Citycardvariable.cardButton; + cardmodeldata = Citycardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Citycardvariable.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 = 'City_formCode' +tableName = 'City'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Cityservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + private router: Router, + private route: ActivatedRoute ) { } +// 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({ +city_name : [null], + +description : [null], + +active : [true], + +distric_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 === "City_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; } + + + + + + goToDataM(){ + this.router.navigate(['/cns-portal/datamanagement'],{ relativeTo: this.route }); + } + + +downloadCSV(tableName): void { + this.mainService.downloadCSV(tableName).subscribe(response => { + const blob = new Blob([response], { type: 'application/octet-stream' }); + const url = window.URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; + a.download = `${tableName}.csv`; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + }); +}// updateaction +} + + + + + + + diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.service.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.service.ts new file mode 100644 index 0000000..b825814 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City.service.ts @@ -0,0 +1,46 @@ +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'; +import baseUrl from 'src/app/services/api/helper'; +@Injectable({ + providedIn: 'root' +}) +export class Cityservice{ + private baseURL = "City/City" ; 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); + } + + + + + + + + +downloadCSV(tableName: string): Observable { + const url = `${baseUrl}/api/template/download-csv?tableName=${tableName}`; + return this.http.get(url, { responseType: 'blob' }) + +}// updateaction +} \ No newline at end of file diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City_cardvariable.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City_cardvariable.ts new file mode 100644 index 0000000..5b1163e --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/City/City_cardvariable.ts @@ -0,0 +1,4 @@ +export const Citycardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.html b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.html new file mode 100644 index 0000000..27fd951 --- /dev/null +++ b/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.scss b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.component.ts b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country.service.ts b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Country/Country_cardvariable.ts b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.component.html b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.component.html new file mode 100644 index 0000000..4c829d2 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.component.html @@ -0,0 +1,405 @@ + +
+
+
+

Distric

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + district Name + + + + Description + + + + Active + + + + state name + + + + + + Action + + + + + +{{user. district_name }} + + + + + + +{{user. active }} + + +{{user. state_name }} + + + + + + + +
Who Column
+
Account ID: {{user.accountId}}
+
Created At: {{user.createdAt| date}}
+
Created By: {{user.createdBy}}
+
Updated At: {{user.updatedAt | date}}
+
Updated By: {{user.updatedBy}}
+
+
+
+ + + + + + + +
+ + + Users per page + {{pagination.firstItem + 1}} - {{pagination.lastItem + 1}} + of {{pagination.totalItems}} users + + +
+ + + +
+
+
+
+
+
+ +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] }} + {{afterText(item.fieldtext)}} +
+ +
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ] | date}} + {{afterText(item.fieldtext)}} +
+
+ {{beforeText(item.fieldtext)}} + {{ app[transform(item.fieldtext) ]}} + {{afterText(item.fieldtext)}} +
+ +
+
+
+ + +
+ +
+ +
File Preview
+
+
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.component.scss b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.component.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.component.ts new file mode 100644 index 0000000..d7522b5 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.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 { Districservice} from './Distric.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 { Districcardvariable } from './Distric_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Distric', + templateUrl: './Distric.component.html', + styleUrls: ['./Distric.component.scss'] +}) +export class DistricComponent implements OnInit { + cardButton = Districcardvariable.cardButton; + cardmodeldata = Districcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Districcardvariable.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 = 'Distric_formCode' +tableName = 'Distric'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Districservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + ) { } +// component button + ngOnInit(): void { + if(this.cardmodeldata !== ''){ + this.cardmodal = JSON.parse(this.cardmodeldata); + this.dashboardArray = this.cardmodal.dashboard.slice(); + console.log(this.dashboardArray) + } + this.userrole=this.userInfoService.getRoles(); + this.getData(); + this.entryForm = this._fb.group({ +district_name : [null], + +description : [null], + +active : [true], + +state_name : [null], + + + + + + + + + + + }); // component_button200 + // form code start + this.extensionService.getJsonObjectsByFormCodeList(this.formcode).subscribe(data => { + console.log(data); + const jsonArray = data.map((str) => JSON.parse(str)); + this.additionalFieldsFromBackend = jsonArray; + this.checkFormCode = this.additionalFieldsFromBackend.some(field => field.formCode === "Distric_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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.service.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.service.ts new file mode 100644 index 0000000..564353d --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric.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 Districservice{ + private baseURL = "Distric/Distric" ; 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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric_cardvariable.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric_cardvariable.ts new file mode 100644 index 0000000..df77458 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Distric/Distric_cardvariable.ts @@ -0,0 +1,4 @@ +export const Districcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.html b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.html new file mode 100644 index 0000000..05d2851 --- /dev/null +++ b/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.scss b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.component.ts b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State.service.ts b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/State/State_cardvariable.ts b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.html b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.html new file mode 100644 index 0000000..63c0f1e --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.html @@ -0,0 +1,620 @@ + +
+
+
+

Testdd

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Name + + + + Description + + + + Active + + + + contry + + + + state + + + + distric + + + + city + + + + village + + + + + + Action + + + + + +{{user. name }} + + + + + + +{{user. active }} + + +{{user. contryname }} + + +{{user. state }} + + +{{user. distric }} + + +{{user. city }} + + +{{user. village }} + + + + + + + +
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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.scss b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.ts new file mode 100644 index 0000000..678d548 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.component.ts @@ -0,0 +1,511 @@ +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], + + +distric : [null], + + +city : [null], + + +village : [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 + } + }); + + + + // Listen for country changes + + + this.entryForm.get('state')?.valueChanges.subscribe((item) => { + + + if (item) { + this.dependet2distric(item); + } else { + this.districdependentData = []; + this.entryForm.get('distric')?.setValue(null); // clear state + } + }); + + + + // Listen for country changes + + + this.entryForm.get('distric')?.valueChanges.subscribe((item) => { + + + if (item) { + this.dependet2city(item); + } else { + this.citydependentData = []; + this.entryForm.get('city')?.setValue(null); // clear state + } + }); + + + + // Listen for country changes + + + this.entryForm.get('city')?.valueChanges.subscribe((item) => { + + + if (item) { + this.dependet2village(item); + } else { + this.villagedependentData = []; + this.entryForm.get('village')?.setValue(null); // clear state + } + }); + + + + } + + + + + + + + + + + + + + + + + error; + getData() { + this.mainService.getAll().subscribe((data) => { + console.log(data); + this.product = data; + if(this.product.length==0){ + this.error="No Data Available" + } + },(error) => { + console.log(error); + if(error){ + this.error="Server Error"; + } + }); + } + onEdit(row) { + this.rowSelected = row; + + + + + + + + +// Dependemt Dropdown field start +this.dependet2state(row.dependentDD); + // Dependemt Dropdown field end + +// Dependemt Dropdown field start +this.dependet2distric(row.dependentDD); + // Dependemt Dropdown field end + +// Dependemt Dropdown field start +this.dependet2city(row.dependentDD); + // Dependemt Dropdown field end + +// Dependemt Dropdown field start +this.dependet2village(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 + +// Dependemt Dropdown field start + + + districdependentData: any; +dependet2distric (item){ + this.mainService.getdistricDependent(item).subscribe( (data) => { + console.log(data); + this.districdependentData = data; + },(error) => { console.log(error); }); + } + + + // DependemtDropdown field end + +// Dependemt Dropdown field start + + + citydependentData: any; +dependet2city (item){ + this.mainService.getcityDependent(item).subscribe( (data) => { + console.log(data); + this.citydependentData = data; + },(error) => { console.log(error); }); + } + + + // DependemtDropdown field end + +// Dependemt Dropdown field start + + + villagedependentData: any; +dependet2village (item){ + this.mainService.getvillageDependent(item).subscribe( (data) => { + console.log(data); + this.villagedependentData = data; + },(error) => { console.log(error); }); + } + + + // DependemtDropdown field end + +// updateaction +} + + + + + + + + + + + + + + + diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.service.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.service.ts new file mode 100644 index 0000000..908ba45 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd.service.ts @@ -0,0 +1,74 @@ +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); + } + + + + + + getdistricDependent(field: string): Observable { + return this.apiRequest.get("Distric_ListFilter1/Distric_ListFilter11/" + field); + } + + + + + + getcityDependent(field: string): Observable { + return this.apiRequest.get("City_ListFilter1/City_ListFilter11/" + field); + } + + + + + + getvillageDependent(field: string): Observable { + return this.apiRequest.get("Village_ListFilter1/Village_ListFilter11/" + field); + } + + + +// updateaction +} \ No newline at end of file diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Testdd/Testdd_cardvariable.ts b/testdd006-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/testdd006-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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.html b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.html new file mode 100644 index 0000000..faa4c85 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.html @@ -0,0 +1,412 @@ + +
+
+
+

Village

+
+
+ + + + + + +
+ + + + Loading ... + +
{{error}}
+
+ + village Name + + + + Description + + + + Active + + + + city name + + + + + + Action + + + + + +{{user. village_name }} + + + + + + +{{user. active }} + + +{{user. city_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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.scss b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.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/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.ts new file mode 100644 index 0000000..f3b49e6 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.component.ts @@ -0,0 +1,312 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Villageservice} from './Village.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 { Villagecardvariable } from './Village_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +import { ActivatedRoute, Router } from '@angular/router'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Village', + templateUrl: './Village.component.html', + styleUrls: ['./Village.component.scss'] +}) +export class VillageComponent implements OnInit { + cardButton = Villagecardvariable.cardButton; + cardmodeldata = Villagecardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Villagecardvariable.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 = 'Village_formCode' +tableName = 'Village'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Villageservice, + private alertService: AlertService, + private toastr: ToastrService, + private _fb: FormBuilder, + private router: Router, + private route: ActivatedRoute ) { } +// 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({ +village_name : [null], + +description : [null], + +active : [true], + +city_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 === "Village_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; } + + + + + + goToDataM(){ + this.router.navigate(['/cns-portal/datamanagement'],{ relativeTo: this.route }); + } + + +downloadCSV(tableName): void { + this.mainService.downloadCSV(tableName).subscribe(response => { + const blob = new Blob([response], { type: 'application/octet-stream' }); + const url = window.URL.createObjectURL(blob); + const a = document.createElement('a'); + a.href = url; + a.download = `${tableName}.csv`; + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + }); +}// updateaction +} + + + + + + + diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.service.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.service.ts new file mode 100644 index 0000000..f9e2c34 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village.service.ts @@ -0,0 +1,46 @@ +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'; +import baseUrl from 'src/app/services/api/helper'; +@Injectable({ + providedIn: 'root' +}) +export class Villageservice{ + private baseURL = "Village/Village" ; 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); + } + + + + + + + + +downloadCSV(tableName: string): Observable { + const url = `${baseUrl}/api/template/download-csv?tableName=${tableName}`; + return this.http.get(url, { responseType: 'blob' }) + +}// updateaction +} \ No newline at end of file diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village_cardvariable.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village_cardvariable.ts new file mode 100644 index 0000000..3947e25 --- /dev/null +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Village/Village_cardvariable.ts @@ -0,0 +1,4 @@ +export const Villagecardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts index 7377c69..ca57349 100644 --- a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts @@ -1,3 +1,9 @@ +import { VillageComponent } from './BuilderComponents/basicp1/Village/Village.component'; +import { CityComponent } from './BuilderComponents/basicp1/City/City.component'; +import { TestddComponent } from './BuilderComponents/basicp1/Testdd/Testdd.component'; +import { DistricComponent } from './BuilderComponents/basicp1/Distric/Distric.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 +262,24 @@ const routes: Routes = [ // buildercomponents +{path:'Village',component:VillageComponent}, + + +{path:'City',component:CityComponent}, + + +{path:'Testdd',component:TestddComponent}, + + +{path:'Distric',component:DistricComponent}, + + +{path:'State',component:StateComponent}, + + +{path:'Country',component:CountryComponent}, + + diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts index ecbab3d..963dbe2 100644 --- a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts @@ -1,3 +1,9 @@ +import { VillageComponent } from './BuilderComponents/basicp1/Village/Village.component'; +import { CityComponent } from './BuilderComponents/basicp1/City/City.component'; +import { TestddComponent } from './BuilderComponents/basicp1/Testdd/Testdd.component'; +import { DistricComponent } from './BuilderComponents/basicp1/Distric/Distric.component'; +import { StateComponent } from './BuilderComponents/basicp1/State/State.component'; +import { CountryComponent } from './BuilderComponents/basicp1/Country/Country.component'; import { CommonModule } from '@angular/common'; @@ -129,6 +135,24 @@ import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/S // buildercomponents +VillageComponent, + + +CityComponent, + + +TestddComponent, + + +DistricComponent, + + +StateComponent, + + +CountryComponent, + + diff --git a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json index ee15955..aaa53e8 100644 --- a/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json +++ b/testdd006-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json @@ -226,10 +226,27 @@ "MENU_ACTION_LINK": "Menu Action Link", "STATUS": "Status", "SUB_MENU": "Sub Menu", - "Active": "Active", + "city_Name": "city_Name", + "distric_name": "distric_name", + "distric": "distric", + "district_Name": "district_Name", "Description": "Description", - "Fileupload_Field": "Fileupload_Field", - "Test22": "Test22", - "Test11": "Test11", - "Name": "Name" + "Country_name": "Country_name", + "city": "city", + "Village": "Village", + "contry": "contry", + "village_Name": "village_Name", + "City": "City", + "Testdd": "Testdd", + "Name": "Name", + "Active": "Active", + "city_name": "city_name", + "state_name": "state_name", + "State": "State", + "State_Name": "State_Name", + "Country": "Country", + "Distric": "Distric", + "state": "state", + "Country_Name": "Country_Name", + "village": "village" } \ No newline at end of file