Package org.salamanca.reportes.factura

Examples of org.salamanca.reportes.factura.Factura


        String recargopagofueradetermino = this.jLabelRecargo.getText();

        String recargoFormaPago = "$" + this.jLabelRecargoFormaPago.getText();
        String totalapagar = this.jLabelTotalAPagar.getText();

        Factura factura = new Factura(fecha,
                                      alumno.getApellido() + "," +
                                      alumno.getNombre(),
                                      alumno.getDomicilio(),
                                      strRecargoFormaPago,
                                      cuotaBasica.getCurso().getNombre(),
                                      cuotaBasica.getConcepto(), importeCuota,
                                      conceptodescuento, "-" + importedescuento,
                                      recargopagofueradetermino,
                                      recargoFormaPago, totalapagar,alumno.getDni());

        factura.display();
        this.setVisible(false);

    }
View Full Code Here

TOP

Related Classes of org.salamanca.reportes.factura.Factura

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.