Package byd.wms.task.formbeans

Examples of byd.wms.task.formbeans.TaskIPKFormBean


    public void onLoad(Map request, Map session) {
        String userId = null;

        List<Task> tasks = OperatFactory.getServiceObject(BussinessRelationServeice.class).getTasksByUserId(userId);
        TaskIPKFormBean taskIPK = new TaskIPKFormBean();
        taskIPK.setTasks(tasks);
        request.put("tasks", taskIPK);
    }
View Full Code Here


    public void queryByCondition(Map request, Map session) {
        try {
            String userId = FormParameterUtil.getString("userId", request);
            List<Task> tasks = OperatFactory.getServiceObject(BussinessRelationServeice.class).getTasksByUserId(userId);
            TaskIPKFormBean content = new TaskIPKFormBean();
            content.setTasks(tasks);
            AnnotationParser parser = new AnnotationParser(content, "ajax");
            parser.setCurrentComponents("table");
            ContentTemplate contentTemplate = (ContentTemplate) ApplicationStyle.getCurrentStyle().getTemplate(ContentTemplate.class);
            contentTemplate.setParser(parser);
            contentTemplate.setPermission(null);
View Full Code Here

TOP

Related Classes of byd.wms.task.formbeans.TaskIPKFormBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.