diff options
| -rw-r--r-- | python/cash_reports.py | 4 | ||||
| -rw-r--r-- | python/citco_ops/cash.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/python/cash_reports.py b/python/cash_reports.py index 830dbccb..e0d997ae 100644 --- a/python/cash_reports.py +++ b/python/cash_reports.py @@ -1,4 +1,4 @@ -from citco_ops.cash import IsoselCashReport, UmbCashReport +from citco_ops.cash import NTCashReport, UmbCashReport import datetime from serenitas.analytics.dates import prev_business_day import logging @@ -16,7 +16,7 @@ if __name__ == "__main__": help="work date", ) args = parser.parse_args() - for report_cls in (IsoselCashReport, UmbCashReport): + for report_cls in (NTCashReport, UmbCashReport): report = report_cls(args.date) try: report.to_db() diff --git a/python/citco_ops/cash.py b/python/citco_ops/cash.py index 77401143..d7ac7f51 100644 --- a/python/citco_ops/cash.py +++ b/python/citco_ops/cash.py @@ -83,7 +83,7 @@ class CashReport: cls._conn.commit() -class IsoselCashReport(CashReport, fund="ISOSEL", account_number="ISOS01"): +class NTCashReport(CashReport, fund="ISOSEL", account_number="ISOS01"): @classmethod def download_reports(cls, date=datetime.date.today()): em = ExchangeMessage() |
