2024-02-05 15:16:43 +00:00
{% extends 'base.html.twig' %}
{% block title %} FoodOrder {% endblock %}
{% block body %}
<h1>FoodOrder</h1>
<table class="table">
<tbody>
<tr>
<th>StartedByName</th>
2024-02-12 21:03:17 +00:00
<td> {{ food_order .startedBy }} </td>
2024-02-05 15:16:43 +00:00
</tr>
<tr>
<th>Id</th>
<td> {{ food_order .id }} </td>
</tr>
<tr>
<th>StartedAt</th>
<td> {{ food_order .startedAt ? food_order .startedAt | date ( 'Y-m-d H:i:s' ) : '' }} </td>
</tr>
<tr>
<th>ClosedAt</th>
2024-02-12 21:03:17 +00:00
<td>
{% if food_order .closedAt is not null %}
{{ food_order .closedAt | date ( 'Y-m-d H:i:s' ) }}
{% else %}
<a href=" {{ path ( 'app_foodorder_close' , { id : food_order .id } ) }} ">close</a>
{% endif %}
</td>
2024-02-05 15:16:43 +00:00
</tr>
</tbody>
</table>
<table class="table">
<thead>
<tr>
<th>Name(s)</th>
<th>possible price</th>
<th>actions</th>
</tr>
</thead>
<tbody>
{% for lel in food_order .groupedOrderItems %}
<tr>
<td>
{{ lel .item .menuItem .aliases | map ( i = > i .name ) | join ( ' / ' ) }}
</td>
<td>
2024-02-12 21:03:17 +00:00
{{ lel .item .menuItem .price | cents_to_eur }}
2024-02-05 15:16:43 +00:00
</td>
<td>
{{ lel .amount }} |
<a href=" {{ path ( 'app_foodorder_add_item' , { foodOrder : food_order .id , menuItem : lel .item .menuItem .id } ) }} ">+1</a> |
<a href=" {{ path ( 'app_foodorder_remove_item' , { foodOrder : food_order .id , orderItem : lel .item .id } ) }} ">-1</a> |
</td>
</tr>
{% endfor %}
</tbody>
</tbody>
</table>
<table class="table">
<thead>
<tr>
<th>Name(s)</th>
<th>possible price</th>
<th>actions</th>
</tr>
</thead>
{% for item in menu_items %}
<tr>
<td>
2024-02-12 21:03:17 +00:00
{{ item .menuItemAliases | map ( i = > i .name ) | join ( ' / ' ) }}
2024-02-05 15:16:43 +00:00
</td>
<td>
2024-02-12 21:03:17 +00:00
{{ item .price | cents_to_eur }}
2024-02-05 15:16:43 +00:00
</td>
<td>
2024-02-12 21:03:17 +00:00
{% if food_order .closedAt is null %}
<a
href="#"
data-menuitem-id=" {{ item .id }} "
>add</a>
{% endif %}
2024-02-05 15:16:43 +00:00
</td>
</tr>
{% endfor %}
</table>
2024-02-12 21:03:17 +00:00
<script>
document.querySelectorAll('a[data-menuitem-id]').forEach((link) => {
link.addEventListener('click', (event) => {
// Prevent the default action of the link
event.preventDefault();
2024-02-05 15:16:43 +00:00
2024-02-12 21:03:17 +00:00
// Get the `data-menuitem-id` attribute of the clicked link
let menuItemId = link.getAttribute('data-menuitem-id');
2024-02-05 15:16:43 +00:00
2024-02-12 21:03:17 +00:00
// Select the corresponding dialog with the same `data-menuitem-id`. Assuming each dialog's id is the same as `data-menuitem-id`, please update the code to use proper id or class as needed.
let dialog = document.querySelector(`dialog[data-menuitem-id="$ { menuItemId}"]` );
2024-02-05 15:16:43 +00:00
2024-02-12 21:03:17 +00:00
// Open the dialog
dialog.showModal();
});
});
</script>
2024-02-05 15:16:43 +00:00
{% endblock %}