foca-abm-choferes-item.html 1.97 KB
<h4 class="pt-4">Chofer</h4>
<form name="formChofer">
    <input type="hidden" name="id" ng-model="chofer.id" />
    <div class="form-group row">
        <label class="offset-sm-1 col-sm-2 col-form-label">Transportista</label>
        <div class="col-sm-4">
            <select class="form-control" ng-model="chofer.transportista"
                ng-options="transportista as transportista.NOM for transportista in transportistas"
            >
            </select>
        </div>
    </div>
    <div class="form-group row">
        <label class="offset-sm-1 col-sm-2 col-form-label">Nombre</label>
        <div class="col-sm-4">
            <input
                class="form-control"
                type="text"
                teclado-virtual
                ng-model="chofer.nombre"
                ng-required="true"
            />
        </div>
    </div>
    <div class="form-group row">
            <label class="offset-sm-1 col-sm-2 col-form-label">DNI</label>
            <div class="col-sm-4">
                <input
                    class="form-control"
                    type="text"
                    teclado-virtual
                    ng-model="chofer.dni"
                    ng-required="true"
                />
            </div>
        </div>
    <div class="form-group row">
        <label class="offset-sm-1 col-sm-2 col-form-label">Teléfono</label>
        <div class="col-sm-4">
            <input
                class="form-control"
                type="text"
                teclado-virtual
                ng-model="chofer.telefono"
                ng-required="true"
            />
        </div>
    </div>
    <div class="form-group row">
        <div class="col-sm-7 text-right">
            <button
                class="btn btn-primary"
                ng-click="guardar()"
                ng-disabled="!formChofer.$valid"
            >Guardar</button>
            <button class="btn btn-default" ng-click="cancelar()">Cancelar</button>
        </div>
    </div>
</form>