{% from "main/components/inputs.html" import checkbox, select %} {% set indent_1 = "ms-4" %} {% set indent_2 = "ms-5" %}
{{ checkbox(title="Product warehouse", name="product_warehouse", state=state.product_warehouse) }} {{ select( title="Delivery option", name="delivery_option", options={ "direct": "Direct", "vehicle": "Vehicle", }, state=state.delivery_option, cls=indent_1 ) }} {{ checkbox(title="Allow negative stock", name="allow_negative_stock", state=state.allow_negative_stock, cls=indent_1) }} {{ checkbox(title="Route reserve stock", name="route_reserve_stock", state=state.route_reserve_stock, cls=indent_1) }} {{ checkbox(title="Refill log", name="refill_log", state=state.refill_log, cls=indent_1) }} {{ checkbox(title="Product order", name="product_order", state=state.product_order, cls=indent_1) }} {{ checkbox(title="Spare parts warehouse", name="spare_parts_warehouse", state=state.spare_parts_warehouse) }} {{ checkbox(title="Purchase module", name="purchase_module", state=state.purchase_module) }}