#17-Perfil-Personal-Administrativo #24
@ -14,6 +14,7 @@ public abstract class BaseEntity {
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.UUID)
|
||||
private UUID id;
|
||||
private String fileName;
|
||||
|
||||
@Version
|
||||
private int version;
|
||||
@ -48,4 +49,8 @@ public abstract class BaseEntity {
|
||||
}
|
||||
return super.equals(that);
|
||||
}
|
||||
|
||||
public String getFileName() {
|
||||
return fileName;
|
||||
}
|
||||
}
|
||||
|
@ -1,12 +1,8 @@
|
||||
package com.primefactorsolutions.model;
|
||||
|
||||
import jakarta.annotation.Nullable;
|
||||
import jakarta.persistence.Entity;
|
||||
import jakarta.persistence.ManyToOne;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.NoArgsConstructor;
|
||||
import jakarta.persistence.*;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
@Entity
|
||||
@Data
|
||||
@ -14,10 +10,10 @@ import lombok.NoArgsConstructor;
|
||||
@NoArgsConstructor
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class Document extends BaseEntity {
|
||||
@Nullable
|
||||
private String description;
|
||||
private String location;
|
||||
private String fileName;
|
||||
@Enumerated(EnumType.STRING)
|
||||
private DocumentType documentType;
|
||||
@ManyToOne
|
||||
private Employee employee;
|
||||
@Lob
|
||||
@Column(columnDefinition = "BLOB")
|
||||
private byte[] fileData;
|
||||
}
|
||||
|
@ -3,5 +3,11 @@ package com.primefactorsolutions.model;
|
||||
public enum DocumentType {
|
||||
ID_CARD,
|
||||
PAY_STUB,
|
||||
PAY_SLIPS,
|
||||
EMPLOYMENT_CONTRACT,
|
||||
WORK_CERTIFICATES,
|
||||
NDA,
|
||||
MEMORANDUMS,
|
||||
CONTRACT_APPROVAL_MTEPS,
|
||||
OTHER
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
package com.primefactorsolutions.repositories;
|
||||
|
||||
import com.primefactorsolutions.model.Document;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
public interface DocumentRepository extends JpaRepository<Document, UUID> {
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
package com.primefactorsolutions.service;
|
||||
|
||||
//import com.primefactorsolutions.model.Candidate;
|
||||
import com.primefactorsolutions.model.Document;
|
||||
import com.primefactorsolutions.repositories.DocumentRepository;
|
||||
//import lombok.AllArgsConstructor;
|
||||
//import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
//import java.io.IOException;
|
||||
//import java.sql.Connection;
|
||||
//import java.sql.PreparedStatement;
|
||||
//import java.sql.ResultSet;
|
||||
//import java.sql.SQLException;
|
||||
//import javax.sql.DataSource;
|
||||
//import javax.sql.DataSource;
|
||||
import org.springframework.transaction.annotation.Transactional;
|
||||
//import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
//import java.io.InputStream;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import java.util.Optional;
|
||||
|
||||
@Service
|
||||
public class DocumentService {
|
||||
private final DocumentRepository documentRepository;
|
||||
|
||||
public DocumentService(DocumentRepository documentRepository) {
|
||||
this.documentRepository = documentRepository;
|
||||
}
|
||||
|
||||
public void saveDocument(Document newDocument) {
|
||||
documentRepository.save(newDocument);
|
||||
}
|
||||
|
||||
public List<Document> getAllDocuments() {
|
||||
return documentRepository.findAll();
|
||||
}
|
||||
|
||||
public Optional<Document> getDocumentById(UUID id) {
|
||||
return documentRepository.findById(id);
|
||||
}
|
||||
}
|
@ -1,16 +1,79 @@
|
||||
package com.primefactorsolutions.views;
|
||||
|
||||
import com.primefactorsolutions.model.Document;
|
||||
import com.primefactorsolutions.service.DocumentService;
|
||||
import com.vaadin.flow.component.button.Button;
|
||||
import com.vaadin.flow.component.html.Anchor;
|
||||
import com.vaadin.flow.component.html.Div;
|
||||
import com.vaadin.flow.component.html.H2;
|
||||
import com.vaadin.flow.component.html.Main;
|
||||
import com.vaadin.flow.component.notification.Notification;
|
||||
//import com.vaadin.flow.component.orderedlayout.FlexComponent;
|
||||
//import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
|
||||
import com.vaadin.flow.component.upload.Upload;
|
||||
import com.vaadin.flow.component.upload.receivers.MemoryBuffer;
|
||||
import com.vaadin.flow.router.PageTitle;
|
||||
import com.vaadin.flow.router.Route;
|
||||
import com.vaadin.flow.server.StreamResource;
|
||||
import com.vaadin.flow.spring.annotation.SpringComponent;
|
||||
import jakarta.annotation.security.PermitAll;
|
||||
import org.springframework.context.annotation.Scope;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
import java.io.IOException;
|
||||
//import java.io.InputStream;
|
||||
import java.util.UUID;
|
||||
|
||||
@SpringComponent
|
||||
@PermitAll
|
||||
@Scope("prototype")
|
||||
@PageTitle("GovernmentDocumentsView")
|
||||
@Route(value = "/government-documents/me", layout = MainLayout.class)
|
||||
public class GovernmentDocumentsView extends Main {
|
||||
|
||||
private final DocumentService documentService;
|
||||
private final Div documentListDiv = new Div();
|
||||
|
||||
public GovernmentDocumentsView(DocumentService documentService) {
|
||||
this.documentService = documentService;
|
||||
initializeLayout();
|
||||
}
|
||||
|
||||
private void initializeLayout() {
|
||||
setSizeFull();
|
||||
add(new H2("Document Management"));
|
||||
|
||||
// Upload Component
|
||||
MemoryBuffer buffer = new MemoryBuffer();
|
||||
Upload upload = new Upload(buffer);
|
||||
upload.addSucceededListener(event -> {
|
||||
try {
|
||||
String fileName = event.getFileName();
|
||||
byte[] content = buffer.getInputStream().readAllBytes();
|
||||
// documentService.saveDocument(fileName, content);
|
||||
Notification.show("File uploaded successfully");
|
||||
updateDocumentList();
|
||||
} catch (IOException e) {
|
||||
Notification.show("Error uploading file: " + e.getMessage());
|
||||
}
|
||||
});
|
||||
|
||||
// Add Upload component
|
||||
add(upload);
|
||||
|
||||
// Display documents
|
||||
updateDocumentList();
|
||||
}
|
||||
|
||||
private void updateDocumentList() {
|
||||
documentListDiv.removeAll();
|
||||
for (Document document : documentService.getAllDocuments()) {
|
||||
// Create a view link for each document
|
||||
// StreamResource streamResource = new StreamResource(document.getName(), () -> new ByteArrayInputStream(document.getContent()));
|
||||
// Anchor viewLink = new Anchor(streamResource, "View " + document.getName());
|
||||
// viewLink.getElement().setAttribute("target", "_blank");
|
||||
// documentListDiv.add(viewLink);
|
||||
}
|
||||
add(documentListDiv);
|
||||
}
|
||||
}
|
||||
|
@ -1,47 +1,132 @@
|
||||
package com.primefactorsolutions.views;
|
||||
|
||||
import com.primefactorsolutions.model.Document;
|
||||
import com.primefactorsolutions.model.DocumentType;
|
||||
import com.primefactorsolutions.service.DocumentService;
|
||||
import com.vaadin.flow.component.button.Button;
|
||||
import com.vaadin.flow.component.html.Div;
|
||||
import com.vaadin.flow.component.html.H2;
|
||||
import com.vaadin.flow.component.html.Main;
|
||||
import com.vaadin.flow.component.notification.Notification;
|
||||
import com.vaadin.flow.component.orderedlayout.FlexComponent;
|
||||
import com.vaadin.flow.component.orderedlayout.HorizontalLayout;
|
||||
import com.vaadin.flow.component.upload.Upload;
|
||||
import com.vaadin.flow.component.upload.receivers.MemoryBuffer;
|
||||
import com.vaadin.flow.router.PageTitle;
|
||||
import com.vaadin.flow.router.Route;
|
||||
import com.vaadin.flow.spring.annotation.SpringComponent;
|
||||
import jakarta.annotation.security.PermitAll;
|
||||
import org.springframework.context.annotation.Scope;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
|
||||
@SpringComponent
|
||||
@PermitAll
|
||||
@Scope("prototype")
|
||||
@PageTitle("WorkDocuments")
|
||||
@Route(value = "/work-documents/me", layout = MainLayout.class)
|
||||
public class WorkDocumentsView extends Main {
|
||||
|
||||
public WorkDocumentsView() {
|
||||
HorizontalLayout row1 = new HorizontalLayout();
|
||||
row1.add(createSection("Pay Slips"), createSection("Employment Contract"));
|
||||
HorizontalLayout row2 = new HorizontalLayout();
|
||||
row2.add(createSection("Work Certificates"), createSection("NDA"));
|
||||
HorizontalLayout row3 = new HorizontalLayout();
|
||||
row3.add(createSection("Memorandums"), createSection("Contract Approval MTEPS"));
|
||||
private final DocumentService documentService;
|
||||
private final MemoryBuffer buffer = new MemoryBuffer();
|
||||
private boolean fileUploaded = false;
|
||||
private String lastUploadedFileName = null;
|
||||
public WorkDocumentsView(DocumentService documentService) {
|
||||
this.documentService = documentService;
|
||||
initializeLayout();
|
||||
}
|
||||
private void initializeLayout() {
|
||||
HorizontalLayout row1 = createRow("PaySlips", "Employment Contract");
|
||||
HorizontalLayout row2 = createRow("Work Certificates", "NDA");
|
||||
HorizontalLayout row3 = createRow("Memorandums", "Contract Approval MTEPS");
|
||||
add(row1, row2, row3);
|
||||
}
|
||||
|
||||
private HorizontalLayout createRow(String... sectionTitles) {
|
||||
HorizontalLayout row = new HorizontalLayout();
|
||||
for (String title : sectionTitles) {
|
||||
row.add(createSection(title));
|
||||
}
|
||||
return row;
|
||||
}
|
||||
private Div createSection(String sectionTitle) {
|
||||
Div section = new Div();
|
||||
section.add(new H2(sectionTitle));
|
||||
HorizontalLayout row1 = new HorizontalLayout();
|
||||
row1.setJustifyContentMode(FlexComponent.JustifyContentMode.CENTER);
|
||||
row1.add(new Button("View"), new Button("Upload"), new Button("Save"));
|
||||
HorizontalLayout row2 = new HorizontalLayout();
|
||||
row2.setJustifyContentMode(FlexComponent.JustifyContentMode.CENTER);
|
||||
row2.add(new Button("Edit"), new Button("Print"), new Button("Delete"));
|
||||
HorizontalLayout row3 = new HorizontalLayout();
|
||||
row3.setJustifyContentMode(FlexComponent.JustifyContentMode.CENTER);
|
||||
row3.add(new Button("Download"));
|
||||
section.add(row1, row2, row3);
|
||||
Upload upload = createUploadComponent();
|
||||
boolean hasDocument = documentService.getAllDocuments()
|
||||
.stream()
|
||||
.anyMatch(doc -> doc.getFileName().equalsIgnoreCase(sectionTitle + ".pdf"));
|
||||
Button viewButton = new Button("View");
|
||||
viewButton.setEnabled(hasDocument);
|
||||
Button saveButton = createSaveButton(sectionTitle, viewButton);
|
||||
HorizontalLayout uploadLayout = createLayoutWithComponent(upload);
|
||||
HorizontalLayout actionButtonsLayout = createLayoutWithComponents(
|
||||
viewButton, new Button("Edit"), saveButton
|
||||
);
|
||||
HorizontalLayout additionalButtonsLayout = createLayoutWithComponents(
|
||||
new Button("Print"), new Button("Download"), new Button("Delete")
|
||||
);
|
||||
section.add(uploadLayout, actionButtonsLayout, additionalButtonsLayout);
|
||||
return section;
|
||||
}
|
||||
private Upload createUploadComponent() {
|
||||
Upload upload = new Upload(buffer);
|
||||
upload.setMaxFiles(1);
|
||||
upload.setAcceptedFileTypes(".pdf", ".doc", ".docx");
|
||||
upload.addSucceededListener(event -> {
|
||||
fileUploaded = true;
|
||||
lastUploadedFileName = event.getFileName();
|
||||
Notification.show("File uploaded successfully");
|
||||
});
|
||||
return upload;
|
||||
}
|
||||
private Button createSaveButton(String sectionTitle, Button viewButton) {
|
||||
Button saveButton = new Button("Save");
|
||||
saveButton.addClickListener(clickEvent -> saveFile(sectionTitle, ));
|
||||
return saveButton;
|
||||
}
|
||||
private HorizontalLayout createLayoutWithComponent(com.vaadin.flow.component.Component component) {
|
||||
HorizontalLayout layout = new HorizontalLayout();
|
||||
layout.setJustifyContentMode(FlexComponent.JustifyContentMode.CENTER);
|
||||
layout.add(component);
|
||||
return layout;
|
||||
}
|
||||
private HorizontalLayout createLayoutWithComponents(com.vaadin.flow.component.Component... components) {
|
||||
HorizontalLayout layout = new HorizontalLayout();
|
||||
layout.setJustifyContentMode(FlexComponent.JustifyContentMode.CENTER);
|
||||
layout.add(components);
|
||||
return layout;
|
||||
}
|
||||
private void saveFile(String sectionTitle, Button viewButton) {
|
||||
if (fileUploaded) {
|
||||
try {
|
||||
String fileName = lastUploadedFileName;
|
||||
byte[] content = buffer.getInputStream().readAllBytes();
|
||||
if (content != null) {
|
||||
DocumentType documentType = determineDocumentType(sectionTitle);
|
||||
Document document = new Document(fileName, documentType, content);
|
||||
documentService.saveDocument(document);
|
||||
fileUploaded = false;
|
||||
Notification.show("File saved successfully.");
|
||||
viewButton.setEnabled(true);
|
||||
} else {
|
||||
Notification.show("No file content found.");
|
||||
}
|
||||
} catch (IOException e) {
|
||||
Notification.show("Error reading file content: " + e.getMessage());
|
||||
}
|
||||
} else {
|
||||
Notification.show("Please upload a file first.");
|
||||
}
|
||||
}
|
||||
private DocumentType determineDocumentType(String sectionTitle) {
|
||||
return switch (sectionTitle) {
|
||||
case "PaySlips" -> DocumentType.PAY_SLIPS;
|
||||
case "Employment Contract" -> DocumentType.EMPLOYMENT_CONTRACT;
|
||||
case "Work Certificates" -> DocumentType.WORK_CERTIFICATES;
|
||||
case "NDA" -> DocumentType.NDA;
|
||||
case "Memorandums" -> DocumentType.MEMORANDUMS;
|
||||
case "Contract Approval MTEPS" -> DocumentType.CONTRACT_APPROVAL_MTEPS;
|
||||
default -> DocumentType.OTHER;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user