reabrirProcessoEdit.html
3.02 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
<div id="editReabrirProcesso" class="page-content clearfix" ng-controller="ReabrirProcessoController">
<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.REABRIR</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();" >
<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="reabrirProcessoForm">
<p>
<small>( <span class="red">*</span> ) <translate>LABEL.CAMPOS_OBRIGATORIOS</translate></small>
</p>
<fieldset>
<legend>
<translate>ECM.LABEL.DADOS_REABERTURA</translate>
</legend>
</fieldset>
<div class="row">
<div class="col-sm-8">
</div>
</div>
<div class="row">
<div class="col-sm-4">
<auto-complete ng-id="reabrirProcesso.processo" ng-disabled='reabrirProcesso.id' ng-obrigatorio='true' ng-label="ECM.LABEL.PROTOCOLO" ng-model="reabrirProcesso.processo" form='reabrirProcessoForm' ng-find="findAutoCompleteProcesso(value)"
ng-item="item.nup" />
</div>
</div>
<div class="row" ng-if="reabrirProcesso.id">
<div class="col-md-4">
<label-select ng-id="reabrirProcesso.status" ng-model="reabrirProcesso.status" ng-disabled="reabrirProcesso.validado" ng-label="ECM.LABEL.STATUS" ng-obrigatorio='reabrirProcesso.id' form="reabrirProcessoForm" ng-list="statusList"
ng-custom-options="dominioStatus.originalElement as dominioStatus.descricao for dominioStatus" track-by="track by dominioStatus.id" ng-disabled='!edit && reabrirProcesso.id'> </label-select>
</div>
</div>
<div class="row" ng-if="reabrirProcesso.id && reabrirProcesso.status.codigo == 3">
<div class="col-sm-8">
<label-text-area ng-id="reabrirProcesso.justificativaRejeicao" ng-disabled="reabrirProcesso.validado" ng-typ="text" ng-obrigatorio='!edit && reabrirProcesso.id' ng-label="ECM.LABEL.JUSTIFICATIVAREJEICAO" form='reabrirProcessoForm' ng-model="reabrirProcesso.justificativaRejeicao"
ng-custom-maxlength='255' />
</div>
</div>
<div class="row">
<div class="col-sm-8">
<label-text-area ng-id="reabrirProcesso.justificativaSolicitacao" ng-disabled='reabrirProcesso.id' ng-typ="text" ng-obrigatorio='true' ng-label="ECM.LABEL.MOTIVO" form='reabrirProcessoForm' ng-model="reabrirProcesso.justificativaSolicitacao"
ng-custom-maxlength='255' />
</div>
</div>
</form>
</div>
<!-- .page-content -->