Falta hacer la notificacion nueva
This commit is contained in:
165
Front/src/Componentes/ModalAddGarantes.svelte
Normal file
165
Front/src/Componentes/ModalAddGarantes.svelte
Normal file
@@ -0,0 +1,165 @@
|
||||
<script lang="ts">
|
||||
import type { GaranteDto } from "../types";
|
||||
|
||||
let { onClose, onSubmit, maxGarantes }: {
|
||||
onClose: () => void,
|
||||
onSubmit: (garantes: GaranteDto[]) => void,
|
||||
maxGarantes: number
|
||||
} = $props();
|
||||
|
||||
let cantGarantes: number = $state(0);
|
||||
let garantes: GaranteDto[] = $state([]);
|
||||
let showAddForm: boolean = $state(false);
|
||||
|
||||
// Nuevo garante temporal para el formulario.
|
||||
let newGarante: GaranteDto = $state({
|
||||
Dni: 0,
|
||||
Nombre: "",
|
||||
Apellido: "",
|
||||
Domicilio: "",
|
||||
Celular: "",
|
||||
Domiciliolaboral: ""
|
||||
});
|
||||
|
||||
function handleSubmit(e: Event) {
|
||||
e.preventDefault();
|
||||
onSubmit(garantes);
|
||||
onClose();
|
||||
}
|
||||
|
||||
function addGarante() {
|
||||
if (cantGarantes < maxGarantes) {
|
||||
garantes = [...garantes, { ...newGarante }];
|
||||
cantGarantes = garantes.length;
|
||||
resetNewGarante();
|
||||
showAddForm = false;
|
||||
}
|
||||
}
|
||||
|
||||
function resetNewGarante() {
|
||||
newGarante = {
|
||||
Dni: 0,
|
||||
Nombre: "",
|
||||
Apellido: "",
|
||||
Domicilio: "",
|
||||
Celular: "",
|
||||
Domiciliolaboral: ""
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="modal fade show" tabindex="-1" role="dialog" style="display: block; background-color: rgba(0, 0, 0, 0.5);">
|
||||
<div class="modal-dialog modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">Nuevo Alquiler - Garantes</h5>
|
||||
<button class="btn-close" onclick={onClose} aria-label="Close"></button>
|
||||
</div>
|
||||
<form onsubmit={handleSubmit}>
|
||||
<div class="modal-body">
|
||||
<div class="mb-3">
|
||||
<p>Garantes añadidos: {cantGarantes}/{maxGarantes}</p>
|
||||
<button
|
||||
class="btn btn-success"
|
||||
type="button"
|
||||
onclick={() => (showAddForm = true)}
|
||||
disabled={cantGarantes >= maxGarantes}
|
||||
>
|
||||
Añadir Garante
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Formulario para añadir un garante -->
|
||||
{#if showAddForm}
|
||||
<div class="form-group mt-3">
|
||||
<h6>Añadir Garante</h6>
|
||||
<div class="mb-2">
|
||||
<label>DNI</label>
|
||||
<input type="number" class="form-control" bind:value={newGarante.Dni} required />
|
||||
</div>
|
||||
<div class="mb-2">
|
||||
<label>Nombre</label>
|
||||
<input type="text" class="form-control" bind:value={newGarante.Nombre} required />
|
||||
</div>
|
||||
<div class="mb-2">
|
||||
<label>Apellido</label>
|
||||
<input type="text" class="form-control" bind:value={newGarante.Apellido} required />
|
||||
</div>
|
||||
<div class="mb-2">
|
||||
<label>Domicilio</label>
|
||||
<input type="text" class="form-control" bind:value={newGarante.Domicilio} required />
|
||||
</div>
|
||||
<div class="mb-2">
|
||||
<label>Celular</label>
|
||||
<input type="text" class="form-control" bind:value={newGarante.Celular} required />
|
||||
</div>
|
||||
<div class="mb-2">
|
||||
<label>Domicilio Laboral</label>
|
||||
<input type="text" class="form-control" bind:value={newGarante.Domiciliolaboral} required />
|
||||
</div>
|
||||
<div class="d-flex justify-content-between">
|
||||
<button
|
||||
class="btn btn-secondary"
|
||||
type="button"
|
||||
onclick={() => (showAddForm = false)}
|
||||
>
|
||||
Cancelar
|
||||
</button>
|
||||
<button class="btn btn-primary" type="button" onclick={addGarante}>
|
||||
Confirmar
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<!-- Tabla de garantes -->
|
||||
{#if cantGarantes > 0}
|
||||
<div class="form-group mt-3">
|
||||
<label>Lista de Garantes</label>
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>DNI</th>
|
||||
<th>Nombre</th>
|
||||
<th>Apellido</th>
|
||||
<th>Domicilio</th>
|
||||
<th>Celular</th>
|
||||
<th>Domicilio Laboral</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{#each garantes as garante, index}
|
||||
<tr>
|
||||
<td>
|
||||
<input type="number" class="form-control" bind:value={garantes[index].Dni} required />
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="form-control" bind:value={garantes[index].Nombre} required />
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="form-control" bind:value={garantes[index].Apellido} required />
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="form-control" bind:value={garantes[index].Domicilio} required />
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="form-control" bind:value={garantes[index].Celular} required />
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" class="form-control" bind:value={garantes[index].Domiciliolaboral} required />
|
||||
</td>
|
||||
</tr>
|
||||
{/each}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="modal-footer d-flex justify-content-between">
|
||||
<button type="button" class="btn btn-secondary" onclick={onClose}>Cancelar</button>
|
||||
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
50
Front/src/Componentes/ModalPrecontrato.svelte
Normal file
50
Front/src/Componentes/ModalPrecontrato.svelte
Normal file
@@ -0,0 +1,50 @@
|
||||
<script lang="ts">
|
||||
let { onClose, onSubmit } : {
|
||||
onClose: () => void,
|
||||
onSubmit: (data: { opcionVenta: boolean; cantGarantes: number; mesesHastaAumento: number }) => void
|
||||
} = $props();
|
||||
|
||||
let opcionVenta: boolean = $state(false);
|
||||
let cantGarantes: number = $state(0);
|
||||
let mesesHastaAumento: number = $state(0);
|
||||
|
||||
function handleSubmit(e:Event) {
|
||||
e.preventDefault();
|
||||
onSubmit({ opcionVenta, cantGarantes, mesesHastaAumento });
|
||||
onClose();
|
||||
}
|
||||
</script>
|
||||
|
||||
<div class="modal fade show" tabindex="-1" role="dialog" style="display: block; background-color: rgba(0, 0, 0, 0.5);">
|
||||
<div class="modal-dialog" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">Nuevo Alquiler</h5>
|
||||
<button class="btn-close" onclick={onClose} aria-label="Close"></button>
|
||||
</div>
|
||||
<form onsubmit={handleSubmit}>
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
|
||||
<div class="form-check">
|
||||
<input type="checkbox" class="form-check-input" bind:checked={opcionVenta} id="opcionVenta" />
|
||||
<label class="form-check-label" for="opcionVenta">Seleccionar Opcion de Venta</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="cantGarantes">Cantidad de Garantes</label>
|
||||
<input type="number" class="form-control" id="cantGarantes" bind:value={cantGarantes} min="0" required />
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="mesesHastaAumento">Meses Hasta Aumento</label>
|
||||
<input type="number" class="form-control" id="mesesHastaAumento" bind:value={mesesHastaAumento} min="0" required />
|
||||
</div>
|
||||
<div class="modal-footer d-flex justify-content-between">
|
||||
<button type="button" class="btn btn-secondary" onclick={onClose}>Cancelar</button>
|
||||
<button type="submit" class="btn btn-primary">Confirmar</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user