Package org.hoteia.qalingo.core.web.mvc.form

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


        }
        return customerForm;
    }
   
    public OrderForm buildOrderForm(final RequestData requestData, final OrderCustomer order) throws Exception {
        final OrderForm orderForm = new OrderForm();
        if(order != null){
            orderForm.setId(order.getId().toString());
            orderForm.setVersion(order.getVersion());
            orderForm.setStatus(order.getStatus());
            orderForm.setOrderNum(order.getOrderNum());
            orderForm.setCustomerId(order.getCustomerId());
            orderForm.setBillingAddressId(order.getBillingAddress().getId());
            orderForm.setShippingAddressId(order.getShippingAddress().getId());
        }
        return orderForm;
    }
View Full Code Here

TOP

Related Classes of org.hoteia.qalingo.core.web.mvc.form.OrderForm

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.