No se muestra control de devoluciones en pedido aprobado
This commit is contained in:
parent
686fcf3bd5
commit
fcb2d2c5bc
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
|||
<th class="has-text-right">{{ cantidad_transporte }}</th>
|
||||
<th class="has-text-right">{{ total_transporte }}</th>
|
||||
</tr>
|
||||
<tr v-if="grupo_de_compra.devoluciones_habilitadas">
|
||||
<tr v-if="grupo_de_compra.devoluciones_habilitadas && !aprobado">
|
||||
<th><p>Devoluciones</p></th>
|
||||
<td>
|
||||
<abbr :title="devoluciones_notas">{{ notas_abreviadas }}</abbr>
|
||||
|
@ -57,6 +57,7 @@ export default {
|
|||
"cantidad_transporte",
|
||||
"devoluciones_total",
|
||||
"devoluciones_notas",
|
||||
"aprobado"
|
||||
]),
|
||||
notas_abreviadas() {
|
||||
return this.devoluciones_notas.substring(0, 15) + (this.devoluciones_notas.length > 15 ? "..." : "");
|
||||
|
|
Loading…
Add table
Reference in a new issue