Subversion Repositories SmartDukaan

Rev

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

Rev 3166 Rev 3501
Line 245... Line 245...
245
                contentRow.createCell(TXN_STATUS).setCellValue(payment.getGatewayTxnStatus());
245
                contentRow.createCell(TXN_STATUS).setCellValue(payment.getGatewayTxnStatus());
246
                contentRow.createCell(REF_CODE).setCellValue(payment.getReferenceCode());
246
                contentRow.createCell(REF_CODE).setCellValue(payment.getReferenceCode());
247
                calendar.setTimeInMillis(payment.getInitTimestamp());
247
                calendar.setTimeInMillis(payment.getInitTimestamp());
248
                contentRow.createCell(TXN_TIME).setCellValue(formatter.format(calendar.getTime()));
248
                contentRow.createCell(TXN_TIME).setCellValue(formatter.format(calendar.getTime()));
249
 
249
 
250
                txnId = tClient.getTransaction(payment.getMerchantTxnId()).getId();
250
                txnId = payment.getMerchantTxnId();
251
                orders = tClient.getOrdersForTransaction(txnId, payment.getUserId());
251
                orders = tClient.getOrdersForTransaction(txnId, payment.getUserId());
252
                List<LineItem> lineItems;
252
                List<LineItem> lineItems;
253
 
253
 
254
                String address = "";
254
                String address = "";
255
                
255