Package org.opencustomer.db.dao.crm.custom

Examples of org.opencustomer.db.dao.crm.custom.PersonListDAO


        String paramCompanyName = form.getCompanyName();
        String paramFirstName = form.getFirstName();
        String paramLastName = form.getLastName();

        PersonListDAO dao = new PersonListDAO();

        count = dao.countList(paramFirstName, paramLastName, null, null, null, null, paramCompanyName, null, isUserExcluded(), ignoredPersons, user);
        if (count < page.getFirstEntry())
            page.setPage(1);

        if (count > 0)
            list = dao.getList(paramFirstName, paramLastName, null, null, null, null, paramCompanyName, null, isUserExcluded(), ignoredPersons, sort, page, user);
        else
            list = new ArrayList<PersonListVO>();

        ScrollBean scroll = new ScrollBean();
        scroll.setCount(count);
View Full Code Here

TOP

Related Classes of org.opencustomer.db.dao.crm.custom.PersonListDAO

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.