79 lines
2.2 KiB
Twig
Executable File
79 lines
2.2 KiB
Twig
Executable File
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
{{ form_start(form) }}
|
|
<h1 class="page-header">
|
|
{% if fgprint is defined and fgprint %}
|
|
COMMANDE
|
|
{% elseif mode=="update" %}
|
|
Modification COMMANDE
|
|
{% elseif mode=="submit" %}
|
|
Création COMMANDE
|
|
{% endif %}
|
|
</h1>
|
|
|
|
{{ form_widget(form.submit) }}
|
|
|
|
<a class="btn btn-secondary" href={{ path('app_offer') }}>Annuler</a>
|
|
|
|
{% if mode=="update" %}
|
|
|
|
<a href="{{ path('app_offer_delete',{'id':offer.id}) }}"
|
|
class="btn btn-danger float-right"
|
|
data-method="delete"
|
|
data-confirm="Êtes-vous sûr de vouloir supprimer cet entregistrement ?">
|
|
Supprimer
|
|
</a>
|
|
{% endif %}
|
|
|
|
<br><br>
|
|
|
|
{% if app.session.flashbag.has('error') %}
|
|
<div class='alert alert-danger' style='margin: 5px 0px'>
|
|
<strong>Erreur</strong><br>
|
|
{% for flashMessage in app.session.flashbag.get('error') %}
|
|
{{ flashMessage }}<br>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if app.session.flashbag.has('notice') %}
|
|
<div class='alert alert-info' style='margin: 5px 0px'>
|
|
<strong>Information</strong><br>
|
|
{% for flashMessage in app.session.flashbag.get('notice') %}
|
|
{{ flashMessage }}<br>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<i class="fa fa-pencil-alt fa-fw"></i> Informations
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
{{ form_row(form.name) }}
|
|
{{ form_row(form.ref) }}
|
|
{{ form_row(form.service) }}
|
|
{{ form_row(form.project) }}
|
|
|
|
{{ form_row(form.quantity) }}
|
|
{{ form_row(form.pu) }}
|
|
{{ form_row(form.validate) }}
|
|
{{ form_row(form.cost) }}
|
|
{{ form_row(form.active) }}
|
|
</div>
|
|
</div>
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|
|
|
|
{% block localjavascript %}
|
|
$(document).ready(function() {
|
|
$("#offer_name").focus();
|
|
});
|
|
|
|
function myprint() {
|
|
href=document.location.href;
|
|
document.location.href=href+"?fgprint=true";
|
|
}
|
|
{% endblock %}
|