POTimeSummaryViewController.swift 3.0 KB

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