BondDebenturesSummaryViewController.swift 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. //
  2. // BondDebenturesSummaryViewController.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 30/11/21.
  6. //
  7. import UIKit
  8. class BondDebenturesSummaryViewController: UIViewController {
  9. @IBOutlet var couponReceivedMonthlyTF: UITextField!
  10. @IBOutlet var totalCouponReceivedTF: UITextField!
  11. @IBOutlet var bondMaturityDateTF: UITextField!
  12. @IBOutlet var effectiveTimeTF: UITextField!
  13. @IBOutlet var currentValueTF: UITextField!
  14. @IBOutlet var viewDetailedButton: UIButton!
  15. @IBOutlet var tableView: UITableView!
  16. var bondDebentureModel : BondDebenturesModel?
  17. var bondDebentureOutputListModel = [BondDebenturesOutputListModel]()
  18. override func viewDidLoad() {
  19. super.viewDidLoad()
  20. // Do any additional setup after loading the view.
  21. setupUI()
  22. setupData()
  23. }
  24. func setupUI() {
  25. viewDetailedButton.isHidden = false
  26. tableView.isHidden = true
  27. }
  28. func setupData() {
  29. couponReceivedMonthlyTF.text = String(format: "%.2f", "\(bondDebentureModel!.couponReceived!)")
  30. totalCouponReceivedTF.text = String(format: "%.2f", "\(bondDebentureModel!.totalCouponReceived!)")
  31. let date = bondDebentureModel!.daysToMaturity
  32. let dateString = date?.stringBefore("T")
  33. bondMaturityDateTF.text = convertDateFormat(inputDate: dateString!)
  34. effectiveTimeTF.text = String(format: "%.2f", "\(bondDebentureModel!.effectiveTimeToMaturity!)")
  35. currentValueTF.text = String(format: "%.2f", "\(bondDebentureModel!.currentValue!)")
  36. }
  37. /*
  38. // MARK: - Navigation
  39. // In a storyboard-based application, you will often want to do a little preparation before navigation
  40. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  41. // Get the new view controller using segue.destination.
  42. // Pass the selected object to the new view controller.
  43. }
  44. */
  45. @IBAction func viewDetailedProjectionAction(_ sender: Any) {
  46. viewDetailedButton.isHidden = true
  47. tableView.isHidden = false
  48. }
  49. }
  50. extension BondDebenturesSummaryViewController : UITableViewDelegate, UITableViewDataSource {
  51. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  52. bondDebentureOutputListModel.count
  53. }
  54. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  55. let cell = tableView.dequeueReusableCell(withIdentifier: "BondDebenturesTableViewCell", for: indexPath) as? BondDebenturesTableViewCell
  56. cell?.monthLabel.text = bondDebentureOutputListModel[indexPath.row].referenceMonth
  57. cell?.amountDepositedLabel.text = "\(bondDebentureOutputListModel[indexPath.row].bondAmountDeposited!)"
  58. cell?.couponReceivedLabel.text = "\(bondDebentureOutputListModel[indexPath.row].couponReceived!)"
  59. cell?.totalCouponReceivedLabel.text = "\(bondDebentureOutputListModel[indexPath.row].totalCouponReceived!)"
  60. return cell!
  61. }
  62. }