pedi2/resources/js/components/pedidos/ProductoCard.vue

114 lines
3.4 KiB
Vue
Raw Normal View History

<script>
export default {
name: "ProductoCard",
props: {
producto: Object
},
data() {
return {
cantidad: this.producto.cantidad,
enChismosa: this.producto.cantidad,
2024-09-17 21:28:08 -03:00
notas: this.producto.notas,
}
},
mounted() {
2024-09-17 21:28:08 -03:00
Event.$on('sync-subpedido', (cantidad, productoId, notas) => {
2024-08-29 22:54:05 -03:00
if (this.producto.id === productoId)
2024-09-17 21:28:08 -03:00
this.sincronizar(cantidad, notas);
2024-08-29 22:54:05 -03:00
});
},
methods: {
decrementar() {
this.cantidad -= 1;
},
incrementar() {
this.cantidad += 1;
},
confirmar() {
2024-09-17 21:28:08 -03:00
Event.$emit('sync-subpedido', this.cantidad, this.producto.id, this.notas);
},
borrar() {
this.cantidad = 0;
this.confirmar();
},
2024-09-17 21:28:08 -03:00
sincronizar(cantidad, notas) {
this.cantidad = cantidad;
this.producto.cantidad = cantidad;
this.enChismosa = cantidad;
2024-09-17 21:28:08 -03:00
this.notas = notas;
this.producto.notas = notas;
},
hayCambios() {
2024-09-17 21:28:08 -03:00
return this.cantidad != this.enChismosa || this.notas != this.producto.notas;
},
puedeBorrar() {
return this.enChismosa > 0;
},
}
}
</script>
<template>
2024-09-09 00:14:29 -03:00
<div class="block column is-one-quarter-desktop is-full-mobile is-half-tablet min-width-from-desktop">
<div class="box" style="height:100%">
<div class="columns">
2024-09-09 00:14:29 -03:00
<div class="column">
<p class="title is-6">
{{ producto.nombre }}
</p>
<p class="subtitle is-7" v-text="producto.proveedor"></p>
<span class="subtitle is-7 hidden-from-tablet" v-if="enChismosa !== 0">{{ enChismosa }} en chismosa</span>
</div>
<div class="column is-one-quarter has-text-right">
<p class="has-text-weight-bold has-text-primary">
<span class="is-left-mobile">
<img v-show="producto.economia_solidaria" height="30px" width="30px" src="/assets/solidaria.png" alt="proveedor de economía solidaria">
<img v-show="producto.nacional" height="30px" width="30px" src="/assets/uruguay.png" alt="proveedor nacional"/>
</span>
$<span v-text="producto.precio"></span>
</p>
</div>
</div>
<footer class="columns">
<div class="column is-three-quarters">
2024-10-08 20:07:03 -03:00
<pedidos-producto-cantidad :producto="producto"></pedidos-producto-cantidad>
</div>
<div class="column">
<p class="subtitle is-7 is-hidden-mobile" v-if="enChismosa !== 0">{{ enChismosa }} en chismosa</p>
</div>
</footer>
</div><!-- END BOX -->
2024-08-29 23:01:31 -03:00
</div>
</template>
2024-08-30 00:10:50 -03:00
<style lang="scss" scoped>
2024-09-14 16:25:57 -03:00
@use "../../../../node_modules/bulma/sass/utilities/mixins";
2024-09-09 00:14:29 -03:00
@include mixins.until(mixins.$desktop) {
.hidden-until-desktop {
display: none;
}
}
@include mixins.from(mixins.$desktop) {
.min-width-from-desktop {
2024-08-30 00:10:50 -03:00
min-width: 25rem;
}
2024-09-09 00:14:29 -03:00
.hidden-from-desktop {
display: none;
}
2024-08-30 00:10:50 -03:00
}
@include mixins.from(mixins.$tablet) {
.hidden-from-tablet {
display: none;
}
}
@include mixins.mobile() {
.is-left-mobile {
float: left;
}
}
</style>