Cambio de 'pagado' a 'aprobado'
This commit is contained in:
parent
fcb2d2c5bc
commit
c58824ff52
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ export default {
|
||||||
return this.getPedido(this.pedido_id).aprobado;
|
return this.getPedido(this.pedido_id).aprobado;
|
||||||
},
|
},
|
||||||
mensaje() {
|
mensaje() {
|
||||||
return this.aprobado ? "Pagado" : "No pagado";
|
return this.aprobado ? "Aprobado" : "No aprobado";
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<th v-if="devoluciones_habilitadas"><abbr title="Total sin tomar en cuenta las devoluciones">Total parcial $</abbr></th>
|
<th v-if="devoluciones_habilitadas"><abbr title="Total sin tomar en cuenta las devoluciones">Total parcial $</abbr></th>
|
||||||
<th v-if="devoluciones_habilitadas"><abbr title="Devoluciones correspondientes al núcleo">Devoluciones $</abbr></th>
|
<th v-if="devoluciones_habilitadas"><abbr title="Devoluciones correspondientes al núcleo">Devoluciones $</abbr></th>
|
||||||
<th><abbr title="Total a Pagar por el núleo">{{ devoluciones_habilitadas ? 'Total real' : 'Total' }} $</abbr></th>
|
<th><abbr title="Total a Pagar por el núleo">{{ devoluciones_habilitadas ? 'Total real' : 'Total' }} $</abbr></th>
|
||||||
<th class="is-1"><abbr title="Pagado">Pagado</abbr></th>
|
<th class="is-1"><abbr title="Aprobado">Aprobado</abbr></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
Loading…
Add table
Reference in a new issue