- Corretto la possibilità di effettuare un Ordine di libri, sul sito gruppomacro.app. arriverà una email a "info@gruppomacro.app".
This commit is contained in:
@@ -5,14 +5,23 @@
|
||||
>
|
||||
<div v-if="order.product">
|
||||
<q-item>
|
||||
<q-item-section top thumbnail class="q-ml-none">
|
||||
<q-item-section
|
||||
top
|
||||
thumbnail
|
||||
class="q-ml-none"
|
||||
>
|
||||
<img
|
||||
v-if="
|
||||
order.product &&
|
||||
order.product.productInfo &&
|
||||
order.product.productInfo.imagefile
|
||||
"
|
||||
:src="tools.getFullFileNameByImageFile('productInfos', order.product.productInfo.imagefile)"
|
||||
:src="
|
||||
tools.getFullFileNameByImageFile(
|
||||
'productInfos',
|
||||
order.product.productInfo.imagefile
|
||||
)
|
||||
"
|
||||
:alt="order.product.productInfo.name"
|
||||
:class="myimgclass()"
|
||||
/>
|
||||
@@ -20,10 +29,22 @@
|
||||
|
||||
<q-item-section>
|
||||
<q-item-label>
|
||||
<div v-if="order.idGasordine" class="gasordine">
|
||||
<div
|
||||
v-if="order.idGasordine"
|
||||
class="gasordine"
|
||||
>
|
||||
{{ products.getSingleGasordine(order, true) }}<br />
|
||||
</div>
|
||||
{{ order.product.productInfo.name }}
|
||||
<span
|
||||
class="autori"
|
||||
v-if="order.product.productInfo.idAuthors"
|
||||
>
|
||||
- {{ products.getAutoriByIdAuthors(order.product.productInfo.idAuthors) }}
|
||||
</span>
|
||||
</q-item-label>
|
||||
<q-item-label>
|
||||
{{ order.product.productInfo.code }}
|
||||
</q-item-label>
|
||||
|
||||
<q-item-label caption>
|
||||
@@ -137,7 +158,10 @@
|
||||
>
|
||||
</q-btn>
|
||||
</div>
|
||||
<div v-else-if="showall" :class="`q-mx-sm text-blue-14 qta`">
|
||||
<div
|
||||
v-else-if="showall"
|
||||
:class="`q-mx-sm text-blue-14 qta`"
|
||||
>
|
||||
{{ order.quantity + order.quantitypreordered }}
|
||||
</div>
|
||||
|
||||
@@ -166,11 +190,7 @@
|
||||
</span>
|
||||
<span :class="isApplicatoSconto() ? 'ordine_scontato_nuovo' : ''">
|
||||
= €
|
||||
{{
|
||||
order.TotalPriceProduct
|
||||
? order.TotalPriceProduct.toFixed(2)
|
||||
: 0
|
||||
}}
|
||||
{{ order.TotalPriceProduct ? order.TotalPriceProduct.toFixed(2) : 0 }}
|
||||
</span>
|
||||
<span
|
||||
v-if="
|
||||
@@ -204,9 +224,7 @@
|
||||
<span
|
||||
v-if="isApplicatoSconto() && !editmode"
|
||||
class="ordine_scritta_sconto"
|
||||
>{{
|
||||
$t('ecomm.sconto_applicato', { risparmio: getRisparmio() })
|
||||
}}</span
|
||||
>{{ $t('ecomm.sconto_applicato', { risparmio: getRisparmio() }) }}</span
|
||||
>
|
||||
</div>
|
||||
</q-item-label>
|
||||
@@ -236,8 +254,7 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./CSingleCart.ts">
|
||||
</script>
|
||||
<script lang="ts" src="./CSingleCart.ts"></script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './CSingleCart.scss';
|
||||
|
||||
Reference in New Issue
Block a user