Commit 494551ebd6f4effe7da5f4a219b139aaac0820bd

Authored by Jose Pinto
1 parent 3600827e0b
Exists in master

agrego codigo de chofer

Showing 2 changed files with 25 additions and 23 deletions   Show diff stats
... ... @@ -7,7 +7,7 @@
7 7 "gulp-pre-commit": "gulp pre-commit",
8 8 "compile": "gulp uglify",
9 9 "postinstall": "npm run compile && gulp clean-post-install",
10   - "install-dev": "npm install -D angular angular-ladda bootstrap font-awesome gulp gulp-angular-templatecache gulp-clean gulp-concat gulp-connect gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-uglify jasmine-core jquery jshint ladda@1.0.6 pre-commit pump ui-bootstrap4 && npm i -D git+https://debo.suite.repo/modulos-npm/foca-directivas.git"
  10 + "install-dev": "npm install -D angular angular-ladda bootstrap font-awesome gulp gulp-angular-templatecache gulp-clean gulp-concat gulp-connect gulp-htmlmin gulp-jshint gulp-rename gulp-replace gulp-uglify jasmine-core jquery jshint ladda@1.0.6 pre-commit pump ui-bootstrap4 && npm i -D git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git"
11 11 },
12 12 "pre-commit": [
13 13 "gulp-pre-commit"
... ... @@ -33,30 +33,30 @@
33 33 "gulp-uglify": "^3.0.1",
34 34 "jquery": "^3.3.1",
35 35 "pump": "^3.0.0",
36   - "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas"
  36 + "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas"
37 37 },
38 38 "devDependencies": {
39   - "angular": "^1.7.5",
40   - "angular-ladda": "^0.4.3",
41   - "bootstrap": "^4.1.3",
42   - "foca-directivas": "git+https://debo.suite.repo/modulos-npm/foca-directivas.git",
43   - "font-awesome": "^4.7.0",
44   - "gulp": "^3.9.1",
45   - "gulp-angular-templatecache": "^2.2.5",
46   - "gulp-clean": "^0.4.0",
47   - "gulp-concat": "^2.6.1",
48   - "gulp-connect": "^5.6.1",
49   - "gulp-htmlmin": "^5.0.1",
50   - "gulp-jshint": "^2.1.0",
51   - "gulp-rename": "^1.4.0",
52   - "gulp-replace": "^1.0.0",
53   - "gulp-uglify": "^3.0.1",
54   - "jasmine-core": "^3.3.0",
55   - "jquery": "^3.3.1",
56   - "jshint": "^2.9.6",
  39 + "angular": "1.7.5",
  40 + "angular-ladda": "0.4.3",
  41 + "bootstrap": "4.1.3",
  42 + "foca-directivas": "git+ssh://git@debonline.dyndns.org:npm/foca-directivas.git",
  43 + "font-awesome": "4.7.0",
  44 + "gulp": "3.9.1",
  45 + "gulp-angular-templatecache": "2.2.5",
  46 + "gulp-clean": "0.4.0",
  47 + "gulp-concat": "2.6.1",
  48 + "gulp-connect": "5.6.1",
  49 + "gulp-htmlmin": "5.0.1",
  50 + "gulp-jshint": "2.1.0",
  51 + "gulp-rename": "1.4.0",
  52 + "gulp-replace": "1.0.0",
  53 + "gulp-uglify": "3.0.1",
  54 + "jasmine-core": "3.3.0",
  55 + "jquery": "3.3.1",
  56 + "jshint": "2.9.6",
57 57 "ladda": "1.0.6",
58   - "pre-commit": "^1.2.2",
59   - "pump": "^3.0.0",
60   - "ui-bootstrap4": "^3.0.5"
  58 + "pre-commit": "1.2.2",
  59 + "pump": "3.0.0",
  60 + "ui-bootstrap4": "3.0.5"
61 61 }
62 62 }
src/views/modal-chofer.html
... ... @@ -29,6 +29,7 @@
29 29 <table ng-show="primerBusqueda" class="table table-striped table-sm">
30 30 <thead>
31 31 <tr>
  32 + <th>Código</th>
32 33 <th>Nombre</th>
33 34 <th>DNI</th>
34 35 <th>Teléfono</th>
... ... @@ -44,6 +45,7 @@
44 45 <tr class="selectable"
45 46 ng-repeat="(key,chofer) in currentPageChoferes"
46 47 ng-click="select(chofer)">
  48 + <td ng-bind="chofer.id"></td>
47 49 <td ng-bind="chofer.nombre"></td>
48 50 <td ng-bind="chofer.dni"></td>
49 51 <td ng-bind="chofer.telefono"></td>