| Line 691... |
Line 691... |
| 691 |
|
691 |
|
| 692 |
@PutMapping(value = "/updatePaymentTransaction")
|
692 |
@PutMapping(value = "/updatePaymentTransaction")
|
| 693 |
public String updateTransactionDetails(HttpServletRequest request, @RequestParam String referenceType,
|
693 |
public String updateTransactionDetails(HttpServletRequest request, @RequestParam String referenceType,
|
| 694 |
@RequestParam int fofoId, @RequestParam int referenceId,
|
694 |
@RequestParam int fofoId, @RequestParam int referenceId,
|
| 695 |
@RequestBody PartnerOptionsAndItemAmountModel partnerOptionsAndItemAmountModel,
|
695 |
@RequestBody PartnerOptionsAndItemAmountModel partnerOptionsAndItemAmountModel,
|
| 696 |
@RequestParam int totalAmount, Model model) throws Exception {
|
696 |
@RequestParam float totalAmount, Model model) throws Exception {
|
| 697 |
|
697 |
|
| 698 |
List<PaymentOptionTransactionModel> paymentOptionTransactionModels = partnerOptionsAndItemAmountModel
|
698 |
List<PaymentOptionTransactionModel> paymentOptionTransactionModels = partnerOptionsAndItemAmountModel
|
| 699 |
.getPaymentOptionTransactionModel();
|
699 |
.getPaymentOptionTransactionModel();
|
| 700 |
LOGGER.info(paymentOptionTransactionModels);
|
700 |
LOGGER.info(paymentOptionTransactionModels);
|
| 701 |
FofoOrder fofoOrder = fofoOrderRepository.selectByFofoIdAndOrderId(fofoId, referenceId);
|
701 |
FofoOrder fofoOrder = fofoOrderRepository.selectByFofoIdAndOrderId(fofoId, referenceId);
|