CpCdViewModel.swift 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. //
  2. // CpCdViewModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 30/11/21.
  6. //
  7. import Foundation
  8. import Alamofire
  9. class CpCdViewModel {
  10. var delegate: CpCdViewProtocol?
  11. var bankCpCdModel = [CpCdModel]()
  12. //POST Bank CP/CD API
  13. func getCpCdOutput(depositAmount:String, annualInterest:String, tenure:String, compoundFrequency:String, depositDate:String) {
  14. if let delegate = delegate {
  15. delegate.startLoader()
  16. let url = ApiUrl.BASE_URL + ApiUrl.GET_BANK_CPCD
  17. var compound = String()
  18. switch compoundFrequency {
  19. case "Monthly":
  20. compound = "12"
  21. case "Bi-Monthly":
  22. compound = "6"
  23. case "Quarterly":
  24. compound = "4"
  25. case "Triannually":
  26. compound = "3"
  27. case "Half Yearly":
  28. compound = "2"
  29. case "Annually":
  30. compound = "1"
  31. default:
  32. compound = ""
  33. }
  34. let parameters: [String: String] = [
  35. "depositAmount": depositAmount,
  36. "annualInterest": annualInterest,
  37. "termYearsDays": "D",
  38. "tenure": tenure,
  39. "compoundFrequency": compound,
  40. "depositDate": depositDate
  41. ]
  42. print(parameters)
  43. AF.request(url, method: .post, parameters: parameters, encoding: JSONEncoding.default).responseJSON { response in
  44. switch response.result {
  45. case .success(let value):
  46. delegate.stopLoader()
  47. print(value)
  48. let data = value as! NSDictionary
  49. print(data)
  50. DispatchQueue.main.async {
  51. let depositAmount = data["depositAmount"] as! Double
  52. let annualInterest = data["annualInterest"] as! Double
  53. let term = data["term"] as! Int
  54. let compundFreq = data["compundFreq"] as! Double
  55. let depositDate = data["depositDate"] as? String
  56. let maturityAmount = data["maturityAmount"] as! Double
  57. let interestReceived = data["interestReceived"] as! Double
  58. let totalInterestReceived = data["totalInterestReceived"] as! Double
  59. let maturityDate = data["maturityDate"] as! String
  60. let bankCpCdLookupList = data["bankFdTdrLookupList"] as! [NSDictionary]
  61. let cpcdData = CpCdModel(depositDate: depositDate ?? "", maturityDate: maturityDate, term: term, depositAmount: depositAmount, annualInterest: annualInterest, compundFreq: compundFreq, maturityAmount: maturityAmount, totalInterestReceived: totalInterestReceived, interestReceived: interestReceived)
  62. for list in bankCpCdLookupList {
  63. let serialNo = list.value(forKey: "serialNo") as! NSNumber
  64. let referenceDate = list.value(forKey: "referenceDate") as! String
  65. let referenceMonth = list.value(forKey: "referenceMonth") as! String
  66. let financialYear = list.value(forKey: "financialYear") as! String
  67. let openingBal = list.value(forKey: "openingBal") as! Double
  68. let amountDeposited = list.value(forKey: "amountDeposited") as! Double
  69. let interestAccrued = list.value(forKey: "interestAccrued") as! Double
  70. let interestCredited = list.value(forKey: "interestCredited") as! Double
  71. let totalInterestReceived = list.value(forKey: "totalInterestReceived") as! Double
  72. let closingBalance = list.value(forKey: "closingBalance") as! Double
  73. let daysToMaturity = list.value(forKey: "daysToMaturity") as! NSNumber
  74. let list = CpCdLookupList(serialNo: Int(truncating: serialNo), openingBal: openingBal, amountDeposited: amountDeposited, interestAccrued: interestAccrued, totalInterestReceived: totalInterestReceived, interestCredited: interestCredited, daysToMaturity: Int(truncating: daysToMaturity), referenceDate: referenceDate, referenceMonth: referenceMonth, financialYear: financialYear, closingBalance: closingBalance)
  75. cpcdData.bankCpCdLookupList.append(list)
  76. }
  77. self.bankCpCdModel.append(cpcdData)
  78. delegate.navigate(cpcdData)
  79. }
  80. case .failure(let error):
  81. delegate.stopLoader()
  82. print(error)
  83. //delegate.showError(error: error)
  84. }
  85. }
  86. }
  87. }
  88. }
  89. protocol CpCdViewProtocol {
  90. func startLoader()
  91. func stopLoader()
  92. func showError(error:String)
  93. func navigate(_ data:CpCdModel)
  94. }