瀏覽代碼

[Global] Bug retour system pay

feature/tableau_edition_avancee
Fab 4 年之前
父節點
當前提交
be218c5048
共有 3 個文件被更改,包括 48 次插入0 次删除
  1. +1
    -0
      ShopBundle/Resources/translations/lcshop.fr.yaml
  2. +22
    -0
      ShopBundle/Resources/views/backend/default/block/list_addressloopinbesancon.html.twig
  3. +25
    -0
      ShopBundle/Resources/views/backend/default/block/list_orderswaitingbankreturn.html.twig

+ 1
- 0
ShopBundle/Resources/translations/lcshop.fr.yaml 查看文件

@@ -68,6 +68,7 @@ group:
complementary: Commandes complémentaires
tickets: Tickets relatif à la commande
orderStatusHistories: Historique de changement de statut
waitingBankReturn: Commandes en attente de retour banque
Ticket:
listMessages: Liste des messages
list: Tickets ouverts

+ 22
- 0
ShopBundle/Resources/views/backend/default/block/list_addressloopinbesancon.html.twig 查看文件

@@ -0,0 +1,22 @@
<table class="table table-condensed" id="address-list">
<thead>
<tr>
<th>Adresse</th>
<th></th>
</tr>
</thead>
<tbody>
{% for address in addressesLoopBesancon %}
<tr>
<td>{{ address }}</td>
<td><a class="btn-sm btn-success"
href="{{ path('easyadmin', {id: address.user.id, entity: 'User', action: 'show'}) }}">
<i class="fas fa-eye"></i>
</a></td>
</tr>
{% else %}
<tr>
<td colspan="2"><i>Aucune adresse pour le moment</i></td>
{% endfor %}
</tbody>
</table>

+ 25
- 0
ShopBundle/Resources/views/backend/default/block/list_orderswaitingbankreturn.html.twig 查看文件

@@ -0,0 +1,25 @@
<table class="table table-condensed" id="address-list">
<thead>
<tr>
<th>Utilisateurs</th>
<th>Date</th>
<th></th>
</tr>
</thead>
<tbody>
{% for order in ordersWaitingBankReturn %}
<tr>
<td>{{ order.user }}</td>
<td>{{ order.updatedAt|date('d-m H:i') }}</td>
<td><a class="btn-sm btn-success"
href="{{ path('easyadmin', {id: order.id, entity: 'OrderShop', action: 'show'}) }}">
<i class="fas fa-eye"></i>
</a></td>
</tr>
{% else %}
<tr>
<td colspan="2"><i>Aucune commande pour le moment</i></td>
{% endfor %}
</tbody>
</table>


Loading…
取消
儲存