| Line 177... |
Line 177... |
| 177 |
}
|
177 |
}
|
| 178 |
this.transactionClient.changeTransactionStatus(Long.valueOf(transactionId), TransactionStatus.AUTHORIZED,
|
178 |
this.transactionClient.changeTransactionStatus(Long.valueOf(transactionId), TransactionStatus.AUTHORIZED,
|
| 179 |
"Payment received for the order", PickUpType.valueOf(pickUp).getValue(), OrderType.valueOf(orderType),
|
179 |
"Payment received for the order", PickUpType.valueOf(pickUp).getValue(), OrderType.valueOf(orderType),
|
| 180 |
OrderSource.WEBSITE);
|
180 |
OrderSource.WEBSITE);
|
| 181 |
this.transactionClient.changeTransactionStatus(Long.valueOf(transactionId), TransactionStatus.IN_PROCESS,
|
181 |
this.transactionClient.changeTransactionStatus(Long.valueOf(transactionId), TransactionStatus.IN_PROCESS,
|
| 182 |
"RTGS Payment accepted", PickUpType.valueOf(pickUp).getValue(), OrderType.valueOf(orderType),
|
182 |
"Paid fully through wallet", PickUpType.valueOf(pickUp).getValue(), OrderType.valueOf(orderType),
|
| 183 |
OrderSource.WEBSITE);
|
183 |
OrderSource.WEBSITE);
|
| 184 |
log.info("Successfully created transaction: " + transactionId + " for amount: " + amount);
|
184 |
log.info("Successfully created transaction: " + transactionId + " for amount: " + amount);
|
| 185 |
this.transactionClient.markOrderForRegisteredGstInvoice(Collections.singletonList(Long.valueOf(transactionId)));
|
185 |
this.transactionClient.markOrderForRegisteredGstInvoice(Collections.singletonList(Long.valueOf(transactionId)));
|
| 186 |
hasError = false;
|
186 |
hasError = false;
|
| 187 |
}
|
187 |
}
|