From ec2f964e3c0b67d846e533791ec7e18a417a7db1 Mon Sep 17 00:00:00 2001 From: risadmin_prod Date: Sat, 14 Jun 2025 06:59:44 +0000 Subject: [PATCH] build_app --- .../Builders/Services/BuilderService.java | 9 + .../Customer_informationController.java | 251 ++++ .../Document_uploadController.java | 91 ++ .../Visa_entry_typeController.java | 83 ++ ...Visa_entry_type_ListFilter1Controller.java | 24 + ...enFree_Customer_informationController.java | 251 ++++ .../tokenFree_Document_uploadController.java | 91 ++ .../tokenFree_Visa_entry_typeController.java | 83 ++ ...Visa_entry_type_ListFilter1Controller.java | 24 + .../basicp1/Entity/Customer_information.java | 109 ++ .../basicp1/Entity/Document_upload.java | 30 + .../basicp1/Entity/Visa_entry_type.java | 24 + .../Entity/Visa_entry_type_ListFilter1.java | 14 + .../Customer_informationRepository.java | 68 + .../Repository/Document_uploadRepository.java | 28 + .../Repository/Visa_entry_typeRepository.java | 26 + .../Services/Customer_informationService.java | 283 ++++ .../Services/Document_uploadService.java | 83 ++ .../Services/Visa_entry_typeService.java | 73 ++ .../Visa_entry_type_ListFilter1Service.java | 47 + .../authsec_mysql/mysql/wf_table/wf_table.sql | 6 + .../login/login-page/login_environment.ts | 18 +- .../Customer_information.component.html | 1161 +++++++++++++++++ .../Customer_information.component.scss | 78 ++ .../Customer_information.component.ts | 741 +++++++++++ .../Customer_information.service.ts | 77 ++ .../Customer_information_cardvariable.ts | 4 + .../Document_upload.component.html | 472 +++++++ .../Document_upload.component.scss | 78 ++ .../Document_upload.component.ts | 353 +++++ .../Document_upload.service.ts | 63 + .../Document_upload_cardvariable.ts | 4 + .../Visa_entry_type.component.html | 315 +++++ .../Visa_entry_type.component.scss | 78 ++ .../Visa_entry_type.component.ts | 220 ++++ .../Visa_entry_type.service.ts | 35 + .../Visa_entry_type_cardvariable.ts | 4 + .../app/modules/main/main-routing.module.ts | 12 + .../src/app/modules/main/main.module.ts | 12 + .../src/assets/i18n/en.json | 29 +- 40 files changed, 5439 insertions(+), 13 deletions(-) create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Customer_informationController.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Document_uploadController.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_typeController.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_type_ListFilter1Controller.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Customer_informationController.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Document_uploadController.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_typeController.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_type_ListFilter1Controller.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Customer_information.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Document_upload.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type_ListFilter1.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Customer_informationRepository.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Document_uploadRepository.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Visa_entry_typeRepository.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Customer_informationService.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Document_uploadService.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_typeService.java create mode 100644 teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_type_ListFilter1Service.java create mode 100755 teststeper02-db-d/authsec_mysql/mysql/wf_table/wf_table.sql create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.html create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.scss create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.service.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information_cardvariable.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.html create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.scss create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.service.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload_cardvariable.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.html create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.scss create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.service.ts create mode 100644 teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type_cardvariable.ts diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java index f9801fb..d1bd5f6 100644 --- a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/Builders/Services/BuilderService.java @@ -69,6 +69,15 @@ public class BuilderService { executeDump(true); // ADD OTHER SERVICE +addCustomMenu( "Document_upload","Document_upload", "Transcations"); + + +addCustomMenu( "Visa_entry_type","Visa_entry_type", "Transcations"); + + +addCustomMenu( "Customer_information","Customer_information", "Transcations"); + + System.out.println("dashboard and menu inserted..."); diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Customer_informationController.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Customer_informationController.java new file mode 100644 index 0000000..f77b7f1 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Customer_informationController.java @@ -0,0 +1,251 @@ +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.Customer_information; +import com.realnet.basicp1.Services.Customer_informationService ; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@RequestMapping(value = "/Customer_information") + @CrossOrigin("*") +@RestController +public class Customer_informationController { + @Autowired + private Customer_informationService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @PostMapping("/Customer_information") + public Customer_information Savedata(@RequestBody Customer_information data) { + Customer_information save = Service.Savedata(data) ; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Customer_information/{id}") + public Customer_information update(@RequestBody Customer_information data,@PathVariable Integer id ) { + Customer_information update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Customer_information/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("/Customer_information") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Customer_information") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Customer_information/{id}") + public Customer_information getdetailsbyId(@PathVariable Integer id ) { + Customer_information get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Customer_information/{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/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Document_uploadController.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Document_uploadController.java new file mode 100644 index 0000000..d437f34 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Document_uploadController.java @@ -0,0 +1,91 @@ +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.Document_upload; +import com.realnet.basicp1.Services.Document_uploadService ; + + + + +@RequestMapping(value = "/Document_upload") + @CrossOrigin("*") +@RestController +public class Document_uploadController { + @Autowired + private Document_uploadService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + @PostMapping("/Document_upload") + public Document_upload Savedata(@RequestBody Document_upload data) { + Document_upload save = Service.Savedata(data) ; + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Document_upload/{id}") + public Document_upload update(@RequestBody Document_upload data,@PathVariable Integer id ) { + Document_upload update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Document_upload/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("/Document_upload") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Document_upload") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Document_upload/{id}") + public Document_upload getdetailsbyId(@PathVariable Integer id ) { + Document_upload get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Document_upload/{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/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_typeController.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_typeController.java new file mode 100644 index 0000000..aeffcc3 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_typeController.java @@ -0,0 +1,83 @@ +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.Visa_entry_type; +import com.realnet.basicp1.Services.Visa_entry_typeService ; + + +@RequestMapping(value = "/Visa_entry_type") + @CrossOrigin("*") +@RestController +public class Visa_entry_typeController { + @Autowired + private Visa_entry_typeService Service; + +@Value("${projectPath}") + private String projectPath; + + + + @PostMapping("/Visa_entry_type") + public Visa_entry_type Savedata(@RequestBody Visa_entry_type data) { + Visa_entry_type save = Service.Savedata(data) ; + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Visa_entry_type/{id}") + public Visa_entry_type update(@RequestBody Visa_entry_type data,@PathVariable Integer id ) { + Visa_entry_type update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Visa_entry_type/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("/Visa_entry_type") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Visa_entry_type") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Visa_entry_type/{id}") + public Visa_entry_type getdetailsbyId(@PathVariable Integer id ) { + Visa_entry_type get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Visa_entry_type/{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/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_type_ListFilter1Controller.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_type_ListFilter1Controller.java new file mode 100644 index 0000000..6ef613e --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/Visa_entry_type_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.Visa_entry_type_ListFilter1; +import com.realnet.basicp1.Services.Visa_entry_type_ListFilter1Service ; +@RequestMapping(value = "/Visa_entry_type_ListFilter1") +@RestController +public class Visa_entry_type_ListFilter1Controller { + + @Autowired + private Visa_entry_type_ListFilter1Service Service; + + @GetMapping("/Visa_entry_type_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Visa_entry_type_ListFilter11") + public List getlistwithparam( ) { + List get = Service.getlistbuilderparam( ); + return get; +} +} \ No newline at end of file diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Customer_informationController.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Customer_informationController.java new file mode 100644 index 0000000..4919852 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Customer_informationController.java @@ -0,0 +1,251 @@ +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.Customer_information; +import com.realnet.basicp1.Services.Customer_informationService ; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@RequestMapping(value = "/token/Customer_information") + @CrossOrigin("*") +@RestController +public class tokenFree_Customer_informationController { + @Autowired + private Customer_informationService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @PostMapping("/Customer_information") + public Customer_information Savedata(@RequestBody Customer_information data) { + Customer_information save = Service.Savedata(data) ; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Customer_information/{id}") + public Customer_information update(@RequestBody Customer_information data,@PathVariable Integer id ) { + Customer_information update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Customer_information/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("/Customer_information") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Customer_information") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Customer_information/{id}") + public Customer_information getdetailsbyId(@PathVariable Integer id ) { + Customer_information get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Customer_information/{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/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Document_uploadController.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Document_uploadController.java new file mode 100644 index 0000000..b5a0e45 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Document_uploadController.java @@ -0,0 +1,91 @@ +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.Document_upload; +import com.realnet.basicp1.Services.Document_uploadService ; + + + + +@RequestMapping(value = "/token/Document_upload") + @CrossOrigin("*") +@RestController +public class tokenFree_Document_uploadController { + @Autowired + private Document_uploadService Service; + +@Value("${projectPath}") + private String projectPath; + + + + + + @PostMapping("/Document_upload") + public Document_upload Savedata(@RequestBody Document_upload data) { + Document_upload save = Service.Savedata(data) ; + + + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Document_upload/{id}") + public Document_upload update(@RequestBody Document_upload data,@PathVariable Integer id ) { + Document_upload update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Document_upload/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("/Document_upload") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Document_upload") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Document_upload/{id}") + public Document_upload getdetailsbyId(@PathVariable Integer id ) { + Document_upload get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Document_upload/{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/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_typeController.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_typeController.java new file mode 100644 index 0000000..d92f405 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_typeController.java @@ -0,0 +1,83 @@ +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.Visa_entry_type; +import com.realnet.basicp1.Services.Visa_entry_typeService ; + + +@RequestMapping(value = "/token/Visa_entry_type") + @CrossOrigin("*") +@RestController +public class tokenFree_Visa_entry_typeController { + @Autowired + private Visa_entry_typeService Service; + +@Value("${projectPath}") + private String projectPath; + + + + @PostMapping("/Visa_entry_type") + public Visa_entry_type Savedata(@RequestBody Visa_entry_type data) { + Visa_entry_type save = Service.Savedata(data) ; + + System.out.println("data saved..." + save); + + return save; + } +@PutMapping("/Visa_entry_type/{id}") + public Visa_entry_type update(@RequestBody Visa_entry_type data,@PathVariable Integer id ) { + Visa_entry_type update = Service.update(data,id); + System.out.println("data update..." + update); + return update; + } +// get all with pagination + @GetMapping("/Visa_entry_type/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("/Visa_entry_type") + public List getdetails() { + List get = Service.getdetails(); + return get; +} +// get all without authentication + + @GetMapping("/token/Visa_entry_type") + public List getallwioutsec() { + List get = Service.getdetails(); + return get; +} +@GetMapping("/Visa_entry_type/{id}") + public Visa_entry_type getdetailsbyId(@PathVariable Integer id ) { + Visa_entry_type get = Service.getdetailsbyId(id); + return get; + } +@DeleteMapping("/Visa_entry_type/{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/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_type_ListFilter1Controller.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_type_ListFilter1Controller.java new file mode 100644 index 0000000..08282e7 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Controllers/tokenFree_Visa_entry_type_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.Visa_entry_type_ListFilter1; +import com.realnet.basicp1.Services.Visa_entry_type_ListFilter1Service ; +@RequestMapping(value = "/token/Visa_entry_type_ListFilter1") +@RestController +public class tokenFree_Visa_entry_type_ListFilter1Controller { + + @Autowired + private Visa_entry_type_ListFilter1Service Service; + + @GetMapping("/Visa_entry_type_ListFilter1") + public List getlist() { + List get = Service.getlistbuilder(); + return get; +} + @GetMapping("/Visa_entry_type_ListFilter11") + public List getlistwithparam( ) { + List get = Service.getlistbuilderparam( ); + return get; +} +} \ No newline at end of file diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Customer_information.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Customer_information.java new file mode 100644 index 0000000..50512a7 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Customer_information.java @@ -0,0 +1,109 @@ +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 Customer_information 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 visa_entry_type; + +private String visa_duration; + +private String visa_processing; + +private String travel_start_date; + +private String travel_end_date; + +private int passport_number; + +private String passport_issue_date; + +private String passport_expiry_date; + +private String email_field; + + private String phone_number; + +private String birth_place; + +private String date_of_birth; + + private String gender; + +private String profession; + +private String visa_cost; + +private String referrer; + +private String nationality; + +private String supplier; + +private String agent; + + +} diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Document_upload.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Document_upload.java new file mode 100644 index 0000000..df4b978 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Document_upload.java @@ -0,0 +1,30 @@ +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 Document_upload extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String imageupload_fieldname; +private String imageupload_fieldpath ; + +private String fileupload_fieldname; +private String fileupload_fieldpath ; + + +} diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type.java new file mode 100644 index 0000000..198388f --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type.java @@ -0,0 +1,24 @@ +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 Visa_entry_type extends Extension { + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + +private String visa_entry_type; + + +} diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type_ListFilter1.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type_ListFilter1.java new file mode 100644 index 0000000..4b4d630 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Entity/Visa_entry_type_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 Visa_entry_type_ListFilter1 { + + private Integer id; + + + private String visa_entry_type; +} diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Customer_informationRepository.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Customer_informationRepository.java new file mode 100644 index 0000000..b0a74a6 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Customer_informationRepository.java @@ -0,0 +1,68 @@ +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.Customer_information; + +@Repository +public interface Customer_informationRepository extends JpaRepository { + +@Query(value = "select * from customer_information where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from customer_information where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Document_uploadRepository.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Document_uploadRepository.java new file mode 100644 index 0000000..0fdcbd6 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Document_uploadRepository.java @@ -0,0 +1,28 @@ +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.Document_upload; + +@Repository +public interface Document_uploadRepository extends JpaRepository { + +@Query(value = "select * from document_upload where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from document_upload where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Visa_entry_typeRepository.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Visa_entry_typeRepository.java new file mode 100644 index 0000000..772e922 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Repository/Visa_entry_typeRepository.java @@ -0,0 +1,26 @@ +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.Visa_entry_type; + +@Repository +public interface Visa_entry_typeRepository extends JpaRepository { + +@Query(value = "select * from visa_entry_type where created_by=?1", nativeQuery = true) + List findAll(Long creayedBy); + +@Query(value = "select * from visa_entry_type where created_by=?1", nativeQuery = true) + Page findAll(Pageable page, Long creayedBy); +} \ No newline at end of file diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Customer_informationService.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Customer_informationService.java new file mode 100644 index 0000000..f9c88a4 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Customer_informationService.java @@ -0,0 +1,283 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.Customer_informationRepository; +import com.realnet.basicp1.Entity.Customer_information +;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 Customer_informationService { +@Autowired +private Customer_informationRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +public Customer_information Savedata(Customer_information data) { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Customer_information 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 Customer_information getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Customer_information update(Customer_information data,Integer id) { + Customer_information old = Repository.findById(id).get(); +old.setName(data.getName()); + +old.setDescription(data.getDescription()); + +old.setActive (data.isActive()); + +old.setVisa_entry_type(data.getVisa_entry_type()); + +old.setVisa_duration(data.getVisa_duration()); + +old.setVisa_processing(data.getVisa_processing()); + +old.setTravel_start_date(data.getTravel_start_date()); + +old.setTravel_end_date(data.getTravel_end_date()); + +old.setPassport_number(data.getPassport_number()); + +old.setPassport_issue_date(data.getPassport_issue_date()); + +old.setPassport_expiry_date(data.getPassport_expiry_date()); + +old.setEmail_field(data.getEmail_field()); + +old.setPhone_number(data.getPhone_number()); + +old.setBirth_place(data.getBirth_place()); + +old.setDate_of_birth(data.getDate_of_birth()); + +old.setGender(data.getGender()); + +old.setProfession(data.getProfession()); + +old.setVisa_cost(data.getVisa_cost()); + +old.setReferrer(data.getReferrer()); + +old.setNationality(data.getNationality()); + +old.setSupplier(data.getSupplier()); + +old.setAgent(data.getAgent()); + +final Customer_information test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Document_uploadService.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Document_uploadService.java new file mode 100644 index 0000000..22deaa8 --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Document_uploadService.java @@ -0,0 +1,83 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.Document_uploadRepository; +import com.realnet.basicp1.Entity.Document_upload +;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 Document_uploadService { +@Autowired +private Document_uploadRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + + + +public Document_upload Savedata(Document_upload data) { + + + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Document_upload 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 Document_upload getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Document_upload update(Document_upload data,Integer id) { + Document_upload old = Repository.findById(id).get(); + + + + +final Document_upload test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_typeService.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_typeService.java new file mode 100644 index 0000000..c3ab9fd --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_typeService.java @@ -0,0 +1,73 @@ +package com.realnet.basicp1.Services; +import com.realnet.basicp1.Repository.Visa_entry_typeRepository; +import com.realnet.basicp1.Entity.Visa_entry_type +;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 Visa_entry_typeService { +@Autowired +private Visa_entry_typeRepository Repository; + @Autowired + private AppUserServiceImpl userService; +@Autowired + private RealmService realmService; + +public Visa_entry_type Savedata(Visa_entry_type data) { + + + data.setUpdatedBy(getUser().getUserId()); + data.setCreatedBy(getUser().getUserId()); + data.setAccountId(getUser().getAccount().getAccount_id()); +Visa_entry_type 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 Visa_entry_type getdetailsbyId(Integer id) { + return Repository.findById(id).get(); + } + + + public void delete_by_id(Integer id) { + Repository.deleteById(id); +} + + +public Visa_entry_type update(Visa_entry_type data,Integer id) { + Visa_entry_type old = Repository.findById(id).get(); +old.setVisa_entry_type(data.getVisa_entry_type()); + +final Visa_entry_type test = Repository.save(old); + data.setUpdatedBy(getUser().getUserId()); + return test;} + + + public AppUser getUser() { + AppUser user = userService.getLoggedInUser(); + return user; + + }} diff --git a/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_type_ListFilter1Service.java b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_type_ListFilter1Service.java new file mode 100644 index 0000000..7f92b1e --- /dev/null +++ b/teststeper02-back-b/authsec_springboot/backend/src/main/java/com/realnet/basicp1/Services/Visa_entry_type_ListFilter1Service.java @@ -0,0 +1,47 @@ +package com.realnet.basicp1.Services; +import java.util.*; +import com.realnet.basicp1.Repository.Visa_entry_typeRepository; +import com.realnet.basicp1.Entity.Visa_entry_type; + +import com.realnet.basicp1.Entity.Visa_entry_type_ListFilter1; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; + import org.springframework.stereotype.Service; + +@Service + public class Visa_entry_type_ListFilter1Service { +@Autowired +private Visa_entry_typeRepository Repository; + + + + + public List getlistbuilder() { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Visa_entry_type data : list) { +{ +Visa_entry_type_ListFilter1 dummy = new Visa_entry_type_ListFilter1(); + dummy.setId(data.getId()); + dummy.setVisa_entry_type(data.getVisa_entry_type()); + l.add(dummy); +} +} +return l;} + + + + public List getlistbuilderparam( ) { + List list= Repository.findAll(); + ArrayList l = new ArrayList<>(); + for (Visa_entry_type data : list) { +{ +Visa_entry_type_ListFilter1 dummy = new Visa_entry_type_ListFilter1(); + dummy.setId(data.getId()); + dummy.setVisa_entry_type(data.getVisa_entry_type()); + l.add(dummy); +} +} +return l;} +} \ No newline at end of file diff --git a/teststeper02-db-d/authsec_mysql/mysql/wf_table/wf_table.sql b/teststeper02-db-d/authsec_mysql/mysql/wf_table/wf_table.sql new file mode 100755 index 0000000..9c4839e --- /dev/null +++ b/teststeper02-db-d/authsec_mysql/mysql/wf_table/wf_table.sql @@ -0,0 +1,6 @@ +CREATE TABLE db.Customer_information(id BIGINT NOT NULL AUTO_INCREMENT, agent VARCHAR(400), visa_processing VARCHAR(400), description VARCHAR(400), date_of_birth Date, visa_duration VARCHAR(400), phone_number VARCHAR(400), gender VARCHAR(400), email_field VARCHAR(400), nationality VARCHAR(400), name VARCHAR(400), travel_end_date Date, passport_number int, active VARCHAR(400), birth_place VARCHAR(400), profession VARCHAR(400), visa_entry_type VARCHAR(400), travel_start_date Date, passport_expiry_date Date, referrer VARCHAR(400), supplier VARCHAR(400), passport_issue_date Date, visa_cost VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Visa_entry_type(id BIGINT NOT NULL AUTO_INCREMENT, visa_entry_type VARCHAR(400), PRIMARY KEY (id)); + +CREATE TABLE db.Document_upload(id BIGINT NOT NULL AUTO_INCREMENT, imageupload_field VARCHAR(400), fileupload_field VARCHAR(400), PRIMARY KEY (id)); + diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts index 231b3a1..fdff417 100644 --- a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/login/login-page/login_environment.ts +++ b/teststeper02-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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.html b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.html new file mode 100644 index 0000000..9ee3f10 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.html @@ -0,0 +1,1161 @@ + +
+
+
+

Customer Information

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Name + + + + Description + + + + Active + + + + Visa Entry Type + + + + Visa Duration + + + + Visa Processing + + + + Travel start date + + + + Travel end date + + + + passport Number + + + + Passport issue date + + + + Passport expiry date + + + + Email Field + + + + Phone Number + + + + Birth Place + + + + Date of Birth + + + + Gender + + + + Profession + + + + Visa cost + + + + Referrer + + + + Nationality + + + + Supplier + + + + Agent + + + + + + Action + + + + + +{{user. name }} + + + + + + +{{user. active }} + + +{{user. visa_entry_type }} + + +{{user. visa_duration }} + + +{{user. visa_processing }} + + +{{user. travel_start_date }} + + +{{user. travel_end_date }} + + +{{user. passport_number }} + + +{{user. passport_issue_date }} + + +{{user. passport_expiry_date }} + + +{{user. email_field }} + + +{{user. phone_number }} + + +{{user. birth_place }} + + +{{user. date_of_birth }} + + +{{user. gender }} + + +{{user. profession }} + + +{{user. visa_cost }} + + +{{user. referrer }} + + +{{user. nationality }} + + +{{user. supplier }} + + +{{user. agent }} + + + + + + + +
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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.scss b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.ts new file mode 100644 index 0000000..c432db3 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.component.ts @@ -0,0 +1,741 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Customer_informationservice} from './Customer_information.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 { Customer_informationcardvariable } from './Customer_information_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Customer_information', + templateUrl: './Customer_information.component.html', + styleUrls: ['./Customer_information.component.scss'] +}) +export class Customer_informationComponent implements OnInit { + cardButton = Customer_informationcardvariable.cardButton; + cardmodeldata = Customer_informationcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Customer_informationcardvariable.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 = 'Customer_information_formCode' +tableName = 'Customer_information'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Customer_informationservice, + 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], + +visa_entry_type : [null], + +visa_duration : [null], + +visa_processing : [null], + +travel_start_date : [null], + +travel_end_date : [null], + +passport_number : [null,[Validators.required]], + +passport_issue_date : [null], + +passport_expiry_date : [null], + +email_field : [null], + +phone_number: ['+91'], + +birth_place : [null], + +date_of_birth : [null], + +gender : [null], + +profession : [null], + +visa_cost : [null, { updateOn: 'blur' }], + +referrer : [null], + +nationality : [null], + +supplier : [null], + +agent : [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 === "Customer_information_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; } + + + + + + + + + + + + + + + + + + + +isValidemail_field(email: string): boolean { + const emailPattern = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; + return emailPattern.test(email); } + +isValidPhone_number(phone: string): boolean { + const phonePattern = /^(\+[1-9][0-9]{0,2})?[1-9][0-9]{9}$/; + return phonePattern.test(phone); +} + + + + + +updategender (gender : string): void { + this.entryForm.get('gender').setValue(gender); } + +updategenderEdit(gender : string): void { this.rowSelected.gender = gender } + ; + + + +//currency field start + formatCurrencyvisa_cost () { + // Format the currency with two decimal places + this.rowSelected.visa_cost = Number(this.rowSelected.visa_cost ).toFixed(2); + // Remove commas from the formatted currency + this.rowSelected.visa_cost = this.rowSelected.visa_cost?.replace(/,/g, ''); } + //currency field end + + + + + + + + + +// updateaction +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.service.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.service.ts new file mode 100644 index 0000000..a64b3b5 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information.service.ts @@ -0,0 +1,77 @@ +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 Customer_informationservice{ + private baseURL = "Customer_information/Customer_information" ; 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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information_cardvariable.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information_cardvariable.ts new file mode 100644 index 0000000..c036c4b --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Customer_information/Customer_information_cardvariable.ts @@ -0,0 +1,4 @@ +export const Customer_informationcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.html b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.html new file mode 100644 index 0000000..d34f64f --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.html @@ -0,0 +1,472 @@ + +
+
+
+

