|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<title>分步表单</title>
|
|
|
|
|
<meta name="renderer" content="webkit">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
|
<link rel="stylesheet" href="/static/lib/layui-v2.6.3/css/layui.css" media="all">
|
|
|
|
|
<link rel="stylesheet" href="/static/css/public.css" media="all">
|
|
|
|
|
<link rel="stylesheet" href="/static/js/lay-module/step-lay/step.css" media="all">
|
|
|
|
|
<link rel="stylesheet" href="/static/lib/font-awesome-4.7.0/css/font-awesome.min.css" media="all">
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="layuimini-container">
|
|
|
|
|
<div class="layuimini-main">
|
|
|
|
|
|
|
|
|
|
<div class="layui-fluid">
|
|
|
|
|
<div class="layui-card">
|
|
|
|
|
<div class="layui-card-body" style="padding-top: 0px;">
|
|
|
|
|
<div id="stepForm" lay-filter="stepForm" style="margin: 0 auto;">
|
|
|
|
|
<div style="margin-top: 30px">
|
|
|
|
|
<button th:style="'display:'+${display}" onclick="downloadExcel()">下载</button>
|
|
|
|
|
|
|
|
|
|
<table id="demo" class="layui-table"
|
|
|
|
|
style="margin: 0 auto;max-width: 800px;">
|
|
|
|
|
<colgroup>
|
|
|
|
|
<col width="150">
|
|
|
|
|
<col width="200">
|
|
|
|
|
</colgroup>
|
|
|
|
|
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>申请编号</td>
|
|
|
|
|
<td id="applicationId" th:text="${record.getCode()}">123456</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<input style="display: none" id="id" th:value="${record.getId()}">
|
|
|
|
|
<tr th:each="recordMin,iterStar: ${recordMinList}">
|
|
|
|
|
<td>物料名称</td>
|
|
|
|
|
<td>
|
|
|
|
|
<button th:text="${recordMin.getMname()}" th:value="${recordMin.getId()}" onclick="selectThisMinRecord(this)"></button>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>是否为转移申请</td>
|
|
|
|
|
<td id="isTransfer" th:text="${record.getIstransfer() == 2 ?'否':'是'} ">外芯仓库</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>仓库名称</td>
|
|
|
|
|
<td id="depositoryName" th:text="${record.getDepositoryName()}">外芯仓库</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr th:style="'display:'+${adisplay}">
|
|
|
|
|
<td>部门</td>
|
|
|
|
|
<td id="adminorg" th:text="${record.getAdminorgName()}">部门</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr th:style="'display:'+${cdisplay}">
|
|
|
|
|
<td>施工单位</td>
|
|
|
|
|
<td id="constructUnitId" th:text="${record.getConstructionUnitName()}">施工单位</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>处理人</td>
|
|
|
|
|
<td th:text="${outDisposer}"></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>所处库位</td>
|
|
|
|
|
<td id="placeCode" th:text="${record.getPCode()}">0000</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>数量</td>
|
|
|
|
|
<td id="quantity" th:text="${record.getQuantity()}">409</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr th:style="'display:'+${display}">
|
|
|
|
|
<td>金额</td>
|
|
|
|
|
<td id="price" th:text="${record.getPrice()}">2016-11-28</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>状态</td>
|
|
|
|
|
<td id="state" th:text="${record.getState()}">2016-11-28</td>
|
|
|
|
|
<td id="pass" th:text="${record.getPass()}" style="display:none;"></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>申请人</td>
|
|
|
|
|
<td id="applicantName" th:text="${record.getApplicantName()}">2016-11-28</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>请求提交时间</td>
|
|
|
|
|
<td id="applicantTime" th:text="${record.getApplicantTime()}">2016-11-28</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td>申请备注</td>
|
|
|
|
|
<td id="applyRemarks" th:text="${record.getApplyRemark()}">备注</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>部门负责人</td>
|
|
|
|
|
<td id="departmentheadName" th:text="${record.getDepartmentheadName()}">部门负责人</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr id="departmentheadMessageT" style="display: none">
|
|
|
|
|
<td>部门负责人备注</td>
|
|
|
|
|
<td id="departmentheadMessage" th:text="${record.getDepartmentheadMessage()}">2016-11-28</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr id="departmentheadTimeT" style="display: none">
|
|
|
|
|
<td>部门负责人审核时间</td>
|
|
|
|
|
<td id="departmentheadTime" th:text="${record.getDepartmentheadTime().equals('1970-01-01 08:00:00')?'':record.getDepartmentheadTime()}">2016-11-28</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<input id="depositoryManagerPass" style="display: none" th:value="${record.getDepositoryManagerPass()}">
|
|
|
|
|
|
|
|
|
|
<tr id="depositoryManagerNameT" style="display: none">
|
|
|
|
|
<td th:text="${depositoryManagerText}"></td>
|
|
|
|
|
|
|
|
|
|
<td id="depositoryManagerName" th:text="${record.getDepositoryManagerName()}"></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr id="depositoryManagerNameMessageT" style="display: none">
|
|
|
|
|
<td th:text="${depositoryManagerText}+'备注'"></td>
|
|
|
|
|
<td id="depositoryManagerNameMessage" th:text="${record.getDepositoryManagerMessage()}">2016-11-28</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr id="depositoryManagerNameTimeT" style="display: none">
|
|
|
|
|
<td th:text="${depositoryManagerText}+'审核时间'"></td>
|
|
|
|
|
<td id="depositoryManagerNameTime" th:text="${record.getDepositoryManagerTime().equals('1970-01-01 08:00:00')?'':record.getDepositoryManagerTime()}">2016-11-28</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<script src="/static/lib/layui-v2.6.3/layui.js" charset="utf-8"></script>
|
|
|
|
|
<script src="/static/js/lay-config.js?v=1.0.4" charset="utf-8"></script>
|
|
|
|
|
<script>
|
|
|
|
|
function selectThisMinRecord(obj){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
function downloadExcel(){
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
layui.use(['form', 'step'], function () {
|
|
|
|
|
var $ = layui.$,
|
|
|
|
|
form = layui.form,
|
|
|
|
|
step = layui.step;
|
|
|
|
|
step.render({
|
|
|
|
|
elem: '#stepForm',
|
|
|
|
|
filter: 'stepForm',
|
|
|
|
|
width: '100%', //设置容器宽度
|
|
|
|
|
stepWidth: '750px',
|
|
|
|
|
height: '100%',
|
|
|
|
|
// number:number,
|
|
|
|
|
// position: position,
|
|
|
|
|
stepItems: []
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
let departmentheadTime=$("#departmentheadTime").text();
|
|
|
|
|
let depositoryManagerNameTime=$("#depositoryManagerNameTime").text();
|
|
|
|
|
let depositoryManagerPass = $("#depositoryManagerPass").val();
|
|
|
|
|
|
|
|
|
|
if (departmentheadTime!=null&&departmentheadTime!==""){
|
|
|
|
|
$("#departmentheadTimeT").show();
|
|
|
|
|
$("#departmentheadMessageT").show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (depositoryManagerNameTime!=null&&depositoryManagerNameTime!=="" && depositoryManagerPass !== "4"){
|
|
|
|
|
$("#depositoryManagerNameT").show();
|
|
|
|
|
$("#depositoryManagerNameTimeT").show();
|
|
|
|
|
$("#depositoryManagerNameMessageT").show();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
selectThisMinRecord = function (obj) {
|
|
|
|
|
// console.log(obj)
|
|
|
|
|
var minId = obj.value;
|
|
|
|
|
layer.open({
|
|
|
|
|
type: 2,
|
|
|
|
|
title: '详情',
|
|
|
|
|
skin: 'layui-layer-rim',
|
|
|
|
|
maxmin: true,
|
|
|
|
|
shadeClose: true, //点击遮罩关闭层
|
|
|
|
|
area: ['100%', '100%'],
|
|
|
|
|
move : '.layui-layer-title',
|
|
|
|
|
fixed:false,
|
|
|
|
|
content: '/form_step_lookByminRecordOut?id='+minId,
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
downloadExcel = function () {
|
|
|
|
|
let id = $("#id").val();
|
|
|
|
|
window.open("/depositoryRecord/downloadOutRecord?id="+id,"_self");
|
|
|
|
|
};
|
|
|
|
|
$('body').on('click', '[data-refresh]', function () {
|
|
|
|
|
location.reload();
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|