Package org.jallinone.sales.documents.java

Examples of org.jallinone.sales.documents.java.ItemSoldToOtherCustomersVO


          java.util.List rows = ((VOListResponse)res).getRows();
          if (rows.size()==0)
              labelSuggstmt.setText("");
          else {
            String aux = "";
            ItemSoldToOtherCustomersVO vo = null;
            for(int i=0;i<rows.size();i++) {
              vo = (ItemSoldToOtherCustomersVO)rows.get(i);
              aux += vo.getCustomersNr().intValue()+" "+vo.getItemDescriptionSY10()+"\n";
            }
            aux = aux.substring(0,aux.length()-1);
            labelSuggstmt.setText(
              ClientSettings.getInstance().getResources().getResource("customers that have bought these items also bought")+"\n"+
              aux
View Full Code Here

TOP

Related Classes of org.jallinone.sales.documents.java.ItemSoldToOtherCustomersVO

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.