aboutsummaryrefslogtreecommitdiffstats
path: root/python/process_queue.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/process_queue.py')
-rw-r--r--python/process_queue.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/python/process_queue.py b/python/process_queue.py
index 4ec33469..c00ae7bb 100644
--- a/python/process_queue.py
+++ b/python/process_queue.py
@@ -902,7 +902,8 @@ def build_termination(
base_dir: pathlib.Path,
*,
dealid,
- termination_fee,
+ termination_fee: float,
+ fee_payment_date: datetime.date,
termination_date=datetime.date.today(),
termination_amount=None,
termination_cp=None,
@@ -986,7 +987,7 @@ def build_termination(
"TerminationDate": termination_date,
"FeesPaid": -termination_fee if termination_fee < 0 else None,
"FeesReceived": termination_fee if termination_fee > 0 else None,
- "FeePaymentDate": (termination_date + 3 * bus_day).date(),
+ "FeePaymentDate": fee_payment_date,
}
if "FeeCurrency" in headers:
d["FeeCurrency"] = ccy