Package com.jpoweredcart.admin.form.report

Examples of com.jpoweredcart.admin.form.report.CustomerOrderRpt


 
  @Override
  public CustomerOrderRpt mapRow(ResultSet rs, int rowNum)
      throws SQLException {
   
    CustomerOrderRpt order = new CustomerOrderRpt();
   
    order.setCustomerId(rs.getInt("customer_id"));
    String customerName = rs.getString("firstname")+" "+
        rs.getString("lastname");
    order.setCustomerName(customerName);
    order.setEmail(rs.getString("email"));
    order.setCustomerGroup(rs.getString("customer_group"));
    order.setStatus(rs.getShort("status"));
   
    order.setOrders(rs.getInt("orders"));
    order.setProducts(rs.getInt("products"));
    order.setTotal(rs.getBigDecimal("total"));
    return order;
  }
View Full Code Here

TOP

Related Classes of com.jpoweredcart.admin.form.report.CustomerOrderRpt

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.