wms_snN7pp_nantong/wms-admin/target/classes/templates/business/goods/goods.html
2024-08-21 10:13:13 +08:00

170 lines
6.5 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('商品资料列表')" />
</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="goodsId"/>
</li>
<li>
<label>物料名称:</label>
<input type="text" name="goodsName"/>
</li>
<li>
<label>物料分类:</label>
<input type="text" name="goodsTypeId"/>
</li>
<li>
<label>规格:</label>
<input type="text" name="specification"/>
</li>
<li>
<label>条形码:</label>
<input type="text" name="barcode"/>
</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="$.form.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="$.operate.add()" shiro:hasPermission="business:goods:add">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="business:goods:edit">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="business:goods:remove">
<i class="fa fa-remove"></i> 删除
</a>
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="business:goods:export">
<i class="fa fa-download"></i> 导出
</a>
</div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table" width="1500px"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('business:goods:edit')}]];
var removeFlag = [[${@permission.hasPermi('business:goods:remove')}]];
var prefix = ctx + "business/goods";
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "商品资料",
columns: [{
checkbox: true
},
{
field: 'goodsId',
title: '物料编码'
},
{
field: 'goodsName',
title: '物料名称'
},
{
field: 'goodsTypeId',
title: '物料分类'
},
{
field: 'specification',
title: '规格'
},
{
field: 'barcode',
title: '条形码'
},
{
field: 'glength',
title: '长'
},
{
field: 'gwidth',
title: '宽'
},
{
field: 'gheight',
title: '高'
},
{
field: 'gvolume',
title: '容积'
},
{
field: 'scaleUnit',
title: '重量单位 '
},
{
field: 'unit',
title: '物料单位 '
},
{
field: 'warnUp',
title: '库存上限'
},
{
field: 'warnDown',
title: '库存下限'
},
{
field: 'period',
title: '保质期'
},
{
field: 'periodunit',
title: '保质期单位'
},
{
field: 'recheckdays',
title: '复检天数'
},
{
field: 'remark',
title: '备注'
},
{
field: 'updateMan',
title: '更新人'
},
{
field: 'updateDate',
title: '更新时间'
},
{
title: '操作',
align: 'center',
width: '200px',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.goodsId + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.goodsId + '\')"><i class="fa fa-remove"></i>删除</a>');
return actions.join('');
}
}]
};
$.table.init(options);
});
</script>
</body>
</html>