Package com.gcrm.domain

Examples of com.gcrm.domain.DocumentCategory


            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();
            }

            DocumentSubCategory subCategory = document.getSub_category();
            if (subCategory != null) {
                subCategoryID = subCategory.getId();
View Full Code Here


            status = documentStatusService.getEntityById(DocumentStatus.class,
                    statusID);
        }
        document.setStatus(status);

        DocumentCategory category = null;
        if (categoryID != null) {
            category = documentCategoryService.getEntityById(
                    DocumentCategory.class, categoryID);
        }
        document.setCategory(category);
View Full Code Here

            if (publishDate != null) {
                publishDateS = publishDate.toString();
            } else {
                publishDateS = "";
            }
            DocumentCategory category = instance.getCategory();
            categoryName = CommonUtil.getOptionLabel(category);
            User user = instance.getAssigned_to();
            if (user != null) {
                assignedTo = user.getName();
            } else {
View Full Code Here

TOP

Related Classes of com.gcrm.domain.DocumentCategory

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.