| | |
| | | @RequestMapping("/getList") |
| | | public ResponseValue getLedgerList() { |
| | | LWhLedgerQry param = CommonUtil.getObjFromReq(LWhLedgerQry.class); |
| | | LWhLedgerQry query = new LWhLedgerQry(); |
| | | CommonUtil.copyProperties(param, query); |
| | | param = query; |
| | | S_user_core currentUser = this.getCurrentUser(); |
| | | if (currentUser == null) { |
| | | return ResponseValue.error("登录用户信息不存在"); |
| | |
| | | @RequestMapping("/getListExport") |
| | | public void getListExport(HttpServletResponse response) throws Exception { |
| | | LWhLedgerQry param = CommonUtil.getObjFromReq(LWhLedgerQry.class); |
| | | LWhLedgerQry query = new LWhLedgerQry(); |
| | | CommonUtil.copyProperties(param, query); |
| | | param = query; |
| | | S_user_core currentUser = this.getCurrentUser(); |
| | | if (currentUser == null) { |
| | | return; |