NonEMISummaryViewController.swift 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. //
  2. // NonEMISummaryViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 07/12/21.
  6. //
  7. import UIKit
  8. class NonEMISummaryViewController: UIViewController {
  9. @IBOutlet var interestPaidHalfYearlyTF: UITextField!
  10. @IBOutlet var overallInterestReceivedTF: UITextField!
  11. @IBOutlet var loanEndDateTF: UITextField!
  12. @IBOutlet var viewDetailedButton: UIButton!
  13. @IBOutlet var collectionView: UICollectionView!
  14. var viewModel = NonEMISummaryViewModel()
  15. var nonEmiModel:EMILoanOriginalModel?
  16. var nonEmiOutputList = [EMIOriginalLookupList]()
  17. override func viewDidLoad() {
  18. super.viewDidLoad()
  19. // Do any additional setup after loading the view.
  20. setupUI()
  21. setupData()
  22. }
  23. override func viewWillAppear(_ animated: Bool) {
  24. viewModel.delegate = self
  25. let date = nonEmiModel!.loanStartDate
  26. let startDate = date?.stringBefore("T") ?? ""
  27. let date1 = nonEmiModel!.loanEndDate
  28. let endDate = date1?.stringBefore("T") ?? ""
  29. viewModel.getNonEMIOutputList(begningBal: String(nonEmiModel!.loanAmount!), interestFrequency: String(nonEmiModel!.interestPaymentFrequency!), refDate: startDate, loanEndDate: endDate, interestPaidAmount: String(nonEmiModel!.totalInterestPaid!), totalMonths: String(nonEmiModel!.loanTenure!))
  30. }
  31. func setupUI() {
  32. viewDetailedButton.isHidden = false
  33. collectionView.isHidden = true
  34. }
  35. func setupData() {
  36. interestPaidHalfYearlyTF.text = ""
  37. overallInterestReceivedTF.text = String(format: "%.2f", "\(nonEmiModel!.totalInterestPaid!)")
  38. let date = nonEmiModel!.loanEndDate
  39. let endDate = date?.stringBefore("T")
  40. loanEndDateTF.text = endDate
  41. print(String(format: "%.2f", "\(nonEmiModel!.totalInterestPaid!)"))
  42. print(endDate)
  43. }
  44. /*
  45. // MARK: - Navigation
  46. // In a storyboard-based application, you will often want to do a little preparation before navigation
  47. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  48. // Get the new view controller using segue.destination.
  49. // Pass the selected object to the new view controller.
  50. }
  51. */
  52. @IBAction func viewDetailedProjectionAction(_ sender: Any) {
  53. viewDetailedButton.isHidden = true
  54. collectionView.isHidden = false
  55. }
  56. }
  57. extension NonEMISummaryViewController : NonEMISummaryViewProtocol {
  58. func loadData(_ data: [EMIOriginalLookupList]) {
  59. self.nonEmiOutputList = data
  60. self.collectionView.reloadData()
  61. }
  62. func startLoader() {
  63. ActivityIndicator.start()
  64. }
  65. func stopLoader() {
  66. ActivityIndicator.stop()
  67. }
  68. func showError(error: String) {
  69. self.view.makeToast(error)
  70. }
  71. }
  72. extension NonEMISummaryViewController : UITableViewDelegate, UITableViewDataSource {
  73. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  74. return nonEmiOutputList.count
  75. }
  76. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  77. let cell = tableView.dequeueReusableCell(withIdentifier: "NonEMITableViewCell", for: indexPath) as? NonEMITableViewCell
  78. cell?.monthLabel.text = nonEmiOutputList[indexPath.row].referenceMonth
  79. cell?.beginningLoanBalanceLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].begningBal!)")
  80. cell?.principalPaidLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].principalPayment!)")
  81. cell?.interestPaidLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].interestPayment!)")
  82. cell?.closingLoanBalanceLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].endingBalance!)")
  83. cell?.totalPrincipalPaidLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].totalPrincipalPaid!)")
  84. cell?.totalInterestPaidLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].totalInterestPaid!)")
  85. return cell!
  86. }
  87. }
  88. // MARK: - UICollectionViewDataSource
  89. extension NonEMISummaryViewController: UICollectionViewDataSource {
  90. func numberOfSections(in collectionView: UICollectionView) -> Int {
  91. return nonEmiOutputList.count
  92. }
  93. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  94. return 7
  95. }
  96. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  97. // swiftlint:disable force_cast
  98. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "NonEMICollectionViewCell", for: indexPath) as! NonEMICollectionViewCell
  99. if indexPath.section % 2 != 0 {
  100. cell.backgroundColor = UIColor(white: 242/255.0, alpha: 1.0)
  101. } else {
  102. cell.backgroundColor = UIColor.white
  103. }
  104. if indexPath.section == 0 {
  105. if indexPath.row == 0 {
  106. cell.contentLabel.text = "Month"
  107. } else if indexPath.row == 1 {
  108. cell.contentLabel.text = "Beginning Loan Balance"
  109. } else if indexPath.row == 2 {
  110. cell.contentLabel.text = "Principal Paid"
  111. } else if indexPath.row == 3 {
  112. cell.contentLabel.text = "Interest Paid"
  113. } else if indexPath.row == 4 {
  114. cell.contentLabel.text = "Closing Loan Balance"
  115. } else if indexPath.row == 5 {
  116. cell.contentLabel.text = "Total Principal Paid to Date"
  117. } else if indexPath.row == 6 {
  118. cell.contentLabel.text = "Total Interest Paid to Date"
  119. }
  120. } else {
  121. if indexPath.row == 0 {
  122. cell.contentLabel.text = nonEmiOutputList[indexPath.row].referenceMonth
  123. } else if indexPath.row == 1 {
  124. cell.contentLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].begningBal!)")
  125. } else if indexPath.row == 2 {
  126. cell.contentLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].principalPayment!)")
  127. } else if indexPath.row == 3 {
  128. cell.contentLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].interestPayment!)")
  129. } else if indexPath.row == 4 {
  130. cell.contentLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].endingBalance!)")
  131. } else if indexPath.row == 5 {
  132. cell.contentLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].totalPrincipalPaid!)")
  133. } else if indexPath.row == 6 {
  134. cell.contentLabel.text = String(format: "%.2f", "\(nonEmiOutputList[indexPath.row].totalInterestPaid!)")
  135. }
  136. }
  137. return cell
  138. }
  139. }
  140. // MARK: - UICollectionViewDelegate
  141. extension NonEMISummaryViewController: UICollectionViewDelegate {
  142. }