switched 2 inputs

This commit is contained in:
Luca Haid
2024-11-21 09:12:44 +00:00
parent 11ec0cf97b
commit 0cf35b19b1
8 changed files with 115 additions and 34 deletions
@@ -246,6 +246,7 @@ Vue.component('warehouse-article-price-modal', {
})
// noinspection EqualityComparisonWithCoercionJS
Vue.component('warehouse-article', {
//language=Vue
template: `
@@ -261,7 +262,7 @@ Vue.component('warehouse-article', {
<template v-slot:cheapestsellprice="{ row }">
<template v-for="price in JSON.parse(row.cheapestSellPrice)">
<span v-if="price && window.TT_CONFIG['WAREHOUSE_ADMIN'] === true">{{price.title}}: {{(price.price)}} €<br></span>
<span v-if="price && window.TT_CONFIG['WAREHOUSE_ADMIN'] == true">{{price.title}}: {{(price.price)}} €<br></span>
<span v-if="price && price.title === 'Verkauf'">{{(price.price)}} €</span>
</template>
</template>