Correcciones
This commit is contained in:
parent
f2a1d53e4a
commit
13c81de48c
@ -10,6 +10,7 @@ public abstract class BaseEntity {
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.UUID)
|
||||
private UUID id;
|
||||
@Enumerated(EnumType.STRING)
|
||||
private Employee.Status status;
|
||||
private String fileName;
|
||||
@Lob
|
||||
@ -64,11 +65,11 @@ public abstract class BaseEntity {
|
||||
return documentType;
|
||||
}
|
||||
|
||||
public void setStatus(Employee.Status status) {
|
||||
public void setStatusEmployee(Employee.Status status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Employee.Status getStatus() {
|
||||
public Employee.Status getStatusEmployee() {
|
||||
return status;
|
||||
}
|
||||
}
|
||||
|
@ -199,7 +199,7 @@ public class EmployeeView extends BeanValidationForm<Employee> implements HasUrl
|
||||
private void saveEmployee() {
|
||||
if (validateForm()) {
|
||||
Employee employee = getEntity();
|
||||
employee.setStatus(status.getValue());
|
||||
employee.setStatusEmployee(status.getValue());
|
||||
employeeService.createOrUpdate(employee);
|
||||
Notification.show(NOTIFICATION_SAVE_SUCCESS);
|
||||
getUI().ifPresent(ui -> ui.navigate(EmployeesListView.class));
|
||||
@ -233,7 +233,7 @@ public class EmployeeView extends BeanValidationForm<Employee> implements HasUrl
|
||||
if ("edit".equals(action) && !s.isEmpty()) {
|
||||
saveButton.setVisible(true);
|
||||
editButton.setVisible(false);
|
||||
status.setValue(employee.getStatus());
|
||||
status.setValue(employee.getStatusEmployee());
|
||||
setFieldsEditable();
|
||||
} else if ("view".equals(action) && !s.isEmpty()) {
|
||||
setFieldsReadOnly();
|
||||
|
Loading…
Reference in New Issue
Block a user