Fix some
This commit is contained in:
parent
10b6835a31
commit
a630df317c
@ -2,7 +2,11 @@ package ru.ulstu.admin.controller;
|
|||||||
|
|
||||||
import org.springframework.stereotype.Controller;
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.ui.Model;
|
import org.springframework.ui.Model;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.ModelAttribute;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
import ru.ulstu.admin.model.ReportForm;
|
import ru.ulstu.admin.model.ReportForm;
|
||||||
import ru.ulstu.admin.service.AdminReportService;
|
import ru.ulstu.admin.service.AdminReportService;
|
||||||
@ -19,10 +23,12 @@ public class AdminReportController {
|
|||||||
this.adminReportService = adminReportService;
|
this.adminReportService = adminReportService;
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/report/{aspirantId}")
|
@GetMapping("/report")
|
||||||
public String getReportForm(@PathVariable(value = "aspirantId") Integer aspirantId, Model model) {
|
public String getReportForm(Model model) {
|
||||||
ReportForm reportForm = new ReportForm();
|
ReportForm reportForm = new ReportForm();
|
||||||
reportForm.setAspirantId(aspirantId); // Устанавливаем ID аспиранта
|
|
||||||
|
//todo get current user aspirant id
|
||||||
|
//reportForm.setAspirantId(aspirantId); // Устанавливаем ID аспиранта
|
||||||
model.addAttribute("report", reportForm);
|
model.addAttribute("report", reportForm);
|
||||||
return "admin/aspirantReport"; // Возвращает шаблон report.html
|
return "admin/aspirantReport"; // Возвращает шаблон report.html
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user