|
|
|
@ -8,91 +8,47 @@
|
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
|
|
|
<form class="form-horizontal m" id="form-filereceive-edit" th:object="${tdFileReceive}">
|
|
|
|
|
<input name="receiveId" th:field="*{receiveId}" type="hidden">
|
|
|
|
|
<input name="receiveState" th:value="'1'" class="form-control" type="hidden">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">文件编号:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="fileId" th:field="*{fileId}" class="form-control" type="text">
|
|
|
|
|
<input name="fileId" readonly th:field="*{fileId}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">文件名称:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="fileName" th:field="*{fileName}" class="form-control" type="text">
|
|
|
|
|
<input name="fileName" readonly th:field="*{fileName}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">发文单位:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="provideDepart" th:field="*{provideDepart}" class="form-control" type="text">
|
|
|
|
|
<input name="provideDepart" readonly th:field="*{provideDepart}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">发文日期:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<div class="input-group date">
|
|
|
|
|
<input name="provideDate" th:value="${#dates.format(tdFileReceive.provideDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
|
|
|
|
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
|
|
|
|
</div>
|
|
|
|
|
<input name="provideDate" readonly th:value="${#dates.format(tdFileReceive.provideDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">接收单位:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="receiveDepartid" th:field="*{receiveDepartid}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">接收状态:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="receiveState" th:field="*{receiveState}" class="form-control" type="text">
|
|
|
|
|
<input name="receiveDepartid" readonly th:field="*{receiveDepartid}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">接收人员:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="receiveUserid" th:field="*{receiveUserid}" class="form-control" type="text">
|
|
|
|
|
<input name="receiveUserid" th:value="${user.userName}" readonly class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">接收日期:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<div class="input-group date">
|
|
|
|
|
<input name="receiveDate" th:value="${#dates.format(tdFileReceive.receiveDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
|
|
|
|
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">提取状态:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="extractState" th:field="*{extractState}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">提取单位:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="extractDepartid" th:field="*{extractDepartid}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">提取人员:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="extractUserid" th:field="*{extractUserid}" class="form-control" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">提取日期:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<div class="input-group date">
|
|
|
|
|
<input name="extractDate" th:value="${#dates.format(tdFileReceive.extractDate, 'yyyy-MM-dd')}" class="form-control" placeholder="yyyy-MM-dd" type="text">
|
|
|
|
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label class="col-sm-3 control-label">销毁状态:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input name="destoryState" th:field="*{destoryState}" class="form-control" type="text">
|
|
|
|
|
<input name="receiveDate" readonly class="form-control" placeholder="yyyy-MM-dd" type="text">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
@ -110,19 +66,7 @@
|
|
|
|
|
$.operate.save(prefix + "/edit", $('#form-filereceive-edit').serialize());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$("input[name='provideDate']").datetimepicker({
|
|
|
|
|
format: "yyyy-mm-dd",
|
|
|
|
|
minView: "month",
|
|
|
|
|
autoclose: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("input[name='receiveDate']").datetimepicker({
|
|
|
|
|
format: "yyyy-mm-dd",
|
|
|
|
|
minView: "month",
|
|
|
|
|
autoclose: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("input[name='receiveDate']").val($.common.dateFormat(new Date(),"yyyy-MM-dd"));
|
|
|
|
|
$("input[name='extractDate']").datetimepicker({
|
|
|
|
|
format: "yyyy-mm-dd",
|
|
|
|
|
minView: "month",
|
|
|
|
|