Package clips.delegate.contract

Examples of clips.delegate.contract.PolisData


        ClientDocumentData docData = getClientDocument();
        String docDataS = docData.toString();
        html += String.format("<P><FONT COLOR=BLACK ><U>документ:</U> <FONT COLOR=GREEN>%s</FONT></P>", docDataS);

        PolisData polis = getPolisOMS();
        String sPolis;
        if (polis != null) {
            sPolis = polis.getSeries() + " " + polis.getNumber();
        } else {
            sPolis = "отсутствует";
        }
        html += String.format("<P><FONT COLOR=BLACK ><U>полис ОМС:</U> <FONT COLOR=GREEN>%s</FONT></P>", sPolis);
        html += String.format("<P><FONT COLOR=BLACK ><U>СНИЛС:</U> <FONT COLOR=GREEN>%s</FONT></P>", getSnils());
View Full Code Here


        if (getNumberEmc() != null) {
            extraFields.put("emc_code", getNumberEmc());
        }

        PolisData polis = getPolisOMS();
        if (polis != null) {
            String insurer = getPolisOMS().getInsurer().getTitle();
            String number = getPolisOMS().getSeries() + " " + getPolisOMS().getNumber();
            extraFields.put("insurer_title", insurer);
            extraFields.put("polis_number", number);
View Full Code Here

        }

        @Override
        protected PolisData init() throws Exception {
            PolisDetails cmd = getBean().getPolis();
            return new PolisData(null, null, cmd);
        }
View Full Code Here

TOP

Related Classes of clips.delegate.contract.PolisData

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.