Examples of ProductViewedRpt


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

  }
 
  @Override
  public ProductViewedRpt mapRow(ResultSet rs, int rowNum)
      throws SQLException {
    ProductViewedRpt pvr = new ProductViewedRpt();
    pvr.setName(rs.getString("name"));
    pvr.setModel(rs.getString("model"));
    int viewed = rs.getInt("viewed");
    pvr.setViewed(viewed);
    float percent = ((float)viewed)/totalProductViews*100;
    pvr.setPercent(percent);
    return pvr;
  }
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.