Examples of TaxForm


Examples of org.hoteia.qalingo.core.web.mvc.form.TaxForm

        }
        return deliveryMethodForm;
    }
   
    public TaxForm buildTaxForm(final RequestData requestData, final Tax tax) throws Exception {
        final TaxForm taxForm = new TaxForm();
        if(tax != null){
            taxForm.setId(tax.getId().toString());
            taxForm.setCode(tax.getCode());
            taxForm.setVersion(tax.getVersion());
            taxForm.setName(tax.getName());
            taxForm.setDescription(tax.getDescription());
            taxForm.setPercent("" + tax.getPercent());
        }
        return taxForm;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.