renamed field
gitea/salix/1972-buyer_week_waste This commit looks good Details

This commit is contained in:
Joan Sanchez 2020-01-09 07:54:34 +01:00
parent a702d14fa9
commit 0999c7e2ca
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
<tr>
<th>{{$t('buyer')}}</th>
<th class="number">{{$t('percentage')}}</th>
<th class="number">{{$t('weakening')}}</th>
<th class="number">{{$t('dwindle')}}</th>
<th class="number">{{$t('total')}}</th>
</tr>
</thead>
@ -44,7 +44,7 @@
<tr v-for="waste in wastes" v-bind:key="waste.buyer">
<td class="font gray">{{waste.buyer}}</td>
<td class="number">{{(waste.percentage / 100) | percentage(4, 4, locale)}}</td>
<td class="number">{{waste.weakening | currency('EUR', locale)}}</td>
<td class="number">{{waste.dwindle | currency('EUR', locale)}}</td>
<td class="number">{{waste.total | currency('EUR', locale)}}</td>
</tr>
</tbody>