zhangsiqi
4 months ago
5 changed files with 273 additions and 0 deletions
@ -0,0 +1,40 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
||||
|
<head> |
||||
|
<th:block th:include="include :: header('副总经理审核')" /> |
||||
|
<th:block th:include="include :: datetimepicker-css" /> |
||||
|
</head> |
||||
|
<body class="white-bg"> |
||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
||||
|
<form class="form-horizontal m" id="form-requisitioning-fzjl-audit" th:object="${formData}"> |
||||
|
|
||||
|
</form> |
||||
|
</div> |
||||
|
<th:block th:include="include :: footer" /> |
||||
|
<th:block th:include="include :: datetimepicker-js" /> |
||||
|
<script th:inline="javascript"> |
||||
|
var prefix = ctx + "system/requisitioning"; |
||||
|
$("#form-requisitioning-fzjl-audit").validate({focusCleanup: true}); |
||||
|
|
||||
|
function submitHandler() { |
||||
|
if ($.validate.form()) { |
||||
|
$.operate.save(prefix + "/complete/"+taskId, $('#form-requisitioning-fzjl-audit').serialize()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
function getSelections(){ |
||||
|
$.ajax({ |
||||
|
url: ctx + "system/requisitioning/getEmpUserName", |
||||
|
type: "get", |
||||
|
dataType: "json", |
||||
|
success: function (data) { |
||||
|
$("select[name='deptName']").append($('<option></option>').val(data.deptName).html(data.deptName)); |
||||
|
$("select[name='evectionBy']").append($('<option></option>').val(data.userName).html(data.userName)); |
||||
|
$("select[name='postName']").append($('<option></option>').val(data.postName).html(data.postName)); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,40 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
||||
|
<head> |
||||
|
<th:block th:include="include :: header('修改出差单')" /> |
||||
|
<th:block th:include="include :: datetimepicker-css" /> |
||||
|
</head> |
||||
|
<body class="white-bg"> |
||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
||||
|
<form class="form-horizontal m" id="form-requisitioning-modifyApply" th:object="${formData}"> |
||||
|
</form> |
||||
|
</div> |
||||
|
<th:block th:include="include :: footer" /> |
||||
|
<th:block th:include="include :: datetimepicker-js" /> |
||||
|
<script th:inline="javascript"> |
||||
|
var prefix = ctx + "system/requisitioning"; |
||||
|
$("#form-requisitioning-modifyApply").validate({focusCleanup: true}); |
||||
|
|
||||
|
function submitHandler() { |
||||
|
if ($.validate.form()) { |
||||
|
$.operate.save(prefix + "/complete/"+taskId, $('#form-requisitioning-modifyApply').serialize()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
|
||||
|
function getSelections(){ |
||||
|
$.ajax({ |
||||
|
url: ctx + "system/requisitioning/getEmpUserName", |
||||
|
type: "get", |
||||
|
dataType: "json", |
||||
|
success: function (data) { |
||||
|
$("select[name='deptName']").append($('<option></option>').val(data.deptName).html(data.deptName)); |
||||
|
$("select[name='evectionBy']").append($('<option></option>').val(data.userName).html(data.userName)); |
||||
|
$("select[name='postName']").append($('<option></option>').val(data.postName).html(data.postName)); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,111 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
||||
|
<head> |
||||
|
<th:block th:include="include :: header('请购人上级经理审核出差单')" /> |
||||
|
<th:block th:include="include :: datetimepicker-css" /> |
||||
|
</head> |
||||
|
<body class="white-bg"> |
||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
||||
|
<form class="form-horizontal m" id="form-requisitioning-qgjl-audit" th:object="${formData}"> |
||||
|
<input name="requisitioningId" th:field="*{requisitioningId}" type="hidden"> |
||||
|
<input name="taskId" th:field="*{taskId}" type="hidden"> |
||||
|
<input name="taskName" th:field="*{taskName}" type="hidden"> |
||||
|
<input name="instanceId" th:field="*{instanceId}" type="hidden"> |
||||
|
<input name="instanceType" th:field="*{instanceType}" type="hidden"> |
||||
|
<!--驳回调整允许更新内容--> |
||||
|
<input type="hidden" name="saveEntity" value="true" /> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label">申请人:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<input name="applyUserName" th:field="*{applyUserName}" class="form-control" type="text" readonly> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label">申请时间:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<div class="input-group date"> |
||||
|
<span class="input-group-addon"><i class="fa fa-calendar"></i></span> |
||||
|
<input name="applyTime" th:value="${#dates.format(formData.applyTime, 'yyyy-MM-dd HH:mm')}" class="form-control" type="text" disabled> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label">标题:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<input name="title" th:field="*{applyTitle}" class="form-control" type="text" readonly> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="form-group" hidden="hidden"> |
||||
|
<label class="col-sm-3 control-label">请购单号:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<input name="code" th:field="*{requisitioningCode}" class="form-control" type="text"> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label">部门:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<select name="deptName" th:field="*{deptName}" class="form-control"></select> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label">岗位:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<select name="postName" th:field="*{postName}" class="form-control"></select> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label">姓名:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<select name="userName" th:field="*{userName}" class="form-control"></select> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="form-group"> |
||||
|
<label class="col-sm-3 control-label">关联单号:</label> |
||||
|
<div class="col-sm-8"> |
||||
|
<input name="correlationCode" th:field="*{correlationCode}" class="form-control" type="text"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</form> |
||||
|
<div class="container"> |
||||
|
<div class="form-row"> |
||||
|
<div class="btn-group-sm" id="toolbar" role="group"> |
||||
|
<span>选择报价信息</span> |
||||
|
<a class="btn btn-success" onclick="insertRow()"> |
||||
|
<i class="fa fa-plus"></i> 添加物料 |
||||
|
</a> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="row"> |
||||
|
<div class="col-sm-12 select-table table-striped"> |
||||
|
<table id="bootstrap-sub-table-requisitionChild"></table> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<th:block th:include="include :: footer" /> |
||||
|
<th:block th:include="include :: datetimepicker-js" /> |
||||
|
<script th:inline="javascript"> |
||||
|
var prefix = ctx + "system/requisitioning"; |
||||
|
var taskId = [[${taskId}]]; |
||||
|
$("#form-requisitioning-qgjl-audit").validate({focusCleanup: true}); |
||||
|
function submitHandler() { |
||||
|
if ($.validate.form()) { |
||||
|
$.operate.save(prefix + "/complete/"+taskId, $('#form-requisitioning-qgjl-audit').serialize()); |
||||
|
} |
||||
|
} |
||||
|
function getSelections(){ |
||||
|
$.ajax({ |
||||
|
url: ctx + "system/requisitioning/getEmpUserName", |
||||
|
type: "get", |
||||
|
dataType: "json", |
||||
|
success: function (data) { |
||||
|
$("select[name='deptName']").append($('<option></option>').val(data.deptName).html(data.deptName)); |
||||
|
$("select[name='evectionBy']").append($('<option></option>').val(data.userName).html(data.userName)); |
||||
|
$("select[name='postName']").append($('<option></option>').val(data.postName).html(data.postName)); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,42 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
||||
|
<head> |
||||
|
<th:block th:include="include :: header('修改出差单')" /> |
||||
|
<th:block th:include="include :: datetimepicker-css" /> |
||||
|
</head> |
||||
|
<body class="white-bg"> |
||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
||||
|
<form class="form-horizontal m" id="form-requisitioning-qgzg-audit" th:object="${formData}"> |
||||
|
|
||||
|
</form> |
||||
|
</div> |
||||
|
</div> |
||||
|
<th:block th:include="include :: footer" /> |
||||
|
<th:block th:include="include :: datetimepicker-js" /> |
||||
|
<script th:inline="javascript"> |
||||
|
var prefix = ctx + "system/baseEvectionForm"; |
||||
|
$("#form-requisitioning-qgzg-audit").validate({focusCleanup: true}); |
||||
|
|
||||
|
function submitHandler() { |
||||
|
if ($.validate.form()) { |
||||
|
$.operate.save(prefix + "/complete/"+taskId, $('#form-requisitioning-qgzg-audit').serialize()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
function getSelections(){ |
||||
|
$.ajax({ |
||||
|
url: ctx + "system/requisitioning/getEmpUserName", |
||||
|
type: "get", |
||||
|
dataType: "json", |
||||
|
success: function (data) { |
||||
|
$("select[name='deptName']").append($('<option></option>').val(data.deptName).html(data.deptName)); |
||||
|
$("select[name='evectionBy']").append($('<option></option>').val(data.userName).html(data.userName)); |
||||
|
$("select[name='postName']").append($('<option></option>').val(data.postName).html(data.postName)); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,40 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
||||
|
<head> |
||||
|
<th:block th:include="include :: header('总助/总经理审核')" /> |
||||
|
<th:block th:include="include :: datetimepicker-css" /> |
||||
|
</head> |
||||
|
<body class="white-bg"> |
||||
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
||||
|
<form class="form-horizontal m" id="form-requisitioning-zozj-audit" th:object="${formData}"> |
||||
|
|
||||
|
</form> |
||||
|
</div> |
||||
|
<th:block th:include="include :: footer" /> |
||||
|
<th:block th:include="include :: datetimepicker-js" /> |
||||
|
<script th:inline="javascript"> |
||||
|
var prefix = ctx + "system/requisitioning"; |
||||
|
$("#form-requisitioning-zozj-audit").validate({focusCleanup: true}); |
||||
|
|
||||
|
function submitHandler() { |
||||
|
if ($.validate.form()) { |
||||
|
$.operate.save(prefix + "/complete/"+taskId, $('#form-requisitioning-zozj-audit').serialize()); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
function getSelections(){ |
||||
|
$.ajax({ |
||||
|
url: ctx + "system/requisitioning/getEmpUserName", |
||||
|
type: "get", |
||||
|
dataType: "json", |
||||
|
success: function (data) { |
||||
|
$("select[name='deptName']").append($('<option></option>').val(data.deptName).html(data.deptName)); |
||||
|
$("select[name='evectionBy']").append($('<option></option>').val(data.userName).html(data.userName)); |
||||
|
$("select[name='postName']").append($('<option></option>').val(data.postName).html(data.postName)); |
||||
|
} |
||||
|
}); |
||||
|
|
||||
|
} |
||||
|
</script> |
||||
|
</body> |
||||
|
</html> |
Loading…
Reference in new issue