Package com.gcrm.domain

Examples of com.gcrm.domain.DocumentStatus


     * @return the SUCCESS result
     */
    public String get() throws Exception {
        if (this.getId() != null) {
            document = baseService.getEntityById(Document.class, this.getId());
            DocumentStatus status = document.getStatus();
            if (status != null) {
                statusID = status.getId();
            }
            DocumentCategory category = document.getCategory();
            if (category != null) {
                categoryID = category.getId();
            }
View Full Code Here


            document.setOpportunities(originalDocument.getOpportunities());
            document.setCreated_on(originalDocument.getCreated_on());
            document.setCreated_by(originalDocument.getCreated_by());
        }

        DocumentStatus status = null;
        if (statusID != null) {
            status = documentStatusService.getEntityById(DocumentStatus.class,
                    statusID);
        }
        document.setStatus(status);
View Full Code Here

TOP

Related Classes of com.gcrm.domain.DocumentStatus

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.