POMonthlyIncomeSchemeSummaryViewController.swift 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. //
  2. // POMonthlyIncomeSchemeSummaryViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 03/12/21.
  6. //
  7. import UIKit
  8. class POMonthlyIncomeSchemeSummaryViewController: UIViewController {
  9. @IBOutlet var interestReceivedMonthlyTF: UITextField!
  10. @IBOutlet var overallInterestReceivedTF: UITextField!
  11. @IBOutlet var depositMaturityDateTF: UITextField!
  12. @IBOutlet var viewDetailedButton: UIButton!
  13. @IBOutlet var tableView: UITableView!
  14. var pomisModel:POMonthlyIncomeSchemeModel?
  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. interestReceivedMonthlyTF.text = String(format: "%.2f", "\(pomisModel!.interestReceived!)")
  27. overallInterestReceivedTF.text = String(format: "%.2f", "\(pomisModel!.totalInterestReceived!)")
  28. let date = pomisModel!.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 POMonthlyIncomeSchemeSummaryViewController : UITableViewDelegate, UITableViewDataSource {
  46. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  47. pomisModel?.postOfficeMISLookupList.count ?? 0
  48. }
  49. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  50. let cell = tableView.dequeueReusableCell(withIdentifier: "POMonthlyIncomeSchemeTableViewCell", for: indexPath) as? POMonthlyIncomeSchemeTableViewCell
  51. cell?.monthLabel.text = pomisModel!.postOfficeMISLookupList[indexPath.row].referenceMonth
  52. cell?.amountDepositedLabel.text = "\(pomisModel!.postOfficeMISLookupList[indexPath.row].amountDeposited!)"
  53. cell?.interestReceivedLabel.text = "\(pomisModel!.postOfficeMISLookupList[indexPath.row].interestReceived!)"
  54. cell?.totalInterestReceivedLabel.text = "\(pomisModel!.postOfficeMISLookupList[indexPath.row].totalInterestReceived!)"
  55. return cell!
  56. }
  57. }