Subversion Repositories SmartDukaan

Rev

Rev 457 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 457 Rev 479
Line 740... Line 740...
740
		double itemPrice = 0.0;
740
		double itemPrice = 0.0;
741
		Item item;
741
		Item item;
742
		if(expEntity.getID() == 1000003){
742
		if(expEntity.getID() == 1000003){
743
			item = client.getItemByCatalogId(expEntity.getID());
743
			item = client.getItemByCatalogId(expEntity.getID());
744
		
744
		
-
 
745
		Map<Long, Double> price = null;
745
		Map<Long, Double> price = item.getPrice();
746
		//Map<Long, Double> price = item.getPrice();
746
		
-
 
747
		for(Entry<Long, Double> e: price.entrySet()){
747
		for(Entry<Long, Double> e: price.entrySet()){
748
			itemPrice = e.getValue();
748
			itemPrice = e.getValue();
749
		}
749
		}
750
		}
750
		}
751
		
751