mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-02 01:04:41 +02:00
104 lines
No EOL
5 KiB
Twig
104 lines
No EOL
5 KiB
Twig
{% block pricedetail_widget %}
|
|
{% form_theme form.currency 'Form/extendedBootstrap4_layout.html.twig' %}
|
|
{% import 'components/collection_type.macro.html.twig' as collection %}
|
|
|
|
<tr>
|
|
<td>{{ form_widget(form.min_discount_quantity, {'attr': {'class': 'form-control-sm'}}) }} {{ form_errors(form.min_discount_quantity) }}</td>
|
|
<td>
|
|
<div class="input-group input-group-sm">
|
|
{{ form_widget(form.price) }}
|
|
{{ form_widget(form.currency, {'attr': {'class': 'selectpicker form-control-sm', 'data-controller': 'elements--selectpicker'}}) }}
|
|
</div>
|
|
{{ form_errors(form.price) }}
|
|
{{ form_errors(form.currency) }}
|
|
</td>
|
|
<td>{{ form_widget(form.price_related_quantity, {'attr': {'class': 'form-control-sm'}}) }} {{ form_errors(form.price_related_quantity) }}</td>
|
|
<td>
|
|
<button type="button" class="btn btn-danger order_btn_delete btn-sm" title="{% trans %}orderdetail.delete{% endtrans %}"
|
|
{{ collection.delete_btn() }} {% if not is_granted('@parts_prices.delete') %}disabled{% endif %}>
|
|
<i class="fas fa-trash-alt fa-fw"></i>
|
|
</button>
|
|
{{ form_errors(form) }}
|
|
</td>
|
|
</tr>
|
|
{% endblock %}
|
|
|
|
{% block orderdetail_widget %}
|
|
{% import 'components/collection_type.macro.html.twig' as collection %}
|
|
<tr>
|
|
<td>
|
|
{{ form_row(form.supplier, {'attr': {'class': 'form-control-sm form-control'}}) }}
|
|
{{ form_row(form.supplierpartnr, {'attr': {'class': 'form-control-sm'}}) }}
|
|
{{ form_row(form.supplier_product_url, {'attr': {'class': 'form-control-sm'}}) }}
|
|
{{ form_widget(form.obsolete) }}
|
|
</td>
|
|
<td>
|
|
<div {{ collection.controller(form.pricedetails, 'pricedetails.edit.delete.confirm') }}>
|
|
<table class="table table-sm table-bordered" {{ collection.target() }}>
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans %}pricedetails.edit.min_qty{% endtrans %}</th>
|
|
<th>{% trans %}pricedetails.edit.price{% endtrans %}</th>
|
|
<th>{% trans %}pricedetails.edit.price_qty{% endtrans %}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for price in form.pricedetails %}
|
|
{{ form_widget(price) }}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
<button type="button" class="btn btn-success" {{ collection.create_pricedetail_btn() }} {% if not is_granted('@parts_prices.create') %}disabled{% endif %}>
|
|
<i class="fas fa-plus-square fa-fw"></i>
|
|
{% trans %}pricedetail.create{% endtrans %}
|
|
</button>
|
|
</div>
|
|
</td>
|
|
<td>
|
|
<button type="button" class="btn btn-danger order_btn_delete" {{ collection.delete_btn() }} title="{% trans %}orderdetail.delete{% endtrans %}"
|
|
{% if not is_granted('@parts_orderdetails.delete') %}disabled{% endif %}>
|
|
<i class="fas fa-trash-alt fa-fw"></i>
|
|
</button>
|
|
{{ form_errors(form) }}
|
|
</td>
|
|
</tr>
|
|
{% endblock %}
|
|
|
|
{% block parameter_widget %}
|
|
{% import 'components/collection_type.macro.html.twig' as collection %}
|
|
<tr>
|
|
<td>{{ form_widget(form.name) }}{{ form_errors(form.name) }}</td>
|
|
<td>{{ form_widget(form.symbol) }}{{ form_errors(form.symbol) }}</td>
|
|
<td>{{ form_widget(form.value_min) }}{{ form_errors(form.value_min) }}</td>
|
|
<td>{{ form_widget(form.value_typical) }}{{ form_errors(form.value_typical) }}</td>
|
|
<td>{{ form_widget(form.value_max) }}{{ form_errors(form.value_max) }}</td>
|
|
<td>{{ form_widget(form.unit) }}{{ form_errors(form.unit) }}</td>
|
|
<td>{{ form_widget(form.value_text) }}{{ form_errors(form.value_text) }}</td>
|
|
<td>{{ form_widget(form.group) }}{{ form_errors(form.group) }}</td>
|
|
<td>
|
|
<button type="button" class="btn btn-danger btn-sm order_btn_delete {% if form.parent.vars.allow_delete is defined and not form.parent.vars.allow_delete %}disabled{% endif %}" {{ collection.delete_btn() }} title="{% trans %}orderdetail.delete{% endtrans %}">
|
|
<i class="fas fa-trash-alt fa-fw"></i>
|
|
</button>
|
|
{{ form_errors(form) }}
|
|
</td>
|
|
</tr>
|
|
{% endblock %}
|
|
|
|
{% block part_lot_widget %}
|
|
{% import 'components/collection_type.macro.html.twig' as collection %}
|
|
<tr>
|
|
<td>
|
|
{{ form_widget(form) }}
|
|
</td>
|
|
<td>
|
|
<button type="button" class="btn btn-danger lot_btn_delete" {{ collection.delete_btn() }}
|
|
{% if not is_granted('lots.delete', form.parent.parent.vars.data) %}disabled{% endif %}>
|
|
<i class="fas fa-trash-alt fa-fw"></i>
|
|
{% trans %}part_lot.delete{% endtrans %}
|
|
</button>
|
|
{{ form_errors(form) }}
|
|
</td>
|
|
</tr>
|
|
{% endblock %} |