Subversion Repositories SmartDukaan

Rev

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

Rev 16284 Rev 17470
Line 344... Line 344...
344
					}
344
					}
345
					
345
					
346
					double totalAmount = 0.0;
346
					double totalAmount = 0.0;
347
			    	double totalWeight = 0.0;
347
			    	double totalWeight = 0.0;
348
			    	for(Order o:ordersList){
348
			    	for(Order o:ordersList){
349
			    		totalAmount = totalAmount + (o.getTotal_amount()-o.getGvAmount());
349
			    		totalAmount = totalAmount + (o.getTotal_amount()+o.getShippingCost()+o.getCodCharges()-o.getGvAmount());
350
			    		totalWeight = totalWeight + o.getTotal_weight();
350
			    		totalWeight = totalWeight + o.getTotal_weight();
351
			    	}
351
			    	}
352
					
352
					
353
					AwbDetails detailedAwb = new AwbDetails();
353
					AwbDetails detailedAwb = new AwbDetails();
354
 
354