|
@ -48,7 +48,7 @@ |
|
|
</li> |
|
|
</li> |
|
|
<li> |
|
|
<li> |
|
|
<label>财务审核状态:</label> |
|
|
<label>财务审核状态:</label> |
|
|
<select name="financeAuditStatus" th:with="type=${@dict.getType('auditStatus')}"> |
|
|
<select name="financeAuditStatus" th:with="type=${@dict.getType('financial_expense_status')}"> |
|
|
<option value="">所有</option> |
|
|
<option value="">所有</option> |
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" |
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" |
|
|
th:value="${dict.dictValue}"></option> |
|
|
th:value="${dict.dictValue}"></option> |
|
@ -91,9 +91,9 @@ |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="btn-group-sm" id="toolbar" role="group"> |
|
|
<div class="btn-group-sm" id="toolbar" role="group"> |
|
|
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:baseExpense:add"> |
|
|
<!-- <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:baseExpense:add">--> |
|
|
<i class="fa fa-plus"></i> 添加 |
|
|
<!-- <i class="fa fa-plus"></i> 添加--> |
|
|
</a> |
|
|
<!-- </a>--> |
|
|
</div> |
|
|
</div> |
|
|
<div class="col-sm-12 select-table table-striped"> |
|
|
<div class="col-sm-12 select-table table-striped"> |
|
|
<table id="bootstrap-table" style="white-space: nowrap"></table> |
|
|
<table id="bootstrap-table" style="white-space: nowrap"></table> |
|
@ -112,6 +112,7 @@ |
|
|
var loginName = [[${@permission.getPrincipalProperty('loginName')}]]; |
|
|
var loginName = [[${@permission.getPrincipalProperty('loginName')}]]; |
|
|
var auditStatusData = [[${@dict.getType('auditStatus')}]]; |
|
|
var auditStatusData = [[${@dict.getType('auditStatus')}]]; |
|
|
var expenseMethodData = [[${@dict.getType('sys_base_expense_method')}]]; |
|
|
var expenseMethodData = [[${@dict.getType('sys_base_expense_method')}]]; |
|
|
|
|
|
var finacialExpenseStatusDatas = [[${@dict.getType('financial_expense_status')}]]; |
|
|
var prefix = ctx + "system/baseExpense"; |
|
|
var prefix = ctx + "system/baseExpense"; |
|
|
|
|
|
|
|
|
$(function() { |
|
|
$(function() { |
|
@ -162,7 +163,7 @@ |
|
|
}, |
|
|
}, |
|
|
{title: '财务审核状态',field: 'financeAuditStatus',align: 'center', |
|
|
{title: '财务审核状态',field: 'financeAuditStatus',align: 'center', |
|
|
formatter: function(value, row, index) { |
|
|
formatter: function(value, row, index) { |
|
|
return $.table.selectDictLabel(auditStatusData, value); |
|
|
return $.table.selectDictLabel(finacialExpenseStatusDatas, value); |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
{title: '报销单编号',field: 'expenseCode',align: 'center',}, |
|
|
{title: '报销单编号',field: 'expenseCode',align: 'center',}, |
|
|