Package org.sprimaudi.zkspring.dto

Examples of org.sprimaudi.zkspring.dto.Validation


        lblCerita.setValue(narasi(decHarga.getValue(), intDiskon.getValue(), intDiskonDue.getValue(),
                intNormalDue.getValue(), datBayar.getValue()));
    }

    private Validation validate() {
        Validation val = new Validation();
        val.setValid(true);
        if (decHarga.getValue() == null) {
            val.add("Field harga tidak boleh kosong");
        }
        if (intDiskon.getValue() == null) {
            val.add("Field diskon tidak boleh kosong");
        }
        if (intDiskonDue.getValue() == null) {
            val.add("Field tenggat diskon tidak boleh kosong");
        }
        if (intNormalDue.getValue() == null) {
            val.add("Field tenggat waktu normal pembayaran tidak boleh kosong");
        }
        if (douSukuBunga.getValue() == null) {
            val.add("Field suku bunga tidak boleh kosong");
        }
        if (datBayar.getValue() == null) {
            val.add("Field tanggal pembayaran tidak boleh kosong");
        }
        return val;
    }
View Full Code Here


    }

    DecimalFormat df = new DecimalFormat("#,###.00");

    private void kalkulasi() {
        Validation val = validate();
        if (!val.isValid()) {
            alert("Isian form simulasi TVOM tidak valid: " + val.serializedValidation("; "));
            return;
        }
        BigDecimal harga = decHarga.getValue();
        int diskon = intDiskon.getValue();
        int diskonDue = intDiskonDue.getValue();
View Full Code Here

TOP

Related Classes of org.sprimaudi.zkspring.dto.Validation

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.