Desactivar agregar producto si requiere notas y están vacías
This commit is contained in:
parent
be945b0eee
commit
538cc84e10
|
@ -14,7 +14,7 @@
|
||||||
<i class="fa fa-solid fa-plus"></i>
|
<i class="fa fa-solid fa-plus"></i>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<button :disabled="!hayCambios()" class="button is-small is-success ml-1" @click="confirmar()">
|
<button :disabled="disableConfirm()" class="button is-small is-success ml-1" @click="confirmar()">
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class="fas fa-check"></i>
|
<i class="fas fa-check"></i>
|
||||||
</span>
|
</span>
|
||||||
|
@ -25,10 +25,20 @@
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="producto.requiere_notas" class="field has-addons is-full-width">
|
<div v-if="producto.requiere_notas" v-bind:class="{'has-icons-right': warningNotas()}" class="control is-full-width has-icons-left">
|
||||||
<input v-model="notas" class="input" type="text" placeholder="Talle o color" />
|
<span class="icon is-small is-left">
|
||||||
|
<i class="fas fa-sticky-note"></i>
|
||||||
|
</span>
|
||||||
|
<input v-model="notas" v-bind:class="{'is-danger': warningNotas()}" id="notas" class="input" type="text" placeholder="Talle o color" />
|
||||||
|
<span v-if="warningNotas()" class="icon is-small is-right">
|
||||||
|
<i class="fas fa-exclamation-triangle"></i>
|
||||||
|
</span>
|
||||||
|
<article v-if="warningNotas()" class="message is-danger is-small">
|
||||||
|
<div class="message-body">
|
||||||
|
No se puede dejar este campo vacío
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -86,6 +96,13 @@
|
||||||
puedeBorrar() {
|
puedeBorrar() {
|
||||||
return this.cantidadEnChismosa() > 0;
|
return this.cantidadEnChismosa() > 0;
|
||||||
},
|
},
|
||||||
|
warningNotas() {
|
||||||
|
return this.producto.requiere_notas && this.cantidad > 0 && !this.notas;
|
||||||
|
},
|
||||||
|
disableConfirm() {
|
||||||
|
if (!this.hayCambios() || this.warningNotas()) return true;
|
||||||
|
return false;
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -107,4 +124,12 @@
|
||||||
.contador {
|
.contador {
|
||||||
min-width: 178px;
|
min-width: 178px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.is-danger {
|
||||||
|
background-color: #fca697;
|
||||||
|
}
|
||||||
|
.is-danger::placeholder {
|
||||||
|
color: #fff;
|
||||||
|
opacity: 1; /* Firefox */
|
||||||
|
}
|
||||||
</style>
|
</style>
|
Loading…
Reference in New Issue