Subversion Repositories SmartDukaan

Rev

Rev 4671 | Rev 7422 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4671 Rev 5387
Line 89... Line 89...
89
				productDescription.append(" " + order.getModelName());
89
				productDescription.append(" " + order.getModelName());
90
			if(order.getColor()!=null)
90
			if(order.getColor()!=null)
91
				productDescription.append(" " + order.getColor());		
91
				productDescription.append(" " + order.getColor());		
92
			if(order.getDealText()!=null)
92
			if(order.getDealText()!=null)
93
					productDescription.append(" (" + order.getDealText() + ")");
93
					productDescription.append(" (" + order.getDealText() + ")");
-
 
94
			if(order.getQuantity() > 1)
-
 
95
				productDescription.append(" (" + order.getQuantity() + ")");
94
            return productDescription.toString();
96
            return productDescription.toString();
95
        }
97
        }
96
    };
98
    };
97
    
99
    
98
    private TextColumn<Order> creationDateColumn = new TextColumn<Order>() {
100
    private TextColumn<Order> creationDateColumn = new TextColumn<Order>() {