diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/citco_ops/bowdst.py | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/python/citco_ops/bowdst.py b/python/citco_ops/bowdst.py index f0f81ad5..5f8c013a 100644 --- a/python/citco_ops/bowdst.py +++ b/python/citco_ops/bowdst.py @@ -1,6 +1,6 @@ from dataclasses import dataclass import datetime -from serenitas.ops.trade_dataclasses import Deal, Ccy, field, Fund +from serenitas.ops.trade_dataclasses import Deal, Ccy, field, Fund, WireDeal from typing import ClassVar _nt_to_currency = {"EURO - EUR": "EUR", "U.S. DOLLARS - USD": "USD"} @@ -60,18 +60,3 @@ class IsoselWire(Wire, fund="ISOSEL"): wire_details=line["narrative"], unique_ref=line["C-EXTL-SYS-TRN-DSC-3"], ) - - -@dataclass -class StrategyCashRealloc( - Deal, table_name="strat_cash_realloc", deal_type="strat_cash_realloc" -): - id: int = field(metadata={"insert": False}) - dealid: str = field(metadata={"insert": False}) - portfolio: str - folder: str - trade_date: datetime.date - amount: float - currency: Ccy - fund: Fund - cash_account: str |
