多余的日志打印
parent
3330b6ac3b
commit
da5b1e39d7
|
@ -171,7 +171,6 @@ public class ProjectController extends BaseController {
|
|||
*/
|
||||
@RequestMapping("/budgetEdit")
|
||||
public String budget(@RequestParam("id") int id, Map<String, Object> model) {
|
||||
try {
|
||||
Project project = projectService.getProject(id);
|
||||
model.put("project", project);
|
||||
//采购类型
|
||||
|
@ -205,10 +204,6 @@ public class ProjectController extends BaseController {
|
|||
model.put("cashFlowBean", projectBudgetService.getCashFlowBean(project, projectBudgetPlanDetails));
|
||||
//freemarker可以利用的静态方法
|
||||
model.put("Utils", FreeMarkerUtil.fromStaticPackage("cn.palmte.work.utils.Utils"));
|
||||
} catch (Exception e) {
|
||||
logger.error(e.getMessage(), e);
|
||||
throw e;
|
||||
}
|
||||
return "admin/project_budget_edit";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue