mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
Added tags to clients page
This commit is contained in:
@ -122,6 +122,10 @@ biomed.ClientEditCtrl = function($scope, $routeParams, Clients) {
|
||||
updatePms();
|
||||
});
|
||||
|
||||
$scope.tags = Clients.tags($routeParams, function() {
|
||||
|
||||
});
|
||||
|
||||
$scope.identification = createController();
|
||||
$scope.address = createController();
|
||||
$scope.primaryContact = createContactController(0);
|
||||
|
@ -9,7 +9,8 @@ angular.module('biomed.services', [])
|
||||
create: { method: 'POST', params: {} },
|
||||
update: { method: 'POST', params: { id: 0} },
|
||||
destroy: { method: 'DELETE', params: { id: 0 } },
|
||||
workorders: { method: 'GET', params: { id: 0, cmd: 'workorders' }, isArray: true }
|
||||
workorders: { method: 'GET', params: { id: 0, cmd: 'workorders' }, isArray: true },
|
||||
tags: { method: 'GET', params: { id: 0, cmd: 'tags' }, isArray: true }
|
||||
});
|
||||
})
|
||||
.factory("Workorders", function($resource) {
|
||||
|
@ -285,4 +285,37 @@
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="tab-pane" title="Tags">
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
<table class="biomed-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width: 10%">Tag</th>
|
||||
<th style="width: 10%">Device ID</th>
|
||||
<th style="width: 15%">Device</th>
|
||||
<th style="width: 15%">Make</th>
|
||||
<th style="width: 15%">Model</th>
|
||||
<th style="width: 15%">Serial No.</th>
|
||||
<th style="width: 20%">Purchase Date</th>
|
||||
<th style="width: 20%">Warranty Exp.</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-hide="tags.length"><td colspan="4" class="table-message">There is no information to display.</td></tr>
|
||||
<tr ng-repeat="tag in tags">
|
||||
<td>{{tag._id}}</td>
|
||||
<td>{{tag.data.clientDeviceId}}</td>
|
||||
<td>{{tag.data.device}}</td>
|
||||
<td>{{tag.data.make}}</td>
|
||||
<td>{{tag.data.model}}</td>
|
||||
<td>{{tag.data.serialNumber}}</td>
|
||||
<td>{{tag.data.purchaseDate|date}}</td>
|
||||
<td>{{tag.data.deviceWarrantyExpiration|date}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user