BankRecurringViewModel.swift 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. //
  2. // BankRecurringViewModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 29/11/21.
  6. //
  7. import Foundation
  8. import Alamofire
  9. class BankRecurringViewModel {
  10. var delegate: BankRecurringViewProtocol?
  11. var bankRecurring = [BankRecurringModel]()
  12. //Fixed deposit TDR API call
  13. func getRecurringDeposit(depositAmount:String, annualInterestRate:String, year:String, month:String, amountDepositFrequency:String, compoundFrequency:String, depositDate:String) {
  14. if let delegate = delegate {
  15. delegate.startLoader()
  16. let url = ApiUrl.BASE_URL + ApiUrl.GET_RECURRING_DEPOSIT
  17. var amountDeposit = String()
  18. switch amountDepositFrequency {
  19. case "Monthly":
  20. amountDeposit = "12"
  21. case "Bi-Monthly":
  22. amountDeposit = "6"
  23. case "Quarterly":
  24. amountDeposit = "4"
  25. case "Triannually":
  26. amountDeposit = "3"
  27. case "Half Yearly":
  28. amountDeposit = "2"
  29. case "Annually":
  30. amountDeposit = "1"
  31. default:
  32. amountDeposit = ""
  33. }
  34. var compound = String()
  35. switch compoundFrequency {
  36. case "Monthly":
  37. compound = "12"
  38. case "Bi-Monthly":
  39. compound = "6"
  40. case "Quarterly":
  41. compound = "4"
  42. case "Triannually":
  43. compound = "3"
  44. case "Half Yearly":
  45. compound = "2"
  46. case "Annually":
  47. compound = "1"
  48. default:
  49. compound = ""
  50. }
  51. let parameters: [String: String] = [
  52. "depositAmount": depositAmount,
  53. "annualInterestRate": annualInterestRate,
  54. "year": year,
  55. "month": month,
  56. "amountDepositFrequency": amountDeposit,
  57. "compoundFrequency": compound,
  58. "depositDate": depositDate
  59. ]
  60. print(parameters)
  61. AF.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default).responseJSON { response in
  62. switch response.result {
  63. case .success(let value):
  64. delegate.stopLoader()
  65. print(value)
  66. let data = value as! NSDictionary
  67. print(data)
  68. DispatchQueue.main.async {
  69. let depositAmount = data["depositAmount"] as! Double
  70. let amountDepositFreq = data["amountDepositFreq"] as! Int
  71. let annualInterest = data["annualInterest"] as! Double
  72. let term = data["term"] as! Int
  73. let compundFreq = data["compundFreq"] as! Double
  74. let depositDate = data["depositDate"] as? String
  75. let totalAmountDeposited = data["totalAmountDeposited"] as! Double
  76. let maturityAmount = data["maturityAmount"] as! Double
  77. let totalInterestReceived = data["totalInterestReceived"] as! Double
  78. let maturityDate = data["maturityDate"] as! String
  79. let bankRecurringLookupList = data["bankFdTdrLookupList"] as! [NSDictionary]
  80. let recurringData = BankRecurringModel(depositDate: depositDate ?? "", maturityDate: maturityDate, term: term, amountDepositFreq: amountDepositFreq, depositAmount: depositAmount, annualInterest: annualInterest, compundFreq: compundFreq, maturityAmount: maturityAmount, totalInterestReceived: totalInterestReceived, totalAmountDeposited: totalAmountDeposited)
  81. for list in bankRecurringLookupList {
  82. let serialNo = list.value(forKey: "serialNo") as! NSNumber
  83. let referenceDate = list.value(forKey: "referenceDate") as! String
  84. let referenceMonth = list.value(forKey: "referenceMonth") as! String
  85. let financialYear = list.value(forKey: "financialYear") as! String
  86. let openingBal = list.value(forKey: "openingBal") as! Double
  87. let amountDeposited = list.value(forKey: "amountDeposited") as! Double
  88. let interestAccrued = list.value(forKey: "interestAccrued") as! Double
  89. let interestCredited = list.value(forKey: "interestCredited") as! Double
  90. let totalInterestAccrued = list.value(forKey: "totalInterestAccrued") as! Double
  91. let closingBalance = list.value(forKey: "closingBalance") as! Double
  92. let daysToMaturity = list.value(forKey: "daysToMaturity") as! NSNumber
  93. let list = BankRecurringLookupList(serialNo: Int(truncating: serialNo), openingBal: openingBal, amountDeposited: amountDeposited, interestAccrued: interestAccrued, totalInterestAccrued: totalInterestAccrued, interestCredited: interestCredited, daysToMaturity: Int(truncating: daysToMaturity), referenceDate: referenceDate, referenceMonth: referenceMonth, financialYear: financialYear, closingBalance: closingBalance)
  94. recurringData.bankRecurringLookupList.append(list)
  95. }
  96. self.bankRecurring.append(recurringData)
  97. delegate.navigate(recurringData)
  98. }
  99. case .failure(let error):
  100. delegate.stopLoader()
  101. print(error)
  102. //delegate.showError(error: error)
  103. }
  104. }
  105. }
  106. }
  107. }
  108. protocol BankRecurringViewProtocol {
  109. func startLoader()
  110. func stopLoader()
  111. func showError(error:String)
  112. func navigate(_ data:BankRecurringModel)
  113. }