bugfix in total price
parent
4d5e51c89a
commit
6610ea0c05
|
@ -263,7 +263,6 @@
|
||||||
if(objProductInfo.quantity == i) elementProduct += `<option selected value="${i}">Anzahl: ${i}</option>`;
|
if(objProductInfo.quantity == i) elementProduct += `<option selected value="${i}">Anzahl: ${i}</option>`;
|
||||||
else elementProduct += `<option value="${i}">Anzahl: ${i}</option>`;
|
else elementProduct += `<option value="${i}">Anzahl: ${i}</option>`;
|
||||||
}
|
}
|
||||||
totalPrice += item.data_fields.preis*objProductInfo.quantity;
|
|
||||||
elementProduct += `
|
elementProduct += `
|
||||||
</select>
|
</select>
|
||||||
<button data-id="${item.id}" class="btn-remove-product text-muted small text-decoration-none" style="padding: 0; border: none; background: transparen;">Löschen</button>
|
<button data-id="${item.id}" class="btn-remove-product text-muted small text-decoration-none" style="padding: 0; border: none; background: transparen;">Löschen</button>
|
||||||
|
|
Loading…
Reference in New Issue