SukanyaSamriddhiSummaryViewController.swift 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. //
  2. // SukanyaSamriddhiSummaryViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 06/12/21.
  6. //
  7. import UIKit
  8. class SukanyaSamriddhiSummaryViewController: UIViewController {
  9. @IBOutlet var totalAmountDepositedTF: UITextField!
  10. @IBOutlet var maturityAmountTF: UITextField!
  11. @IBOutlet var overallInterestReceivedTF: UITextField!
  12. @IBOutlet var paymentUptoDateTF: UITextField!
  13. @IBOutlet var depositMaturityDateTF: UITextField!
  14. @IBOutlet var viewDetailedButton: UIButton!
  15. @IBOutlet var tableView: UITableView!
  16. var sukanyaModel:SukanyaSamriddhiModel?
  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. totalAmountDepositedTF.text = String(format: "%.2f", "\(sukanyaModel!.totalAmountDeposited!)")
  29. maturityAmountTF.text = String(format: "%.2f", "\(sukanyaModel!.maturityAmount!)")
  30. overallInterestReceivedTF.text = String(format: "%.2f", "\(sukanyaModel!.totalInterestReceived!)")
  31. let paymentDate = sukanyaModel!.paymentMaturityDate
  32. let paymentDateString = paymentDate?.stringBefore("T")
  33. paymentUptoDateTF.text = convertDateFormat(inputDate: paymentDateString!)
  34. let date = sukanyaModel!.depositMaturityDate
  35. let dateString = date?.stringBefore("T")
  36. depositMaturityDateTF.text = convertDateFormat(inputDate: dateString!)
  37. }
  38. /*
  39. // MARK: - Navigation
  40. // In a storyboard-based application, you will often want to do a little preparation before navigation
  41. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  42. // Get the new view controller using segue.destination.
  43. // Pass the selected object to the new view controller.
  44. }
  45. */
  46. @IBAction func viewDetailedProjectionAction(_ sender: Any) {
  47. viewDetailedButton.isHidden = true
  48. tableView.isHidden = false
  49. }
  50. }
  51. extension SukanyaSamriddhiSummaryViewController : UITableViewDelegate, UITableViewDataSource {
  52. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  53. sukanyaModel?.sukanyaSamSchLookupList.count ?? 0
  54. }
  55. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  56. let cell = tableView.dequeueReusableCell(withIdentifier: "SukanyaSamriddhiTableViewCell", for: indexPath) as? SukanyaSamriddhiTableViewCell
  57. cell?.monthLabel.text = sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].referenceMonth
  58. cell?.openingBalanceLabel.text = "\(sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].openingBal!)"
  59. cell?.amountDepositedLabel.text = "\(sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].amountDeposited!)"
  60. cell?.interestAccuredLabel.text = "\(sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].interestAccrued!)"
  61. cell?.totalInterestAccuredLabel.text = "\(sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].totalInterestAccrued!)"
  62. cell?.interestCreditedLabel.text = "\(sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].interestCredited!)"
  63. cell?.closingBalanceLabel.text = "\(sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].closingBalance!)"
  64. cell?.interestRateLabel.text = "\(sukanyaModel!.sukanyaSamSchLookupList[indexPath.row].interestRate!)"
  65. return cell!
  66. }
  67. }