cancelarDocumento.html
1.95 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
<div ng-controller="CancelamentoDocumentoGedController as cancelamentoDocumentoGedController">
<form name="cancelamentoDocumentoGedController.cancelamentoDocumentoGedForm" novalidate autocomplete="off">
<div id="widget-cancelarDocumento" class="widget-box margin-bottom">
<div class="widget-header">
<h2 class="widget-title">
<translate>ECM.LABEL.CANCELARDOCUMENTO</translate>
</h2>
<div class="widget-toolbar">
<a href="#void" ng-click="closeWidget('widget-cancelarDocumento')"> <i class="fa fa-close"></i>
</a>
</div>
</div>
<div class="widget-main clearfix">
<div id="cancelarDocumento" class="page-content clearfix">
<p>
<small>( <span class="red">*</span> ) <translate>LABEL.CAMPOS_OBRIGATORIOS</translate></small>
</p>
<div class="row">
<div class="col-sm-8">
<auto-complete ng-id="cancelamentoDocumentoGed.solicitante" ng-disabled='!edit' ng-obrigatorio='true' ng-label="ECM.LABEL.SOLICITANTE" ng-model="cancelamentoDocumentoGed.solicitante" form='cancelamentoDocumentoGedForm' ng-find="findAutoCompleteSolicitante(value)"
ng-item="item.nome" />
</div>
</div>
<div class="row">
<div class="col-sm-8">
<label-text-area ng-id="cancelamentoDocumentoGed.justificativa" ng-disabled="!edit" ng-typ="text" ng-obrigatorio='true' ng-label="ECM.LABEL.JUSTIFICATIVA" form='cancelamentoDocumentoGedForm' ng-model="cancelamentoDocumentoGed.justificativa"
ng-custom-maxlength='255' />
</div>
</div>
<div class="row" ng-show='edit'>
<div class="col-md-12">
<button class="btn btn-sm btn-primary" ng-click="cancelar()" type="button">
<translate>LABEL.SALVAR</translate>
</button>
<button class="btn btn-sm btn-primary" ng-click="closeWidget('widget-cancelarDocumento')" type="button">
<translate>LABEL.CANCELAR</translate>
</button>
</div>
</div>
</div>
</div>
</div>
</form>
</div>