fixed correction of registrations
This commit is contained in:
@@ -42,7 +42,7 @@ public class CamplistController extends CommonController {
|
||||
}
|
||||
|
||||
@PostMapping("/dashboard/update")
|
||||
public String updateBooking(Model model, @ModelAttribute("bean") BookingBean bean) {
|
||||
public String updateBooking(Model model, @ModelAttribute("b") BookingBean bean) {
|
||||
service.update(bean);
|
||||
return dashboard(model);
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ public class DashboardRepository {
|
||||
.set(T_PERSON.COMMENT, bean.getComment())
|
||||
.where(T_PERSON.PK.eq(bean.getPk()));
|
||||
// @formatter:on
|
||||
LOGGER.debug(sql.toString());
|
||||
LOGGER.trace(sql.toString());
|
||||
return sql.execute();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user