Files
SIPAIIS_WMS_JSSW/WebRoot/jsp/maintenance/libraryMaterialQuotaList.jsp

238 lines
9.0 KiB
Plaintext
Raw Normal View History

2026-01-16 14:13:44 +08:00
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
<% request.setAttribute("Maintain_Week", com.sipai.entity.maintenance.MaintainCommStr.Maintain_Week); %>
<% request.setAttribute("Maintain_TenDays", com.sipai.entity.maintenance.MaintainCommStr.Maintain_TenDays); %>
<% request.setAttribute("Maintain_Month", com.sipai.entity.maintenance.MaintainCommStr.Maintain_Month); %>
<% request.setAttribute("Maintain_Quarter", com.sipai.entity.maintenance.MaintainCommStr.Maintain_Quarter); %>
<% request.setAttribute("Maintain_HalfYear", com.sipai.entity.maintenance.MaintainCommStr.Maintain_HalfYear); %>
<% request.setAttribute("Maintain_Year", com.sipai.entity.maintenance.MaintainCommStr.Maintain_Year); %>
<% request.setAttribute("Maintain_IN", com.sipai.entity.maintenance.MaintainCommStr.Maintain_IN); %>
<% request.setAttribute("Maintain_OUT", com.sipai.entity.maintenance.MaintainCommStr.Maintain_OUT); %>
<!-- bootstrap switch -->
<link rel="stylesheet"
href="<%=request.getContextPath()%>/node_modules/bootstrap-switch/dist/css/bootstrap3/bootstrap-switch.min.css" />
<script type="text/javascript"
src="<%=request.getContextPath()%>/node_modules/bootstrap-switch/dist/js/bootstrap-switch.min.js"
charset="utf-8"></script>
<style type="text/css">
.colStyle {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
width: '13%';
}
</style>
<script type="text/javascript">
$(function () {
$("#table_MaterialQuota").bootstrapTable({ // 对应table标签的id
url: ext.contextPath + '/maintenance/libraryMaterialQuota/getList.do', // 获取表格数据的url
cache: false, // 设置为 false 禁用 AJAX 数据缓存, 默认为true
striped: true, //表格显示条纹默认为false
pagination: true, // 在表格底部显示分页组件默认false
pageList: [10, 20, 50], // 设置页面可以显示的数据条数
pageSize: 50, // 页面数据条数
pageNumber: 1, // 首页页码
// search: true,// 是否显示搜索框
sidePagination: 'server', // 设置为服务器端分页
queryParams: function (params) { // 请求服务器数据时发送的参数可以在这里添加额外的查询参数返回false则终止请求
return {
rows: params.limit, // 每页要显示的数据条数
page: params.offset / params.limit + 1, // 每页显示数据的开始页码
sort: params.sort, // 要排序的字段
order: params.order,
pid: '${param.pid}',
modelId: '${param.modelId}'
}
},
sortName: 'id', // 要排序的字段
sortOrder: 'desc', // 排序规则
/*responseHandler: function(res){
return res.result
},*/
columns: [
{
checkbox: true, // 显示一个勾选框
}, {
field: 'bizid', // 返回json数据中的name
title: '物资编号', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle',
width: '23%',
formatter: function (value, row, index) {
if(row.goods!=null){
return row.goods.id;
}
}
},
{
field: 'equname', // 返回json数据中的name
title: '物资名称', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle',
width: '23%',
formatter: function (value, row, index) {
if(row.goods!=null){
return row.goods.name;
}
}
},
{
field: 'equmodel', // 返回json数据中的name
title: '物资数量', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle',
width: '23%',
formatter: function (value, row, index) {
return row.materialNum;
},
class: 'colStyle'
},
{
field: 'year', // 返回json数据中的name
title: '物资单价', // 表格表头显示文字
align: 'center', // 左右居中
valign: 'middle',
width: '23%',
formatter: function (value, row, index) {
return row.materialCost;
}
},
{
title: "操作",
align: 'center',
valign: 'middle',
width: '8%', // 定义列的宽度单位为像素px
formatter: function (value, row, index) {
var buts = '';
buts += '<button class="btn btn-default btn-sm" onclick="dochoice(\'' + row.id + '\')" data-toggle="tooltip" title="选择"><i class="glyphicon glyphicon-ok"></i><span class="hidden-md hidden-lg"> 选择</span></button>';
buts = '<div class = "btn-group">' + buts + '</div>';
return buts;
}
}
],
onLoadSuccess: function () { //加载成功时执行
adjustBootstrapTableView("table_MaterialQuota");
},
onLoadError: function () { //加载失败时执行
console.info("加载数据失败");
}
})
})
//选择设备配件
var addfittings = function() {
var allTableData = $("#table_MaterialQuota").bootstrapTable('getData');
var goodsIds="";
$.each(allTableData,function(index,item){
if(goodsIds!=""){
goodsIds+=",";
}
goodsIds+=item.goodsId;
})
$.post(ext.contextPath + '/sparepart/subscribe/selectGoodsForSubscribeDetail.do', {goodsIds:goodsIds} , function(data) {
$("#FittingsDiv").html(data);
openModal('subDetailModal');
});
};
var doFinishSelectSubscribeDetail = function(data) {
$.post(ext.contextPath + '/maintenance/libraryMaterialQuota/importMaterial.do', {goodsIds:data,pid:'${param.pid}',modelId:'${param.modelId}'} , function(data) {
if(data.res){
$("#table_MaterialQuota").bootstrapTable('refresh');
}
},'json');
};
var deletesFun = function () {
var checkedItems = $("#table_MaterialQuota").bootstrapTable('getSelections');
var datas = "";
$.each(checkedItems, function (index, item) {
datas += item.id + ",";
});
if (datas == "") {
showAlert('d', '请先选择记录', 'mainAlertdiv');
} else {
swal({
text: "您确定要删除此记录? 删除后该项目关联的内容将被删除!",
dangerMode: true,
buttons: {
cancel: {
text: "取消",
value: null,
visible: true,
className: "btn btn-default btn-sm",
closeModal: true,
},
confirm: {
text: "确定",
value: true,
visible: true,
className: "btn btn-danger btn-sm",
closeModal: true
}
}
})
.then(function (willDelete) {
if (willDelete) {
$.post(ext.contextPath + '/maintenance/libraryMaterialQuota/deleteMaterial.do', { ids: datas }, function (data) {
if (data > 0) {
$("#table_MaterialQuota").bootstrapTable('refresh');
} else {
showAlert('d', '删除失败', 'mainAlertdiv');
}
});
}
});
}
};
</script>
<div class="modal fade" id="subModal">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span></button>
<h4 class="modal-title">详情</h4>
</div>
<div class="modal-body">
<!-- 新增界面formid强制为subForm -->
<form class="form-horizontal" id="subForm">
<!-- 界面提醒div强制id为alertDiv -->
<div id="alertDiv"></div>
<input name="id" type="hidden" value="${anticorrosiveLibrary.id}" />
<input name="unitId" type="hidden" value="${anticorrosiveLibrary.unitId}" />
<!-- 材料列表 -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">物资定额</h3>
<div class="box-tools pull-right">
<a onclick="addfittings()" class="btn btn-box-tool" data-toggle="tooltip" title="新增"><i class="glyphicon glyphicon-plus"></i></a>
<a onclick="deletesFun()" class="btn btn-box-tool" data-toggle="tooltip" title="删除"><i class="glyphicon glyphicon-trash"></i></a>
</div>
</div>
<div class="box-body ">
<table id="table_MaterialQuota" style="table-layout:fixed;"></table>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default pull-left" data-dismiss="modal">关闭</button>
<!-- <button type="button" class="btn btn-primary" onclick="dosave()" id="btn_save">保存</button> -->
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>