万材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.
 
 
 
 

288 lines
13 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>
<input type="text" name="wlCode"/>
</li>
<li>
<label>物料名称:</label>
<input type="text" name="itemName"/>
</li>
<!-- <li>-->
<!-- <label>规格:</label>-->
<!-- <input type="text" name="itemStandard"/>-->
<!-- </li>-->
<li>
<label>机种:</label>
<input type="text" name="machineNo"/>
</li>
<!-- <li>-->
<!-- <label>单位:</label>-->
<!-- <input type="text" name="stockDw"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>数量:</label>-->
<!-- <input type="text" name="qty"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>仓库名称:</label>-->
<!-- <input type="text" name="warehouseName"/>-->
<!-- </li>-->
<li>
<label>仓库名称:</label>
<select name="warehouseName" class="form-control m-b">
<option value="">所有</option>
<!-- <option value="-1">代码生成请选择字典属性</option>-->
</select>
</li>
<!-- <li>-->
<!-- <label>仓库号:</label>-->
<!-- <input type="text" name="warehouseNo"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>存放位置:</label>-->
<!-- <input type="text" name="depositPosition"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>物料类别:</label>-->
<!-- <input type="text" name="inClass"/>-->
<!-- </li>-->
<li>
<label>物料类别:</label>
<select name="inClass"
th:with="type=${@dict.getType('sys_wl_class')}" 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>-->
<!-- <input type="text" name="spare1"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>:</label>-->
<!-- <input type="text" name="spare2"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>:</label>-->
<!-- <input type="text" name="spare3"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>:</label>-->
<!-- <input type="text" name="spare4"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>:</label>-->
<!-- <input type="text" name="spare5"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>:</label>-->
<!-- <input type="text" name="spare6"/>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>物料种类:</label>-->
<!-- <select name="wlType">-->
<!-- <option value="">所有</option>-->
<!-- <option value="-1">代码生成请选择字典属性</option>-->
<!-- </select>-->
<!-- </li>-->
<!-- <li>-->
<!-- <label>批号:</label>-->
<!-- <input type="text" name="batchNumber"/>-->
<!-- </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 + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "库存",
columns: [{
checkbox: true
},
{
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);
}
},
{
field: 'spare1',
title: '',
visible: false
},
{
field: 'spare2',
title: '',
visible: false
},
{
field: 'spare3',
title: '',
visible: false
},
{
field: 'spare4',
title: '',
visible: false
},
{
field: 'spare5',
title: '',
visible: false
},
{
field: 'spare6',
title: '',
visible: false
},
{
field: 'wlType',
title: '物料种类',
visible: false
},
{
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);
});
//获取仓库名
$.ajax({
url: ctx + "stock/stockInfo/all",
type: "post",
dataType: "json",
success: function (resp) {
if (resp.code === 0) {
let data = resp.data;
//alert(data);
for (let i in data) {
$("select[name='warehouseName']").append("<option value='" + data[i].stockname + "'>" + data[i].stockname + "</option>");
}
} else {
$.modal.msgError(resp.msg);
}
},
error: function () {
$.modal.msgError("后台出错啦!");
}
})
function reset(){
$("select[name='warehouseName']").val("").select2();
$("select[name='inClass']").val("").select2();
$.form.reset()
}
</script>
</body>
</html>