Commit 1e30fd1c90de71b3e511deccf9299b54459dd612
1 parent
06390dd11d
Exists in
master
correciones modal
Showing
1 changed file
with
30 additions
and
20 deletions
Show diff stats
src/views/foca-modal-crear-hoja-ruta.html
1 | 1 | <div class="modal-header"> |
2 | - <h4>-en desarrollo</h4> | |
3 | 2 | <h4>Confeccionar hoja de ruta</h4> |
4 | - Hoja de ruta Nº <strong ng-bind="[sucursal, numero] | comprobante"></strong> | |
5 | - Fecha: | |
6 | - <input | |
7 | - type="date" | |
8 | - ng-model="now" | |
9 | - class="form-control form-control-sm col-3 float-right" | |
10 | - /> | |
11 | - <br> | |
3 | + <div class="row"> | |
4 | + <div class="col-6"> | |
5 | + <span>Hoja de ruta Nº </span> | |
6 | + <strong ng-bind="[sucursal, numero] | comprobante"></strong> | |
7 | + </div> | |
8 | + <div class="col-6 row"> | |
9 | + <label class="col-3 mt-2">Fecha:</label> | |
10 | + <input | |
11 | + type="text" | |
12 | + readonly | |
13 | + ng-model="now" | |
14 | + uib-datepicker-popup="dd/MM/yyyy" | |
15 | + show-button-bar="false" | |
16 | + is-open="datepickerOpen" | |
17 | + on-open-focus="false" | |
18 | + ng-focus="datepickerOpen = true" | |
19 | + datepicker-options="dateOptions" | |
20 | + class="form-control col-8"/> | |
21 | + </div> | |
22 | + </div> | |
12 | 23 | </div> |
13 | 24 | <div class="modal-body"> |
14 | 25 | <form class="row" name="formHojaRuta"> |
15 | - | |
16 | 26 | |
17 | - <div class="col-2 form-group"> | |
18 | - <label>Vehículo</label> | |
27 | + <div class="col-2"> | |
28 | + <label>Transportista</label> | |
19 | 29 | </div> |
20 | - <div class="col-4"> | |
30 | + <div class="col-4"> | |
21 | 31 | <input |
22 | - class="form-control" | |
23 | - readonly | |
24 | - ng-model="vehiculo.tractor" | |
32 | + class="form-control" | |
33 | + readonly | |
34 | + ng-model="vehiculo.transportista.NOM" | |
25 | 35 | > |
26 | 36 | </div> |
27 | - <div class="col-2"> | |
28 | - <label>Transportista</label> | |
37 | + <div class="col-2 form-group"> | |
38 | + <label>Unidad</label> | |
29 | 39 | </div> |
30 | 40 | <div class="col-4"> |
31 | 41 | <input |
32 | 42 | class="form-control" |
33 | 43 | readonly |
34 | - ng-model="vehiculo.transportista.NOM" | |
44 | + ng-model="vehiculo.tractor" | |
35 | 45 | > |
36 | 46 | </div> |
37 | 47 | <div class="col-2 form-group"> |
... | ... | @@ -71,7 +81,7 @@ |
71 | 81 | <tr> |
72 | 82 | <th>Remito Nº</th> |
73 | 83 | <th>Cliente</th> |
74 | - <th>Domicilio</th> | |
84 | + <th>Domicilio de entrega</th> | |
75 | 85 | </tr> |
76 | 86 | </thead> |
77 | 87 | <tbody> |