PONationalSavingSummaryViewController.swift 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //
  2. // PONationalSavingSummaryViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 03/12/21.
  6. //
  7. import UIKit
  8. class PONationalSavingSummaryViewController: UIViewController {
  9. @IBOutlet var maturityAmountTF: UITextField!
  10. @IBOutlet var overallInterestReceivedTF: UITextField!
  11. @IBOutlet var investmentMaturityDateTF: UITextField!
  12. @IBOutlet var viewDetailedButton: UIButton!
  13. @IBOutlet var tableView: UITableView!
  14. var poNScModel:PONationalSavingModel?
  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. maturityAmountTF.text = String(format: "%.2f", "\(poNScModel!.maturityAmount!)")
  27. overallInterestReceivedTF.text = String(format: "%.2f", "\(poNScModel!.totalInterestReceived!)")
  28. let date = poNScModel!.maturityDate
  29. let dateString = date?.stringBefore("T")
  30. investmentMaturityDateTF.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 PONationalSavingSummaryViewController : UITableViewDelegate, UITableViewDataSource {
  46. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  47. poNScModel?.poNScLookupList.count ?? 0
  48. }
  49. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  50. let cell = tableView.dequeueReusableCell(withIdentifier: "PONScTableViewCell", for: indexPath) as? PONScTableViewCell
  51. cell?.monthLabel.text = poNScModel?.poNScLookupList[indexPath.row].referenceMonth
  52. cell?.openingBalanceLabel.text = "\(poNScModel!.poNScLookupList[indexPath.row].openingBal!)"
  53. cell?.interestAccuredLabel.text = "\(poNScModel!.poNScLookupList[indexPath.row].interestAccrued!)"
  54. cell?.totalInterestAccuredLabel.text = "\(poNScModel!.poNScLookupList[indexPath.row].totalInterestReceived!)"
  55. cell?.interestCreditedLabel.text = "\(poNScModel!.poNScLookupList[indexPath.row].interestCredited!)"
  56. cell?.closingBalanceLabel.text = "\(poNScModel!.poNScLookupList[indexPath.row].closingBalance!)"
  57. return cell!
  58. }
  59. }