BankRecurringSummaryViewController.swift 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //
  2. // BankRecurringSummaryViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 30/11/21.
  6. //
  7. import UIKit
  8. class BankRecurringSummaryViewController: UIViewController {
  9. @IBOutlet var totalAmountDepositedTF: UITextField!
  10. @IBOutlet var maturityAmountTF: UITextField!
  11. @IBOutlet var overallInterestReceivedTF: UITextField!
  12. @IBOutlet var depositMaturityDateTF: UITextField!
  13. @IBOutlet var tableView: UITableView!
  14. @IBOutlet var viewDetailedButton: UIButton!
  15. var recurringModel:BankRecurringModel?
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. // Do any additional setup after loading the view.
  19. setupUI()
  20. setupData()
  21. }
  22. func setupUI() {
  23. viewDetailedButton.isHidden = false
  24. tableView.isHidden = true
  25. }
  26. func setupData() {
  27. totalAmountDepositedTF.text = "\(recurringModel!.totalAmountDeposited!)"
  28. maturityAmountTF.text = "\(recurringModel!.maturityAmount!)"
  29. overallInterestReceivedTF.text = "\(recurringModel!.totalInterestReceived!)"
  30. let date = recurringModel!.maturityDate
  31. let dateString = date?.stringBefore("T")
  32. depositMaturityDateTF.text = convertDateFormat(inputDate: dateString!)
  33. }
  34. /*
  35. // MARK: - Navigation
  36. // In a storyboard-based application, you will often want to do a little preparation before navigation
  37. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  38. // Get the new view controller using segue.destination.
  39. // Pass the selected object to the new view controller.
  40. }
  41. */
  42. @IBAction func viewDetailedProjectionAction(_ sender: Any) {
  43. viewDetailedButton.isHidden = true
  44. tableView.isHidden = false
  45. }
  46. }
  47. extension BankRecurringSummaryViewController : UITableViewDelegate, UITableViewDataSource {
  48. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  49. recurringModel?.bankRecurringLookupList.count ?? 0
  50. }
  51. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  52. let cell = tableView.dequeueReusableCell(withIdentifier: "BankRecurringDetailTableViewCell", for: indexPath) as? BankRecurringDetailTableViewCell
  53. cell?.monthLabel.text = recurringModel?.bankRecurringLookupList[indexPath.row].referenceMonth
  54. cell?.openingBalanceLabel.text = "\(recurringModel!.bankRecurringLookupList[indexPath.row].openingBal!)"
  55. cell?.amountDepositedLabel.text = "\(recurringModel!.bankRecurringLookupList[indexPath.row].amountDeposited!)"
  56. cell?.interestAccuredLabel.text = "\(recurringModel!.bankRecurringLookupList[indexPath.row].interestAccrued!)"
  57. cell?.totalInterestAccuredLabel.text = "\(recurringModel!.bankRecurringLookupList[indexPath.row].totalInterestAccrued!)"
  58. cell?.interestCreditedLabel.text = "\(recurringModel!.bankRecurringLookupList[indexPath.row].interestCredited!)"
  59. cell?.closingBalanceLabel.text = "\(recurringModel!.bankRecurringLookupList[indexPath.row].closingBalance!)"
  60. return cell!
  61. }
  62. }