Add calender to OrderController

calender displays `order.id`s per day
This commit is contained in:
Theo Reichert 2023-11-13 16:49:35 +01:00 committed by Simon Bruder
parent 397027a650
commit 1777e268db
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC
3 changed files with 43 additions and 3 deletions

View file

@ -58,5 +58,19 @@ public class CustomOrderDataInitializer implements DataInitializer {
true,
4000.0
));
products = new HashMap<>();
products.put("Koch", Quantity.of(3));
products.put("Wasser (still)", Quantity.of(101));
products.put("Käseplatte", Quantity.of(1000));
products.put("Wiener Würstchen", Quantity.of(150));
orderRepository.addOrder(new CustomOrder(
CustomOrder.OrderType.EVENT_CATERING,
LocalDateTime.of(2023, 11, 20, 11, 0),
LocalDateTime.of(2023, 11, 21, 8, 0),
products,
true,
1001.0
));
}
}

View file

@ -1,5 +1,6 @@
package catering.order;
import org.springframework.data.util.Streamable;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;
@ -7,6 +8,7 @@ import org.springframework.web.bind.annotation.*;
import java.time.LocalDateTime;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.Optional;
@ -106,14 +108,36 @@ public class OrderController {
for (LocalDate date : datesOfTheWeek) {
ArrayList<String> x = new ArrayList<String>(2);
x.add(Integer.toString(date.getDayOfMonth()));
x.add("#OrdersToday");
week_to_add_to_month.add(x);
}
//datesOfTheWeek.clear();
weeksOfMonth.add(week_to_add_to_month);
}
// calender header with names of week
LocalDate endDate = startDate.plusDays(27);
// get orders_in_next_month (in future sorted by endDate)
Iterable<CustomOrder> orders_in_next_month = this.orderRepository.getOrders().stream().filter(e ->
!e.getFinish().toLocalDate().isBefore(startDate) && // end is not before today
!e.getStart().toLocalDate().isAfter(endDate)).toList();
for (CustomOrder order : orders_in_next_month) {
int start_index_inclusive = Math.max(order.getStart().toLocalDate().compareTo(startDate),0);
int end_index_exclusive = Math.min(order.getFinish().toLocalDate().compareTo(startDate), 27) + 1;
for (int i = start_index_inclusive; i < end_index_exclusive; i++) {
weeksOfMonth.get((int) i/7).get(Math.floorMod(i,7)).add(Integer.toString(order.getId()));
}
}
// for (List<List<String>> orders_in_next_week : orders_in_next_month) {
// orders_in_next_weeks.stream().filter(e ->
// e.start.toLocalDate().isEqual(calender_day) || // start day
// e.end.toLocalDate().isEqual(calender_day) || // end day
// e.start.toLocalDate().isBefore(calender_day) && end.toLocalDate().isAfter(calender_day) // day in between start and end
// ).toList().count();
// }
// calendar header with names of week
LocalDate endOfWeekDate = startDate.plusDays(6);
ArrayList<String> dayNames = new ArrayList<String>(7);
for (LocalDate date = startDate; !date.isAfter(endOfWeekDate); date = date.plusDays(1)) {

View file

@ -71,8 +71,10 @@
<div class="content">
<a
class="description"
th:text="${day.get(1)}"
>
<span th:text="${#lists.size(day)-1}"></span><br>
<span th:each="item, stat : ${day}" th:if="${stat.index} >= 1" th:text="${item}"></span>
<!-- <span th:text="${99+2}"></span>-->
</a>
</div>
</td>