PPFSummaryViewController.swift 3.5 KB

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