Subversion Repositories SmartDukaan

Rev

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

Rev 22511 Rev 22512
Line 88... Line 88...
88
		String[] name = order.getCustomer_name().split(" ");
88
		String[] name = order.getCustomer_name().split(" ");
89
		ppp.setFirstname(name[0]);
89
		ppp.setFirstname(name[0]);
90
		if(name.length==2){
90
		if(name.length==2){
91
			ppp.setLastname(name[1]);
91
			ppp.setLastname(name[1]);
92
		}
92
		}
93
		ppp.setTxnid(Long.toHexString(txnId));
93
		ppp.setTxnid(paymentId + "");
94
		ppp.setCountry("India");
94
		ppp.setCountry("India");
95
 
95
 
96
		ppp.setPostActionUrl(postActionUrl);
96
		ppp.setPostActionUrl(postActionUrl);
97
		ppp.setHash(getSecureHash(paymentId, ppp));
97
		ppp.setHash(getSecureHash(paymentId, ppp));
98
 
98