2025-01-17 11:03:00 +01:00
|
|
|
{% extends 'minifigure/base/select.sql' %}
|
|
|
|
|
2025-01-17 16:28:43 +01:00
|
|
|
{% block total_quantity %}
|
|
|
|
SUM(minifigures.quantity) AS total_quantity,
|
|
|
|
{% endblock %}
|
|
|
|
|
2025-01-17 11:03:00 +01:00
|
|
|
{% block where %}
|
|
|
|
WHERE minifigures.fig_num IN (
|
|
|
|
SELECT
|
|
|
|
inventory.set_num
|
|
|
|
FROM inventory
|
|
|
|
|
|
|
|
WHERE inventory.color_id IS NOT DISTINCT FROM :color_id
|
|
|
|
AND inventory.element_id IS NOT DISTINCT FROM :element_id
|
|
|
|
AND inventory.part_num IS NOT DISTINCT FROM :part_num
|
|
|
|
|
|
|
|
GROUP BY inventory.set_num
|
|
|
|
)
|
|
|
|
{% endblock %}
|
2025-01-17 16:28:43 +01:00
|
|
|
|
|
|
|
{% block group %}
|
|
|
|
GROUP BY
|
|
|
|
minifigures.fig_num
|
|
|
|
{% endblock %}
|