diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/process_queue.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/process_queue.py b/python/process_queue.py index 998538c9..b222a6ed 100644 --- a/python/process_queue.py +++ b/python/process_queue.py @@ -787,6 +787,7 @@ def build_termination( termination_amount=None, termination_cp=None, globeopid=None, + partial_termination: bool = False, is_assignment: bool = False, ccy: str = "USD", fund: str = "SERCGMAST", @@ -819,6 +820,7 @@ def build_termination( "Action": "Update", "Client": _client_name[fund], "SubAction": "Termination", + "PartialTermination": "Y" if partial_termination else "N", "TerminationAmount": termination_amount, "TerminationDate": termination_date, "FeesPaid": -termination_fee if termination_fee < 0 else None, |
