Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. StringBuffer Att = new StringBuffer();
  2. BigDecimal qty = m_line.getMovementQty();
  3. int MMqty = qty.intValue();
  4.  
  5. for(int i =0; i< MMqty;i++){
  6.  
  7.  
  8. Att.append(m_masi.getSerNo(true)).append(",");
  9. }
  10.  
  11. String Ser= Att.toString();
  12. fieldSerNo.setText(Ser);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement