{% extends '@Core/base.html.twig' %} {% block sectionTitle %}Listado de control de cajas{% endblock %} {% block sectionActions %} {% endblock %} {% block breadcrumbLinks %}
Tienda | Caja | Fecha apertura | Fecha cierre | Importe de cierre | Ingresos en caja | Ingresos en metálico | Ingresos en tarjeta | Descuadre en caja | Operaciones realizadas | Ganancia | Estado | Acciones |
---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ obj["shopName"] }} | {{ obj["cashpointName"] }} | {{ obj["dateOpen"] | date('Y-m-d') }}{{ obj["dateOpen"] | date('d-m-Y \\a \\l\\a\\s H:i:s') }} | {% if obj["dateClose"] is not null %}{{ obj["dateClose"] | date('d-m-Y \\a \\l\\a\\s H:i:s') }}{% endif %} | {% if obj["typeStatusManageCashpointId"] == constant('CoreBundle\\Entity\\TypeStatusManageCashpoint::ID_STATUS_TO_OPENEND') %} {{ (obj["amountClose"] + cashAmount + cardAmount) | number_format(2, '.', '') }} {% elseif obj["typeStatusManageCashpointId"] == constant('CoreBundle\\Entity\\TypeStatusManageCashpoint::ID_STATUS_TO_CLOSED') %} {{ obj["amountClose"] | number_format(2, '.', '') }} {% endif %} | {{ (cashAmount + cardAmount) | number_format(2, '.', '') }} | {{ cashAmount | number_format(2, '.', '') }} | {{ cardAmount | number_format(2, '.', '') }} | {{ ( obj["fixAmountOpen"] + obj["fixAmountClose"]) | number_format(2, '.', '') }} | {{ obj["sales"] }} {# {{ obj.sales | length }}#} | {% if (roleRight or isRightManageCashpointListInShops) %} {% if gainByManageCashpoint[obj["id"]] is defined %} {{ gainByManageCashpoint[obj["id"]] | number_format(2, '.', '') }} {% endif %} {% endif %} | {% if obj["typeStatusManageCashpointId"] == constant('CoreBundle\\Entity\\TypeStatusManageCashpoint::ID_STATUS_TO_OPENEND') %} {{ obj["typeStatusManageCashpointName"] }} {% elseif obj["typeStatusManageCashpointId"] == constant('CoreBundle\\Entity\\TypeStatusManageCashpoint::ID_STATUS_TO_CLOSED') %} {{ obj["typeStatusManageCashpointName"] }} {% else %} - {% endif %} | Acceder |
TOTALES |