|
@ -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> |
|
@ -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',}, |
|
|