{#
Start Buy Modal
Allows selecting a buyer/employee to start processing a buy.
This moves the queue item from 'sorted' or 'queued' to 'processing' state.
Variables:
- buyers: Array of buyer objects
- item: Queue item with firstName, lastName, buyID
- typeNum: Store type number
#}
{% extends 'queue/modals/_base.html' %}
{% block modal_title %}
Start Buy - {{ item.firstName }} {{ item.lastName }}
{% endblock %}
{% block modal_body %}
{% include 'queue/modals/_buyer-grid.html' with {'action': 'startBuy'} %}
{% endblock %}
{% block modal_footer %}
{% endblock %}
{% block modal_scripts %}
{% endblock %}