157 lines
5.9 KiB
Twig
157 lines
5.9 KiB
Twig
|
{% extends 'base.html.twig' %}
|
||
|
{% block body %}
|
||
|
<div id="wrapper">
|
||
|
<div id="container" class="container">
|
||
|
|
||
|
<div class="row">
|
||
|
<h1>Historique</h1>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12">
|
||
|
<div class="sells">
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12 col-sm-4">
|
||
|
<h2>
|
||
|
<i class="fa fa-users"></i>
|
||
|
<span class="chiffre key-figure">
|
||
|
{{ allSellings }}
|
||
|
</span>
|
||
|
Clients
|
||
|
</h2>
|
||
|
</div>
|
||
|
<div class="col-xs-12 col-sm-4">
|
||
|
<h2>
|
||
|
<i class="fa fa-euro"></i>
|
||
|
<span class="chiffre key-figure">
|
||
|
{{ chiffreAffaires }}
|
||
|
</span>
|
||
|
Chiffre d'affaires
|
||
|
|
||
|
</h2>
|
||
|
</div>
|
||
|
<div class="col-xs-12 col-sm-4">
|
||
|
<h2>
|
||
|
<i class="fa fa-shopping-cart"></i>
|
||
|
<span class="chiffre key-figure">
|
||
|
{% if allSellings %}
|
||
|
{{ (chiffreAffaires / (allSellings))|round }}
|
||
|
{% else %}
|
||
|
?
|
||
|
{% endif %}
|
||
|
|
||
|
</span>
|
||
|
€ panier moyen
|
||
|
|
||
|
</h2>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="col-xs-12 ">
|
||
|
<h2>Exporter toutes vos données</h2>
|
||
|
<a class="btn btn-success" href="{{ path('export_all') }}">
|
||
|
<i class="fa fa-file-excel-o fa-3x"></i>
|
||
|
en format csv
|
||
|
</a
|
||
|
><a class="btn btn-success" href="{{ path('export_all_json') }}">
|
||
|
<i class="fa fa-file-code-o fa-3x"></i>
|
||
|
en JSON
|
||
|
</a>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
<hr>
|
||
|
<h2 class="text-center">Statistiques de ventes </h2>
|
||
|
<div id="chartContainer" style="display: inline-block; height: 300px; width: 49%;"></div>
|
||
|
<div id="chartContainerChiffreAffaire" style="display: inline-block; height: 300px; width: 49%;"></div>
|
||
|
<h2> {{ statisticsFestivals |length }} Festival
|
||
|
{% if statisticsFestivals |length >1 %}
|
||
|
s
|
||
|
{% endif %}</h2>
|
||
|
<div id="chartContainerstatisticsFestivals"
|
||
|
style="display: inline-block; height: 300px; width: 100%;"></div>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
<hr>
|
||
|
|
||
|
<div id="last-sellings">
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12">
|
||
|
|
||
|
|
||
|
<div class="table">
|
||
|
<div class="row-fluid">
|
||
|
<div class="col-xs-12">
|
||
|
<h2>
|
||
|
{{ recentSells |length }} Dernières ventes
|
||
|
</h2>
|
||
|
</div>
|
||
|
</div>
|
||
|
<table class="table table-striped">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td>n°</td>
|
||
|
<td>date</td>
|
||
|
<td>commentaire</td>
|
||
|
<td>produits</td>
|
||
|
<td>montant</td>
|
||
|
<td>Actions</td>
|
||
|
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for vente in recentSells %}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<tr>
|
||
|
<td> {{ vente.id }}</td>
|
||
|
<td> {{ vente.date |date('Y-m-d H:i:s') }}</td>
|
||
|
<td>{{ vente.comment }}</td>
|
||
|
<td class="text-right">
|
||
|
{% if vente.productsSold |length >1 %}
|
||
|
<strong>
|
||
|
{{ vente.productsSold |length }}
|
||
|
</strong> produits
|
||
|
|
||
|
{% else %}
|
||
|
{% if vente.productsSold and vente.productsSold.0 is defined %}
|
||
|
|
||
|
{{ vente.productsSold.0.name }}
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
|
||
|
</td>
|
||
|
<td class="text-right">
|
||
|
{{ vente.amount }}
|
||
|
</td>
|
||
|
<td>
|
||
|
<a href="{{ path('sellrecord_delete',{id: vente.id }) }}"
|
||
|
class="btn btn-warning pull-right">
|
||
|
<i class="fa fa-trash"></i>
|
||
|
</a>
|
||
|
</td>
|
||
|
</tr> {% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
{% include ':logged:history-script.html.twig' %}
|
||
|
|
||
|
|
||
|
</div>
|
||
|
{% endblock %}
|