EPFSummaryViewController.swift 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. //
  2. // EPFSummaryViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 09/12/21.
  6. //
  7. import UIKit
  8. class EPFSummaryViewController: UIViewController {
  9. @IBOutlet var epfWithdrawalTF: UITextField!
  10. @IBOutlet var epsClientAgeTF: UITextField!
  11. @IBOutlet var totalInterestOnEpfTF: UITextField!
  12. @IBOutlet var employeeContributionTF: UITextField!
  13. @IBOutlet var employerContributionTF: UITextField!
  14. @IBOutlet var viewDetailedButton: UIButton!
  15. @IBOutlet var collectionView: UICollectionView!
  16. var epfModel : EPFModel?
  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. collectionView.isHidden = true
  26. }
  27. func setupData() {
  28. epfWithdrawalTF.text = String(format: "%.2f", "\(epfModel!.epfBalWithdraw!)")
  29. epsClientAgeTF.text = String(format: "%.2f", "\(epfModel!.epsBalClientAge!)")
  30. totalInterestOnEpfTF.text = String(format: "%.2f", "\(epfModel!.totalInterestEarned!)")
  31. employeeContributionTF.text = String(format: "%.2f", "\(epfModel!.employeeCont!)")
  32. employerContributionTF.text = String(format: "%.2f", "\(epfModel!.employerCont!)")
  33. }
  34. /*
  35. // MARK: - Navigation
  36. // In a storyboard-based application, you will often want to do a little preparation before navigation
  37. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  38. // Get the new view controller using segue.destination.
  39. // Pass the selected object to the new view controller.
  40. }
  41. */
  42. @IBAction func viewDetailedButtonAction(_ sender: Any) {
  43. viewDetailedButton.isHidden = true
  44. collectionView.isHidden = false
  45. }
  46. }
  47. // MARK: - UICollectionViewDataSource
  48. extension EPFSummaryViewController: UICollectionViewDataSource {
  49. func numberOfSections(in collectionView: UICollectionView) -> Int {
  50. return epfModel?.lookupList.count ?? 0
  51. }
  52. func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
  53. return 13
  54. }
  55. func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
  56. // swiftlint:disable force_cast
  57. let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "DataCollectionViewCell", for: indexPath) as! DataCollectionViewCell
  58. if indexPath.section % 2 != 0 {
  59. cell.backgroundColor = UIColor(white: 242/255.0, alpha: 1.0)
  60. } else {
  61. cell.backgroundColor = UIColor.white
  62. }
  63. if indexPath.section == 0 {
  64. if indexPath.row == 0 {
  65. cell.contentLabel.text = "Month"
  66. } else if indexPath.row == 1 {
  67. cell.contentLabel.text = "Client Age"
  68. } else if indexPath.row == 2 {
  69. cell.contentLabel.text = "Monthly Basic/Basic+DA"
  70. } else if indexPath.row == 3 {
  71. cell.contentLabel.text = "Opening Balance(EPF)"
  72. } else if indexPath.row == 4 {
  73. cell.contentLabel.text = "Opening Balance(EPS)"
  74. } else if indexPath.row == 5 {
  75. cell.contentLabel.text = "Employee Contribution(EPF)"
  76. } else if indexPath.row == 6 {
  77. cell.contentLabel.text = "Employer Contribution(EPF)"
  78. } else if indexPath.row == 7 {
  79. cell.contentLabel.text = "Employer Contribution(EPS)"
  80. } else if indexPath.row == 8 {
  81. cell.contentLabel.text = "Interest Rate(EPF)"
  82. } else if indexPath.row == 9 {
  83. cell.contentLabel.text = "Interest Earned(EPF)"
  84. } else if indexPath.row == 10 {
  85. cell.contentLabel.text = "Total Interest Earned(EPF)"
  86. } else if indexPath.row == 11 {
  87. cell.contentLabel.text = "Closing Balance(EPF)"
  88. } else if indexPath.row == 12 {
  89. cell.contentLabel.text = "Closing Balance(EPS)"
  90. }
  91. } else {
  92. if indexPath.row == 0 {
  93. cell.contentLabel.text = epfModel?.lookupList[indexPath.section-1].displayDate
  94. print(epfModel?.lookupList[indexPath.section-1].displayDate!)
  95. } else if indexPath.row == 1 {
  96. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].clientAge! ?? 0)")
  97. } else if indexPath.row == 2 {
  98. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].monBasicDA! ?? 0)")
  99. } else if indexPath.row == 3 {
  100. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].openingBalEPF! ?? 0)")
  101. print(String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].openingBalEPF! ?? 0)"))
  102. } else if indexPath.row == 4 {
  103. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].openingBalEPS! ?? 0)")
  104. } else if indexPath.row == 5 {
  105. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].employeeContEPF! ?? 0)")
  106. } else if indexPath.row == 6 {
  107. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].employerContEPF! ?? 0)")
  108. } else if indexPath.row == 7 {
  109. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].employerContEPS! ?? 0)")
  110. } else if indexPath.row == 8 {
  111. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].interestRateEPF! ?? 0)")
  112. } else if indexPath.row == 9 {
  113. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].interestEarnedEPF! ?? 0)")
  114. } else if indexPath.row == 10 {
  115. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].totalInterestEarnedEPF! ?? 0)")
  116. } else if indexPath.row == 11 {
  117. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].closingBalEPF! ?? 0)")
  118. } else if indexPath.row == 12 {
  119. cell.contentLabel.text = String(format: "%.2f", "\(epfModel?.lookupList[indexPath.section-1].closingBalEPS! ?? 0)")
  120. }
  121. }
  122. return cell
  123. }
  124. }
  125. // MARK: - UICollectionViewDelegate
  126. extension EPFSummaryViewController: UICollectionViewDelegate {
  127. }