contratoList.html
2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<div class="page-content" id="searchContrato" ng-controller="ContratoListController">
<div class="bar-buttons-action fixed">
<div class="row">
<div class="col-sm-8 text-left">
<button class="btn btn-clear" ng-click="$showPageEditWorkspace(workspace); resetForm();">
<i class="fa fa-plus-circle yellow-dark"></i>
<translate>LABEL.CADASTRAR</translate>
</button>
<button class="btn btn-clear" ng-click="abrirVisualizar(false);">
<i class="fa fa-search blue"></i>
<translate>LABEL.VISUALIZAR</translate>
</button>
<button class="btn btn-clear" ng-click="abrirVisualizar(true);">
<i class="fa fa-pencil blue"></i>
<translate>LABEL.EDITAR</translate>
</button>
<button class="btn btn-clear" ng-click="exportarCSV(filterCriteria, headers, 'ContratoRepository', 'LABEL.CONTRATO')" type="button">
<i class="fa fa-file-excel-o"></i> <translate>LABEL.EXPORTAR_CSV</translate>
</button>
<button class="btn btn-clear" ng-click="showListRascunho(workspace.name)" type="button">
<i class="fa fa-list"></i> <translate>PORTAL.LABEL.SHOW_RASCUNHO</translate>
</button>
<!-- <button class="btn btn-clear" ng-click="remove();">
<i class="fa fa-times red"></i>
<translate>LABEL.REMOVER</translate>
</button> -->
<button
title="{{$translate.instant('LABEL.GERAR_TERMO_CONTRATO')}}"
alt="{{$translate.instant('LABEL.GERAR_TERMO_CONTRATO')}}"
class="btn btn-clear" type="button" ng-disabled="false"
ng-click="gerarRelatorioTermoContrato();" >
<i class="fa fa-print"></i>
<translate>LABEL.GERAR_TERMO_CONTRATO</translate>
</button>
<span class="divider-vertical"></span>
<filtros ng-filter="filterCriteria" ng-workspace="workspace"></filtros>
</div><!-- .col -->
<div class="col-sm-4 text-right">
<favorito/>
<help-button workspace="workspace" />
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .bar-buttons-action -->
<breadcrumb ng-workspace="workspace"></breadcrumb>
<list-view ng-lista="contratosList" ng-repository="ContratoRepository" ng-use-custom-remove="false" ng-headers="headers" ng-filter-criteria="filterCriteria" ng-item-selecionado="contratoChecked"></list-view>
</div><!-- .page-content -->