Package beans.directory.simple.entities

Examples of beans.directory.simple.entities.Excemption


                else {
                    data.sex = Character.MIN_VALUE;
                }
                data.bornDate = born;

                Excemption ex = fc.getExcemption1();
                if (ex == null) {
                    ex = fc.getExcemption2();
                }
                if (ex != null) {
                    data.exemptionID = ex.getExtKey();
                }

                ClientDocument doc = client.getClientDocument();
                if (doc != null) {
                    ClientDocumentType type = doc.getDoctype();
View Full Code Here


            query.setParameter("pathronymic", cl.getPathronymic());
            query.setParameter("snils", cl.getSnils());
            List<FacilityClient> fcList = query.getResultList();
            if (!fcList.isEmpty()) {
                FacilityClient fc = fcList.get(0);
                Excemption ex = fc.getExcemption1();
                if (ex == null) {
                    ex = fc.getExcemption2();
                }
                if (ex != null) {
                    data.exemptionID = ex.getExtKey();
                }
            }

            Polis polisOMI = clientPolisMap.get(cl.getId());
            if (polisOMI != null) {
View Full Code Here

TOP

Related Classes of beans.directory.simple.entities.Excemption

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.