Examples of WarehouseForm


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

        }
        return ruleForm;
    }
   
    public WarehouseForm buildWarehouseForm(final RequestData requestData, final Warehouse warehouse) throws Exception {
        final WarehouseForm warehouseForm = new WarehouseForm();
        if(warehouse != null){
            warehouseForm.setId(warehouse.getId().toString());
            warehouseForm.setVersion(warehouse.getVersion());
            warehouseForm.setCode(warehouse.getCode());
            warehouseForm.setName(warehouse.getName());
            warehouseForm.setDescription(warehouse.getDescription());
        }
        return warehouseForm;
    }
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.