Edit core/templates/core/sale_form.html via Editor

This commit is contained in:
Flatlogic Bot 2025-12-24 01:50:42 +00:00
parent dd595804d4
commit 8bf7a2e341

View File

@ -48,7 +48,6 @@
<th>Produto</th> <th>Produto</th>
<th>Quantidade</th> <th>Quantidade</th>
<th>Lote</th> <th>Lote</th>
<th>Frete</th>
<th>Excluir</th> <th>Excluir</th>
</tr> </tr>
</thead> </thead>
@ -68,10 +67,6 @@
{{ form.lote }} {{ form.lote }}
{% for error in form.lote.errors %}<div class="alert alert-danger mt-1">{{ error }}</div>{% endfor %} {% for error in form.lote.errors %}<div class="alert alert-danger mt-1">{{ error }}</div>{% endfor %}
</td> </td>
<td>
{{ form.Frete }}
{% for error in form.Frete.errors %}<div class="alert alert-danger mt-1">{{ error }}</div>{% endfor %}
</td>
<td> <td>
{% if form.instance.pk %}{{ form.DELETE }}{% endif %} {% if form.instance.pk %}{{ form.DELETE }}{% endif %}
</td> </td>
@ -99,9 +94,6 @@
<td> <td>
{{ formset.empty_form.lote }} {{ formset.empty_form.lote }}
</td> </td>
<td>
{{ formset.empty_form.Frete }}
</td>
<td> <td>
{{ formset.empty_form.DELETE }} {{ formset.empty_form.DELETE }}
</td> </td>