test #53

Merged
klaus merged 10 commits from test into main 2023-10-24 10:42:11 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 04c682fc9b - Show all commits

View File

@ -52,7 +52,7 @@ data class Order(
override fun prePersist() {
super.prePersist()
if (type == OrderType.RENTAL) {
endDate = startDate.plusDays(7)
endDate = startDate.plusDays(15)
}
}
}