Benjamin Völkl 2022-09-05 13:10:04 +02:00
parent 0191e75ce9
commit bec88d0cff
2 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<component name="ChangeListManager">
<list default="true" id="63513c45-0a61-435e-8541-3831c195f7c0" name="Changes" comment="gustavo luigi helped me with that">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/content/pages/checkout.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/pages/checkout.blade.php" afterDir="false" />
<change beforePath="$PROJECT_DIR$/content/contents/solarmodule.blade.php" beforeDir="false" afterPath="$PROJECT_DIR$/content/contents/solarmodule.blade.php" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />

View File

@ -129,6 +129,7 @@
<tr>
<th scope="col">Abnahme</th>
<th scope="col">Preis pro Einheit</th>
<th scope="col">Rabatt</th>
</tr>
</thead>
<tbody>
@ -137,6 +138,7 @@
<tr>
<td>ab 5 Stück</td>
<td>{{$content->data_fields['preis_5']}} €</td>
<td><span class="badge text-bg-dark">{{(($content->data_fields['preis_5']-$content->data_fields['preis'])*100)/$content->data_fields['preis']}} %</span></td>
</tr>
@endisset

@ -144,6 +146,7 @@
<tr>
<td>ab 10 Stück</td>
<td>{{$content->data_fields['preis_10']}} €</td>
<td><span class="badge text-bg-dark">{{(($content->data_fields['preis_10']-$content->data_fields['preis'])*100)/$content->data_fields['preis']}} %</span></td>
</tr>
@endisset

@ -151,6 +154,7 @@
<tr>
<td>Palette ({{$content->data_fields['module_pro_palette']}} Stück)</td>
<td>{{$content->data_fields['preis_palette']}} €</td>
<td><span class="badge text-bg-dark">{{(($content->data_fields['preis_palette']-$content->data_fields['preis'])*100)/$content->data_fields['preis']}} %</span></td>
</tr>
@endisset