Subversion Repositories SmartDukaan

Rev

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

Rev 20961 Rev 20962
Line 19... Line 19...
19
		for(Order o : orders) {
19
		for(Order o : orders) {
20
			this.totalAmount += o.getTotal_amount();
20
			this.totalAmount += o.getTotal_amount();
21
			this.totalWeightInKg += o.getTotal_weight();
21
			this.totalWeightInKg += o.getTotal_weight();
22
			this.netPayable += o.getNet_payable_amount();
22
			this.netPayable += o.getNet_payable_amount();
23
			this.shippingCharges += o.getShippingCost();
23
			this.shippingCharges += o.getShippingCost();
-
 
24
			this.totalPcs += o.getLineitems().get(0).getQuantity();
24
		}
25
		}
25
		this.order = orders.get(0);
26
		this.order = orders.get(0);
26
		determineCod();
27
		determineCod();
27
 
28
 
28
	}
29
	}