万材erp项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

190 lines
7.1 KiB

<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('呆滞料统计')"/>
<link th:href="@{/ajax/libs/select2/select2.css}" rel="stylesheet">
<link th:href="@{/ajax/libs/select2/select2-bootstrap.css}" rel="stylesheet">
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>物料类别:</label>
<select name="wlType"
th:with="type=${@dict.getType('ck_meterialt_type')}" class="form-control m-b">
<option value="">所有</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}"
th:value="${dict.dictValue}"></option>
</select>
</li>
<li>
<label>呆滞类型:</label>
<select name="slowMovingType" class="form-control m-b">
<option value="入库">入库</option>
<option value="出库">出库</option>
</select>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i
class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="reset()"><i
class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-success" onclick="" shiro:hasPermission="stock:warehouse:add" disabled="true">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-primary single disabled" onclick="" shiro:hasPermission="stock:warehouse:edit"
disabled="true">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="" shiro:hasPermission="stock:warehouse:remove"
disabled="true">
<i class="fa fa-remove"></i> 删除
</a>
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="stock:warehouse:export">
<i class="fa fa-download"></i> 导出
</a>
</div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer"/>
<script th:src="@{/ajax/libs/select2/select2.js}"></script>
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('stock:warehouse:edit')}]];
var removeFlag = [[${@permission.hasPermi('stock:warehouse:remove')}]];
var warehousingTypeDatas = [[${@dict.getType('dock_warehousing_purchase_type')}]];
var prefix = ctx + "stock/warehouse";
$(function () {
var options = {
url: prefix + "/getSlowMovingItemList",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "呆滞料",
columns: [{
checkbox: false
},
{
field: 'id',
title: '编号',
visible: false
},
{
field: 'wlCode',
title: '物料代码'
},
{
field: 'itemName',
title: '物料名称'
},
{
field: 'itemStandard',
title: '规格'
},
{
field: 'machineNo',
title: '机种'
},
{
field: 'stockDw',
title: '单位'
},
{
field: 'qty',
title: '数量'
},
{
field: 'warehouseName',
title: '仓库名称'
},
{
field: 'warehouseNo',
title: '仓库号'
},
{
field: 'depositPosition',
title: '存放位置',
visible: false
},
{
field: 'inClass',
title: '物料类别',
formatter: function (value, row, index) {
return $.table.selectDictLabel(warehousingTypeDatas, value);
},
visible: false
},
{
field: 'spare1',
title: '最后入库日期',
},
{
field: 'spare2',
title: '最后出库日期',
},
{
field: 'spare3',
title: '',
visible: false
},
{
field: 'spare4',
title: '',
visible: false
},
{
field: 'spare5',
title: '',
visible: false
},
{
field: 'spare6',
title: '',
visible: false
},
{
field: 'wlType',
title: '物料种类',
},
{
field: 'batchNumber',
title: '批号',
visible: false
},
{
title: '操作',
align: 'center',
formatter: function (value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="" disabled><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="" disabled><i class="fa fa-remove"></i>删除</a>');
return actions.join('');
}
}]
};
$.table.init(options);
});
function reset(){
$("select[name='wlType']").val("").select2();
$("select[name='slowMovingType']").val("出库").select2();
$.form.reset();
}
</script>
</body>
</html>