Compare commits
6 Commits
1acb4040dd
...
348b4066eb
Author | SHA1 | Date |
---|---|---|
zhangsiqi | 348b4066eb | 3 months ago |
zhangsiqi | 3e3b780a9b | 3 months ago |
zhangsiqi | 7f8fec8a00 | 3 months ago |
zhangsiqi | 607d2c263e | 3 months ago |
zhangsiqi | 1d4ce029e2 | 3 months ago |
zhangsiqi | c0900d1381 | 3 months ago |
27 changed files with 633 additions and 260 deletions
Binary file not shown.
@ -0,0 +1,40 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
|||
<head> |
|||
<th:block th:include="include :: header('新增借方明细')" /> |
|||
</head> |
|||
<body class="white-bg"> |
|||
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
|||
<form class="form-horizontal m" id="form-receivables-addDebit" th:object="${debit}"> |
|||
<input name="financialReceivablesId" th:field="*{financialReceivablesId}" type="hidden"> |
|||
<div class="form-group"> |
|||
<label class="col-sm-3 control-label">借方科目:</label> |
|||
<div class="col-sm-8"> |
|||
<select name="debitAccount" class="form-control" th:with="dict=${@dict.getType('receivables_debit_entry')}"> |
|||
<option th:each="dict : ${dict}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> |
|||
</select> |
|||
</div> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label class="col-sm-3 control-label">借方开户银行类型:</label> |
|||
<div class="col-sm-8"> |
|||
<select name="debitBank" class="form-control" th:with="dict=${@dict.getType('receivables_bank')}"> |
|||
<option th:each="dict : ${dict}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option> |
|||
</select> |
|||
</div> |
|||
</div> |
|||
</form> |
|||
</div> |
|||
<th:block th:include="include :: footer" /> |
|||
<script th:inline="javascript"> |
|||
var prefix = ctx + "financial/receivables" |
|||
$("#form-receivables-addDebit").validate({focusCleanup: true}); |
|||
|
|||
function submitHandler() { |
|||
if ($.validate.form()) { |
|||
$.operate.save(prefix + "/addDebitEntiry", $('#form-receivables-addDebit').serialize()); |
|||
} |
|||
} |
|||
</script> |
|||
</body> |
|||
</html> |
Loading…
Reference in new issue