Subversion Repositories SmartDukaan

Rev

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

Rev 1946 Rev 2272
Line 92... Line 92...
92
		}
92
		}
93
		
93
		
94
		payment.setGatewayTxnDate(gatewayTxnDate);
94
		payment.setGatewayTxnDate(gatewayTxnDate);
95
		
95
		
96
		Map<String, String> attrMap = new HashMap<String, String>();
96
		Map<String, String> attrMap = new HashMap<String, String>();
-
 
97
		if(attributes != null){
97
		for(Attribute attribute : attributes){
98
			for(Attribute attribute : attributes){
98
			attrMap.put(attribute.getName(), attribute.getValue());
99
				attrMap.put(attribute.getName(), attribute.getValue());
-
 
100
			}
99
		}
101
		}
100
		
102
		
101
		paymentHandler.updatePayment(payment, attrMap);
103
		paymentHandler.updatePayment(payment, attrMap);
102
		return true;
104
		return true;
103
	}
105
	}