Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <c-row>
- <c-col xs="12">
- <c-card class="mb-4">
- <c-card-header ngPreserveWhitespaces>
- <strong>{{entidad}}</strong>
- </c-card-header>
- <c-card-body>
- <form cForm id="frmEntidad" [formGroup]="frmEntidad" (ngSubmit)="editarEntidad()">
- <div class="mb-3">
- <label cLabel for="txtNombre">Nombre</label>
- <input cFormControl id="txtNombre" placeholder="Escriba el nombre" type="text"
- formControlName="nombre" />
- </div>
- <div class="mb-3">
- <label cLabel for="txtRut">Rut</label>
- <input cFormControl id="txtRut" placeholder="" type="text" formControlName="rut" />
- </div>
- <div class="mb-3">
- <label cLabel for="txtFechaInicioActividad">Fecha inicio actividad</label>
- <input cFormControl id="txtFechaInicioActividad" placeholder="" type="date" formControlName="fecha_inicio_actividad" />
- </div>
- <div class="mb-3">
- <button cButton type="submit" color="warning"
- form="frmEntidad" [disabled]="!frmEntidad.valid">
- Actualizar oferente
- </button>
- </div>
- </form>
- </c-card-body>
- </c-card>
- </c-col>
- <c-col xs="12">
- <c-card class="mb-4">
- <c-card-header ngPreserveWhitespaces>
- <strong>Cuenta</strong>
- </c-card-header>
- <c-card-body>
- <app-cuenta [cuenta]="cuenta"></app-cuenta>
- </c-card-body>
- </c-card>
- </c-col>
- <c-col xs="12">
- <c-card class="mb-4">
- <c-card-header ngPreserveWhitespaces>
- <strong>Emails</strong>
- </c-card-header>
- <c-card-body>
- <app-email [tipoPropietario]="'oferente'" [propietarioId]="oferenteId" ></app-email>
- </c-card-body>
- </c-card>
- </c-col>
- <!-- <c-col xs="12">
- <c-card class="mb-4">
- <c-card-header ngPreserveWhitespaces>
- <strong>Teléfono</strong>
- </c-card-header>
- <c-card-body>
- <app-telefono [tipoPropietario]="'oferente'" [propietarioTelefonoId]="oferenteId"></app-telefono>
- </c-card-body>
- </c-card>
- </c-col> -->
- <c-col xs="12">
- <c-card class="mb-4">
- <c-card-header ngPreserveWhitespaces>
- <strong>Direcciones:</strong>
- </c-card-header>
- <c-card-body>
- <app-direccion [tipoPropietario]="'oferente'" [direccionpropietarioId]="oferenteId"></app-direccion>
- </c-card-body>
- </c-card>
- </c-col>
- <c-col xs="12">
- <c-card class="mb-4">
- <c-card-header ngPreserveWhitespaces>
- <strong>Especialidad:</strong>
- </c-card-header>
- <c-card-body>
- <app-especialidad [tipoPropietario]="'oferente'" [propietarioIdEspecialidad]="oferenteId" ></app-especialidad>
- </c-card-body>
- </c-card>
- </c-col>
- <c-col xs="12">
- <c-card class="mb-4">
- <c-card-header ngPreserveWhitespaces>
- <strong>Documentos:</strong>
- </c-card-header>
- <c-card-body>
- <app-etc></app-etc>
- </c-card-body>
- </c-card>
- </c-col>
- </c-row>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement