salix/print/templates/email/zone-included/zone-included.html

35 lines
1.2 KiB
HTML

<email-body v-bind="$props">
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<table cellspacing="10">
<tr>
<th>{{ $t('postalCode') }}</th>
<th>{{ $t('zoneFk') }}</th>
<th>{{ $t('price') }}</th>
<th>{{ $t('zone') }}</th>
<th>{{ $t('warehouse') }}</th>
<th>Salix</th>
</tr>
<tr v-for="zone in zoneCollisions">
<td>{{ zone.zn.name }}</td>
<td>{{ zone.zoneFk }}</td>
<td>{{ zone.z.price }}</td>
<td>{{ zone.z.name }}</td>
<td>{{ zone.w.name }}</td>
<td>
<a v-bind:href="'https://salix.verdnatura.es/#!/zone/'+
zone.zoneFk+
'/location?q=%7B%22search%22:%22'+
zone.zn.name+
'%22%7D'">
'https://salix.verdnatura.es/#!/zone/'+
{{zone.zoneFk}}+
'/location?q=%7B%22search%22:%22'+
{{zone.zn.name}}+
'%22%7D</a></td>
</tr>
</table>
</div>
</div>
</email-body>