Added a modal to stocktake / set part lots amount from info page

This commit is contained in:
Jan Böhmer 2026-02-10 23:17:10 +01:00
parent 2f9601364e
commit d8fdaa9529
8 changed files with 225 additions and 2 deletions

View file

@ -2,6 +2,7 @@
{% import "label_system/dropdown_macro.html.twig" as dropdown %}
{% include "parts/info/_withdraw_modal.html.twig" %}
{% include "parts/info/_stocktake_modal.html.twig" %}
<div class="table-responsive">
<table class="table table-striped table-hover">
@ -93,12 +94,15 @@
>
<i class="fa-solid fa-right-left fa-fw"></i>
</button>
<button type="button" class="btn-primary btn" data-bs-toggle="modal" data-bs-target="#stocktake-modal" title="{% trans %}part.info.stocktake_modal.title{% endtrans %}"
{% if not is_granted('stocktake', lot) %}disabled{% endif %}
data-lot-id="{{ lot.id }}" data-lot-amount="{{ lot.amount }}"><i class="fas fa-clipboard-check fa-fw"></i></button>
</div>
</td>
<td>
{{ dropdown.profile_dropdown('part_lot', lot.id, false) }}
</td>
<td>
<td> {# Action for order information #}
<div class="btn-group">
<button type="button" class="btn btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
@ -114,7 +118,6 @@
</div>
</div>
</td>
</td>
</tr>
{% endfor %}
</tbody>