Browse Source

[backend] Pas de retour à la ligne dans les prix (liste des commandes)

refactoring
Guillaume Bourgeois 5 years ago
parent
commit
e151eb690f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      backend/views/distribution/index.php

+ 1
- 1
backend/views/distribution/index.php View File

@@ -254,7 +254,7 @@ $this->setPageTitle('Distributions') ;
<td v-if="idActivePointSale == 0">
{{ order.pointSale.name }}
</td>
<td>{{ order.amount.toFixed(2).replace(/(\d)(?=(\d{3})+(?:\.\d+)?$)/g, "$1,")+' €' }}</td>
<td>{{ order.amount.toFixed(2).replace(/(\d)(?=(\d{3})+(?:\.\d+)?$)/g, "$1,")+'&nbsp;€' }}</td>
<td>
<div class="input-group">
<span class="label label-success input-group-addon" v-if="order.amount_paid == order.amount">payé</span>

Loading…
Cancel
Save