{% extends "base.html" %} {% block title %}Gestion des Ordres - Bolsa{% endblock %} {% block header_title %}Gestion des ordres{% endblock %} {% block content %}
{% set messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %}

Ordres - {{ selected_societe }}

Suivi et historique des ordres de bourse par société.

P.V. ( ) : {{ "{:,.2f}".format(total_plus_value_globale or 0) }} €
Retour au menu
{% if groupes_ordres %} {% for groupe in groupes_ordres %} {% for p in groupe.pieds %} {% endfor %} {% if groupe.total_quantite != 0 %} {% set total_prix_net_moyen = (groupe.total_eng_net / groupe.total_quantite) | abs %} {% set total_prix_brut_moyen = (groupe.total_eng_brut / groupe.total_quantite) | abs %} {% set total_frais_moyen = (total_prix_net_moyen - total_prix_brut_moyen) | abs %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %}
{{ groupe.isin }} --- {{ groupe.company_name }} ( {{ groupe.ticker }} )
Date Qté Prix Brut Frais Prix Net Eng. Brut Eng. Net Ordre Type État
{{ p.date_op }} {{ "{:,.0f}".format(p.quantite).replace(",", " ") }} {{ "{:,.3f}".format(p.prix_brut) }} {{ "{:,.3f}".format(p.frais) }} {{ "{:,.3f}".format(p.prix_net) }} {{ "{:,.3f}".format(p.eng_brut) }} {{ "{:,.3f}".format(p.eng_net) }} {{ p.ordre | upper }} {{ p.type_ordre }} {{ p.etat }}
TOTAL : {{ "{:,.0f}".format(groupe.total_quantite).replace(",", " ") }} {{ "{:,.3f}".format(total_prix_brut_moyen) }} {{ "{:,.3f}".format(total_frais_moyen) }} {{ "{:,.3f}".format(total_prix_net_moyen) }} {{ "{:,.3f}".format(groupe.total_eng_brut | abs) }} {{ "{:,.3f}".format(groupe.total_eng_net | abs) }} - - - {{ "{:,.3f}".format(groupe.total_eng_brut | abs) }} {{ "{:,.3f}".format(groupe.total_eng_net | abs) }}
Aucun ordre trouvé pour cette société.
{% endblock %}