Advertisement
Fhernd

oferente.component.html

Jul 18th, 2024
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.64 KB | None | 0 0
  1. <c-row>
  2.     <c-col xs="12">
  3.         <c-card class="mb-4">
  4.             <c-card-header ngPreserveWhitespaces>
  5.                 <strong>{{entidad}}</strong>
  6.             </c-card-header>
  7.             <c-card-body>
  8.                 <form cForm id="frmEntidad" [formGroup]="frmEntidad" (ngSubmit)="editarEntidad()">
  9.                     <div class="mb-3">
  10.                         <label cLabel for="txtNombre">Nombre</label>
  11.                         <input cFormControl id="txtNombre" placeholder="Escriba el nombre" type="text"
  12.                            formControlName="nombre" />
  13.                     </div>
  14.                     <div class="mb-3">
  15.                         <label cLabel for="txtRut">Rut</label>
  16.                         <input cFormControl id="txtRut" placeholder="" type="text" formControlName="rut" />
  17.                     </div>
  18.                     <div class="mb-3">
  19.                         <label cLabel for="txtFechaInicioActividad">Fecha inicio actividad</label>
  20.                         <input cFormControl id="txtFechaInicioActividad" placeholder="" type="date" formControlName="fecha_inicio_actividad" />
  21.                     </div>
  22.                     <div class="mb-3">
  23.                         <button cButton type="submit" color="warning"
  24.                            form="frmEntidad" [disabled]="!frmEntidad.valid">
  25.                             Actualizar oferente
  26.                         </button>
  27.                     </div>
  28.                 </form>
  29.             </c-card-body>
  30.         </c-card>
  31.     </c-col>
  32.     <c-col xs="12">
  33.         <c-card class="mb-4">
  34.             <c-card-header ngPreserveWhitespaces>
  35.                 <strong>Cuenta</strong>
  36.             </c-card-header>
  37.             <c-card-body>
  38.                 <app-cuenta [cuenta]="cuenta"></app-cuenta>
  39.             </c-card-body>
  40.         </c-card>
  41.     </c-col>
  42.     <c-col xs="12">
  43.         <c-card class="mb-4">
  44.             <c-card-header ngPreserveWhitespaces>
  45.                 <strong>Emails</strong>
  46.             </c-card-header>
  47.             <c-card-body>
  48.                 <app-email [tipoPropietario]="'oferente'" [propietarioId]="oferenteId" ></app-email>
  49.             </c-card-body>
  50.         </c-card>
  51.     </c-col>
  52.     <!-- <c-col xs="12">
  53.        <c-card class="mb-4">
  54.            <c-card-header ngPreserveWhitespaces>
  55.                <strong>Teléfono</strong>
  56.            </c-card-header>
  57.            <c-card-body>
  58.                <app-telefono [tipoPropietario]="'oferente'" [propietarioTelefonoId]="oferenteId"></app-telefono>
  59.            </c-card-body>
  60.        </c-card>
  61.    </c-col>  -->
  62.     <c-col xs="12">
  63.         <c-card class="mb-4">
  64.             <c-card-header ngPreserveWhitespaces>
  65.                 <strong>Direcciones:</strong>
  66.             </c-card-header>
  67.             <c-card-body>
  68.                 <app-direccion [tipoPropietario]="'oferente'" [direccionpropietarioId]="oferenteId"></app-direccion>
  69.             </c-card-body>
  70.         </c-card>
  71.     </c-col>
  72.     <c-col xs="12">
  73.         <c-card class="mb-4">
  74.             <c-card-header ngPreserveWhitespaces>
  75.                 <strong>Especialidad:</strong>
  76.             </c-card-header>
  77.             <c-card-body>
  78.                 <app-especialidad [tipoPropietario]="'oferente'" [propietarioIdEspecialidad]="oferenteId" ></app-especialidad>
  79.             </c-card-body>
  80.         </c-card>
  81.     </c-col>
  82.     <c-col xs="12">
  83.         <c-card class="mb-4">
  84.             <c-card-header ngPreserveWhitespaces>
  85.                 <strong>Documentos:</strong>
  86.             </c-card-header>
  87.             <c-card-body>
  88.                 <app-etc></app-etc>
  89.             </c-card-body>
  90.         </c-card>
  91.     </c-col>
  92. </c-row>
Tags: angular
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement