132 lines
5.4 KiB
HTML
132 lines
5.4 KiB
HTML
<!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('EBS现有量查询')"/>
|
|
<link th:href="@{/ruoyi/css/ry-ui-custom.css?v=4.7.3}" rel="stylesheet"/>
|
|
</head>
|
|
<body class="gray-bg">
|
|
<div class="container-div">
|
|
<div class="row" style="height: auto !important;">
|
|
<div class="col-sm-12 pr0 pl0 shadow">
|
|
<div class="ibox float-e-margins ">
|
|
<div class="ibox-title">
|
|
<div class="col-sm-11 pl0 pr0">
|
|
<h8>EBS现有量</h8>
|
|
</div>
|
|
<div class="col-sm-1 pl20">
|
|
<a class="btn btn-success btn-xs" href="javascript:void(0)" onclick="$.table.refresh()">刷新</a>
|
|
<a class="btn btn-ctr-color-blue btn-xs" href="javascript:void(0)" onclick="$.table.exportExcel()">导出</a>
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content ibox-content-1" style="margin: 0;height: 150px">
|
|
<div class="btn-group-sm" id="toolbar" role="group">
|
|
<form id="formId">
|
|
<div class="select-list">
|
|
<ul>
|
|
<li>
|
|
选择子库:
|
|
<select name="subInventory" th:with="type=${@dict.getType('sub_inventory')}"
|
|
onchange="$.table.search('formId')">
|
|
<!-- <option text="" value="" selected></option>-->
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}"
|
|
th:value="${dict.dictValue}"></option>
|
|
</select>
|
|
</li>
|
|
<li>
|
|
物料编码:
|
|
<input type="text" name="goodsId"/>
|
|
</li>
|
|
<li>
|
|
<a class="btn btn-primary btn-rounded btn-sm"
|
|
onclick="$.table.search('formId')"><i
|
|
class="fa fa-search"></i> 搜索</a>
|
|
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset('formId')"><i
|
|
class="fa fa-refresh"></i> 重置</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="col-sm-12 select-table table-striped">
|
|
<table id="bootstrap-table"></table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<th:block th:include="include :: footer"/>
|
|
<script th:inline="javascript">
|
|
var prefix = ctx + "business/ebsConfirm";
|
|
|
|
/**
|
|
* 表格初始化
|
|
*/
|
|
$(function () {
|
|
var options = {
|
|
url: prefix + "/ebsConfirm/main",
|
|
exportUrl: prefix + "/ebsConfirm/export",
|
|
modalName: "EBS现有量",
|
|
showSearch: false,
|
|
showToggle: false,
|
|
showRefresh: false,
|
|
showColumns: true,
|
|
columns: [
|
|
{
|
|
field: 'goodsId',
|
|
title: '物料编码',
|
|
sortable: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
field: 'goodsName',
|
|
title: '物料描述',
|
|
align: 'center',
|
|
formatter: function (value, row, index) {
|
|
return $.table.tooltip(value);
|
|
}
|
|
},
|
|
{
|
|
field: 'subInventory',
|
|
title: 'EBS子库',
|
|
align: 'center'
|
|
},
|
|
{
|
|
field: 'ebsNum',
|
|
title: 'EBS现有量',
|
|
sortable: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
field: 'wmsNum',
|
|
title: 'WMS库存',
|
|
sortable: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
field: 'diffNum',
|
|
title: '差异数量',
|
|
sortable: true,
|
|
align: 'center'
|
|
},
|
|
{
|
|
field: 'sts',
|
|
title: '状态',
|
|
align: 'center',
|
|
formatter: function (value, row, index) {
|
|
var actions = [];
|
|
if (value == "1") {
|
|
actions.push('<a class="btn btn-success btn-xs">平衡</a>');
|
|
} else {
|
|
actions.push('<a class="btn btn-danger btn-xs">不平衡</a>');
|
|
}
|
|
return actions.join('');
|
|
}
|
|
}
|
|
]
|
|
};
|
|
$.table.init(options);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |