solicitacaoReaberturaProcessoEdit.html
3.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<div id="editSolicitacaoReaberturaProcesso" class="page-content clearfix" ng-controller="SolicitacaoReaberturaProcessoController">
<div class="bar-buttons-action fixed">
<div class="row">
<div class="col-sm-8 text-left">
<button class="btn btn-clear" ng-click="saveOrUpdate()" ng-show="edit">
<i class="fa fa-save green"></i>
<translate>ECM.LABEL.SOLICITAR_REABERTURA</translate>
</button>
<button class="btn btn-clear" ng-click="resetForm()" ng-show="edit">
<i class="fa fa-eraser yellow-dark"></i>
<translate>LABEL.LIMPAR</translate>
</button>
<button class="btn btn-clear" ng-click="$showPageSearchWorkspace(workspace); atualizaPaginaPesquisa();">
<i class="fa fa-search"></i>
<translate>LABEL.PESQUISAR</translate>
</button>
<button class="btn btn-clear" ng-click="visualizarProcesso();" ng-show="solicitacaoReaberturaProcesso.processo">
<i class="fa fa-eye "></i>
<translate>ECM.LABEL.VISUALIZAR_PROCESSO</translate>
</button>
</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>
<form name="solicitacaoReaberturaProcessoForm">
<p>
<small>( <span class="red">*</span> ) <translate>LABEL.CAMPOS_OBRIGATORIOS</translate></small>
</p>
<fieldset>
<legend>
<translate>ECM.LABEL.DADOS_SOLICITACAO</translate>
</legend>
</fieldset>
<div class="row">
<div class="col-sm-8">
<auto-complete ng-id="solicitacaoReaberturaProcesso.processo" ng-disabled='!edit' ng-obrigatorio='true' ng-label="ECM.LABEL.PROTOCOLO" ng-model="solicitacaoReaberturaProcesso.processo" form='solicitacaoReaberturaProcessoForm' ng-find="findAutoCompleteProcesso(value)"
ng-item="item.nup" />
</div>
</div>
<div class="row">
<div class="col-sm-8">
<label-text-area ng-id="solicitacaoReaberturaProcesso.justificativaSolicitacao" ng-disabled="!edit" ng-typ="text" ng-obrigatorio='true' ng-label="ECM.LABEL.JUSTIFICATIVA" form='solicitacaoReaberturaProcessoForm' ng-model="solicitacaoReaberturaProcesso.justificativaSolicitacao"
ng-custom-maxlength='255' />
</div>
</div>
<div ng-if= "solicitacaoReaberturaProcesso.id">
<div class="row" >
<div class="col-sm-8">
<label-input ng-id="status" ng-label="ECM.LABEL.STATUS" ng-model="status" form="solicitacaoReaberturaProcessoForm" ng-obrigatorio="true" ng-custom-maxlength="255" ng-type="text" ng-disabled="solicitacaoReaberturaProcesso.id" />
</div>
</div>
<div class="row" ng-if="solicitacaoReaberturaProcesso.id && solicitacaoReaberturaProcesso.status.codigo == 3">
<div class="col-sm-8">
<label-text-area ng-id="solicitacaoReaberturaProcesso.justificativaRejeicao" ng-disabled="solicitacaoReaberturaProcesso.id" ng-typ="text" ng-obrigatorio='false' ng-label="ECM.LABEL.JUSTIFICATIVAREJEICAO" form='solicitacaoReaberturaProcessoForm' ng-model="solicitacaoReaberturaProcesso.justificativaRejeicao"
ng-custom-maxlength='255' />
</div>
</div>
</div>
</form>
</div>
<!-- .page-content -->