Document Upload

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + + + + + + + Action + + + + + + + + + + + + + + +
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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.scss b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.ts new file mode 100644 index 0000000..b129379 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.component.ts @@ -0,0 +1,353 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Document_uploadservice} from './Document_upload.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 { Document_uploadcardvariable } from './Document_upload_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Document_upload', + templateUrl: './Document_upload.component.html', + styleUrls: ['./Document_upload.component.scss'] +}) +export class Document_uploadComponent implements OnInit { + cardButton = Document_uploadcardvariable.cardButton; + cardmodeldata = Document_uploadcardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Document_uploadcardvariable.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 = 'Document_upload_formCode' +tableName = 'Document_upload'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Document_uploadservice, + 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({ + + + + + + + + + + }); // 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 === "Document_upload_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 + + + + + + } +FileDataImageupload_field: any[]; + selectedImageupload_field: any[]; + + + + 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.selectedimageupload_field = []; + this.mainService.uploadImageupload_fieldgetById(row.id,this.tableName).subscribe(uploaddata =>{ + console.log(uploaddata); + this.FileDataimageupload_field = uploaddata; + + }) + + this.selectedfileupload_field = []; + this.mainService.uploadfilegetByIdfileupload_field(row.id,this.tableName).subscribe(uploaddata =>{ + console.log(uploaddata); + this.FileDatafileupload_field = uploaddata; + + }) + + + 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); +for (let i = 0; i < this.selectedimageupload_field.length; i++){ + + this.mainService.uploadImageupload_field(data.id,this.tableName,this.selectedimageupload_field[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedfileupload_field.length; i++){ + + this.mainService.uploadfilefileupload_field(data.id,this.tableName,this.selectedfileupload_field[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + + }, (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);for (let i = 0; i < this.selectedimageupload_field.length; i++){ + + this.mainService.uploadImageupload_field(data.id,this.tableName,this.selectedimageupload_field[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + +for (let i = 0; i < this.selectedfileupload_field.length; i++){ + + this.mainService.uploadfilefileupload_field(data.id,this.tableName,this.selectedfileupload_field[i]).subscribe(uploaddata =>{ + console.log(uploaddata); + }) +} + + + }, (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;this.FileDataImageupload_field = []; +this.selectedImageupload_field =[]; + +this.FileDatafileupload_field = []; +this.selectedfileupload_field =[]; + + + } + submitted = false; +onSubmit() { + console.log(this.entryForm.value); + this.submitted = true; + if (this.entryForm.invalid) { + return; + }this.onCreate(); + +} +filePreviewimageupload_field: string | ArrayBuffer | null = null; +FileDataimageupload_field: {uploadedfile_name?:any, filePreview: string | ArrayBuffer | null }[] = []; // Initialize the array +selectedimageupload_field: File[]=[]; +public onFileChangedimageupload_field(event, index) { + const files = event.target.files; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + this.FileDataimageupload_field[index].uploadedfile_name = files[i].name; + this.selectedimageupload_field.push(files[i]); + if (file.type.startsWith('image/')) { + const reader = new FileReader(); + reader.onload = (e) => { + // Set the file preview source + const filePreview = e.target?.result as string; + this.FileDataimageupload_field[index] = { + ...this.FileDataimageupload_field[index], // Preserve existing properties + filePreview: filePreview // Update only the filePreview property + }; + }; + reader.readAsDataURL(file); + } + } +} + onAddLinesimageupload_field(){ + this.FileDataimageupload_field.push({ + uploadedfile_name: "", + filePreview: "", + // f3: "", + }); + } + deleteRowimageupload_field(index,id) { + this.FileDataimageupload_field.splice(index, 1); + + if(id){ + this.mainService.uploadImageupload_fielddelete(id).subscribe(data =>{ + console.log(data); + }) + } + } + +filePreviewfileupload_field: string | ArrayBuffer | null = null; +FileDatafileupload_field: {uploadedfile_name?:any, filePreview: string | ArrayBuffer | null }[] = []; // Initialize the array +selectedfileupload_field: File[]=[]; +public onFileChangedfileupload_field(event, index) { + const files = event.target.files; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + this.FileDatafileupload_field[index].uploadedfile_name = files[i].name; + this.selectedfileupload_field.push(files[i]); + if (file.type.startsWith('file/')) { + const reader = new FileReader(); + reader.onload = (e) => { + // Set the file preview source + const filePreview = e.target?.result as string; + this.FileDatafileupload_field[index] = { + ...this.FileDatafileupload_field[index], // Preserve existing properties + filePreview: filePreview // Update only the filePreview property + }; + }; + reader.readAsDataURL(file); + } + } +} + onAddLinesfileupload_field(){ + this.FileDatafileupload_field.push({ + uploadedfile_name: "", + filePreview: "", + // f3: "", + }); + } + deleteRowfileupload_field(index,id) { + this.FileDatafileupload_field.splice(index, 1); + + if(id){ + this.mainService.uploadfiledeletefileupload_field(id).subscribe(data =>{ + console.log(data); + }) + } + } + +// updateaction +} + + + diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.service.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.service.ts new file mode 100644 index 0000000..3de7782 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload.service.ts @@ -0,0 +1,63 @@ +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 Document_uploadservice{ + private baseURL = "Document_upload/Document_upload" ; 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); + } + uploadImageupload_field(ref:any, Document_upload:any, file:any): Observable{ + const formData = new FormData(); + formData.append('file', file); + return this.apiRequest.postFormData(`FileUpload/Uploadeddocs/${ref}/${Document_upload}`, formData); + } + + uploadImageupload_fieldgetById(ref:any, Document_upload:any,): Observable { + return this.apiRequest.get(`FileUpload/Uploadeddocs/${ref}/${Document_upload}`); + } + + + uploadImageupload_fielddelete(id: number): Observable { + return this.apiRequest.delete(`FileUpload/Uploadeddocs/${id}`); + } + + uploadfilefileupload_field(ref:any, Document_upload:any, file:any): Observable{ + const formData = new FormData(); + formData.append('file', file); + return this.apiRequest.postFormData(`FileUpload/Uploadeddocs/${ref}/${Document_upload}`, formData); + } + + uploadfilegetByIdfileupload_field(ref:any, Document_upload:any,): Observable { + return this.apiRequest.get(`FileUpload/Uploadeddocs/${ref}/${Document_upload}`); + } + + + uploadfiledeletefileupload_field(id: number): Observable { + return this.apiRequest.delete(`FileUpload/Uploadeddocs/${id}`); + } + +// updateaction +} \ No newline at end of file diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload_cardvariable.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload_cardvariable.ts new file mode 100644 index 0000000..dda9d85 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Document_upload/Document_upload_cardvariable.ts @@ -0,0 +1,4 @@ +export const Document_uploadcardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.html b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.html new file mode 100644 index 0000000..155cfaf --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.html @@ -0,0 +1,315 @@ + +
+
+
+

