104 lines
4.5 KiB
Plaintext
104 lines
4.5 KiB
Plaintext
<%@ page language="java" pageEncoding="UTF-8" %>
|
|
<%@page import="com.sipai.entity.process.ProcessAdjustment" %>
|
|
<% request.setAttribute("Status_Start", ProcessAdjustment.Status_Start); %>
|
|
<% request.setAttribute("Status_Finish", ProcessAdjustment.Status_Finish); %>
|
|
|
|
<!-- processAdjustmentContentList.jsp -->
|
|
<jsp:include page="/jsp/process/processAdjustmentContentList.jsp"></jsp:include>
|
|
<%--工时分配--%>
|
|
<script type="text/javascript" src="<%=request.getContextPath()%>/JS/workorder/workorderAchievement.js" charset="utf-8"></script>
|
|
|
|
<style type="text/css">
|
|
|
|
</style>
|
|
<script type="text/javascript">
|
|
|
|
//加载调整内容 - view
|
|
getContentView('${processAdjustment.id}', '${processAdjustment.status}');
|
|
//加载资料
|
|
getContentForFile('${processAdjustment.id}', '${processAdjustment.status}');
|
|
//加载绩效table - view
|
|
getWorkAchievementsView('${processAdjustment.id}', '${processAdjustment.unitId}');
|
|
|
|
</script>
|
|
<div class="modal fade" id="subModal">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
|
|
<div id="mainAlertdiv2"></div>
|
|
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title">查看</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<!-- 新增界面formid强制为subForm -->
|
|
<form class="form-horizontal" id="subForm" autocomplete="off">
|
|
<!-- 界面提醒div强制id为alertDiv -->
|
|
<div id="alertDiv"></div>
|
|
<input type="hidden" name="id" id="id" value="${processAdjustment.id}"/>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">工单号</label>
|
|
<div class="col-sm-4">
|
|
<p class="form-control-static">${processAdjustment.jobNumber}</p>
|
|
</div>
|
|
<label class="col-sm-2 control-label">申请人</label>
|
|
<div class="col-sm-4">
|
|
<p class="form-control-static">${processAdjustment.user.caption}</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">工艺调整类型</label>
|
|
<div class="col-sm-4">
|
|
<p class="form-control-static">${processAdjustment.processAdjustmentType.name}</p>
|
|
</div>
|
|
<label class="col-sm-2 control-label">厂区</label>
|
|
<div class="col-sm-4">
|
|
<p class="form-control-static">${processAdjustment.company.sname}</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">备注</label>
|
|
<div class="col-sm-10">
|
|
<p class="form-control-static">${processAdjustment.remarks}</p>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div class="box box-primary">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">调整内容</h3>
|
|
</div>
|
|
<div class="box-body ">
|
|
<table id="table_content" style="table-layout:fixed;"></table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box box-primary">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">参与人员绩效</h3>
|
|
</div>
|
|
<div class="box-body ">
|
|
<table id="table_achievements" style="table-layout:fixed;"></table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box box-primary">
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title">相关资料</h3>
|
|
</div>
|
|
<div class="box-body ">
|
|
<table id="table_contentFile" style="table-layout:fixed;"></table>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |