}
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;
}