falta mirar en la base de datos si guardo el tipo de moneda
This commit is contained in:
@@ -170,7 +170,7 @@
|
||||
cantidadGarantes: data.cantGarantes,
|
||||
idPropiedad: Selmens.propiedad,
|
||||
fechaprimernotificacion: fecha,
|
||||
emailInquilino: localStorage.getItem("email"),
|
||||
emailInquilino: Selmens.remitente,
|
||||
emailPropietario: Selmens.receptor,
|
||||
};
|
||||
|
||||
@@ -459,7 +459,7 @@
|
||||
<tbody>
|
||||
{#if mensajes.length <= 0}
|
||||
<tr>
|
||||
<td colspan={mostrarleidos == false ? 6 : 5}>
|
||||
<td colspan={mostrarleidos == false ? 7 : 6}>
|
||||
<p>No hay Mensajes para leer</p>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -481,8 +481,8 @@
|
||||
Expandir
|
||||
</button>
|
||||
{/if}
|
||||
{#if men.accion === "ContratoCancelado" || men.accion === "Rechazo Contrato" ||
|
||||
men.accion === "Aceptado Contrato"}
|
||||
{#if (men.accion === "ContratoCancelado" || men.accion === "Rechazo Contrato" ||
|
||||
men.accion === "Aceptado Contrato") && mostrarleidos == false}
|
||||
<button
|
||||
class="btn btn-outline-danger"
|
||||
onclick={() => marcarleido(men.fecha, localStorage.getItem("email")|| "", men)}>
|
||||
|
||||
Reference in New Issue
Block a user