fixed correction of registrations
This commit is contained in:
parent
a373f5e758
commit
7ab500e510
@ -8,7 +8,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = 'de.jottyfan.camporganizer'
|
group = 'de.jottyfan.camporganizer'
|
||||||
version = '0.7.9'
|
version = '0.8.0'
|
||||||
|
|
||||||
description = """CampOrganizer2"""
|
description = """CampOrganizer2"""
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ public class CamplistController extends CommonController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/dashboard/update")
|
@PostMapping("/dashboard/update")
|
||||||
public String updateBooking(Model model, @ModelAttribute("bean") BookingBean bean) {
|
public String updateBooking(Model model, @ModelAttribute("b") BookingBean bean) {
|
||||||
service.update(bean);
|
service.update(bean);
|
||||||
return dashboard(model);
|
return dashboard(model);
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,7 @@ public class DashboardRepository {
|
|||||||
.set(T_PERSON.COMMENT, bean.getComment())
|
.set(T_PERSON.COMMENT, bean.getComment())
|
||||||
.where(T_PERSON.PK.eq(bean.getPk()));
|
.where(T_PERSON.PK.eq(bean.getPk()));
|
||||||
// @formatter:on
|
// @formatter:on
|
||||||
LOGGER.debug(sql.toString());
|
LOGGER.trace(sql.toString());
|
||||||
return sql.execute();
|
return sql.execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@
|
|||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-header">Teilnehmerdaten</div>
|
<div class="card-header">Teilnehmerdaten</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<form th:action="@{/dashboard/update/}" th:object="${b}" method="post">
|
<form th:action="@{/dashboard/update}" th:object="${b}" method="post">
|
||||||
<input type="hidden" th:value="*{pk}" name="pk" />
|
<input type="hidden" th:value="*{pk}" name="pk" />
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row mb-2">
|
<div class="row mb-2">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user