Visa Entry Type

+
+
+ + + +
+ + + + Loading ... + +
{{error}}
+
+ + Visa Entry Type + + + + + + Action + + + + + +{{user. visa_entry_type }} + + + + + + + +
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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.scss b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.scss new file mode 100644 index 0000000..c47b921 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.ts new file mode 100644 index 0000000..3c12296 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component.ts @@ -0,0 +1,220 @@ +import { Component, OnInit } from '@angular/core'; +import { ToastrService } from 'ngx-toastr'; +import { AlertService } from 'src/app/services/alert.service'; +import { Visa_entry_typeservice} from './Visa_entry_type.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 { Visa_entry_typecardvariable } from './Visa_entry_type_cardvariable'; +import { UserInfoService } from 'src/app/services/user-info.service'; +declare var JsBarcode: any; +@Component({ + selector: 'app-Visa_entry_type', + templateUrl: './Visa_entry_type.component.html', + styleUrls: ['./Visa_entry_type.component.scss'] +}) +export class Visa_entry_typeComponent implements OnInit { + cardButton = Visa_entry_typecardvariable.cardButton; + cardmodeldata = Visa_entry_typecardvariable.cardmodeldata; + public dashboardArray: DashboardContentModel2[]; + isCardview = Visa_entry_typecardvariable.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 = 'Visa_entry_type_formCode' +tableName = 'Visa_entry_type'; checkFormCode; selected: any[] = []; constructor( + private extensionService: ExtensionService, +private userInfoService:UserInfoService, + private mainService:Visa_entry_typeservice, + 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({ +visa_entry_type : [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 === "Visa_entry_type_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(); + +} + + +// updateaction +} + diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.service.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.service.ts new file mode 100644 index 0000000..9e86a27 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.service.ts @@ -0,0 +1,35 @@ +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 Visa_entry_typeservice{ + private baseURL = "Visa_entry_type/Visa_entry_type" ; 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/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type_cardvariable.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type_cardvariable.ts new file mode 100644 index 0000000..04b6b27 --- /dev/null +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type_cardvariable.ts @@ -0,0 +1,4 @@ +export const Visa_entry_typecardvariable = { + "cardButton": false, + "cardmodeldata": `` +} \ No newline at end of file diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts index 7377c69..a73a4cc 100644 --- a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main-routing.module.ts @@ -1,3 +1,6 @@ +import { Document_uploadComponent } from './BuilderComponents/basicp1/Document_upload/Document_upload.component'; +import { Visa_entry_typeComponent } from './BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component'; +import { Customer_informationComponent } from './BuilderComponents/basicp1/Customer_information/Customer_information.component'; import { SequencegenaratorComponent } from './fnd/sequencegenarator/sequencegenarator.component'; import { Component, NgModule } from '@angular/core'; @@ -256,6 +259,15 @@ const routes: Routes = [ // buildercomponents +{path:'Document_upload',component:Document_uploadComponent}, + + +{path:'Visa_entry_type',component:Visa_entry_typeComponent}, + + +{path:'Customer_information',component:Customer_informationComponent}, + + diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts index ecbab3d..659fd72 100644 --- a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/app/modules/main/main.module.ts @@ -1,3 +1,6 @@ +import { Document_uploadComponent } from './BuilderComponents/basicp1/Document_upload/Document_upload.component'; +import { Visa_entry_typeComponent } from './BuilderComponents/basicp1/Visa_entry_type/Visa_entry_type.component'; +import { Customer_informationComponent } from './BuilderComponents/basicp1/Customer_information/Customer_information.component'; import { CommonModule } from '@angular/common'; @@ -129,6 +132,15 @@ import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/S // buildercomponents +Document_uploadComponent, + + +Visa_entry_typeComponent, + + +Customer_informationComponent, + + diff --git a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json index ee15955..daa9bc3 100644 --- a/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json +++ b/teststeper02-front-f/authsec_angular/frontend/angular-clarity-master/src/assets/i18n/en.json @@ -226,10 +226,31 @@ "MENU_ACTION_LINK": "Menu Action Link", "STATUS": "Status", "SUB_MENU": "Sub Menu", - "Active": "Active", "Description": "Description", + "Document_upload": "Document_upload", + "Phone_Number": "Phone_Number", + "Gender": "Gender", "Fileupload_Field": "Fileupload_Field", - "Test22": "Test22", - "Test11": "Test11", - "Name": "Name" + "Name": "Name", + "Travel_end_date": "Travel_end_date", + "Birth_Place": "Birth_Place", + "Visa_Entry_Type": "Visa_Entry_Type", + "Travel_start_date": "Travel_start_date", + "Visa_entry_type": "Visa_entry_type", + "Supplier": "Supplier", + "Visa_cost": "Visa_cost", + "Agent": "Agent", + "Visa_Processing": "Visa_Processing", + "Date_of_Birth": "Date_of_Birth", + "Visa_Duration": "Visa_Duration", + "Customer_information": "Customer_information", + "Email_Field": "Email_Field", + "Nationality": "Nationality", + "passport_Number": "passport_Number", + "Active": "Active", + "Profession": "Profession", + "Passport_expiry_date": "Passport_expiry_date", + "Referrer": "Referrer", + "Passport_issue_date": "Passport_issue_date", + "Imageupload_Field": "Imageupload_Field" } \ No newline at end of file