Add account cash flow intents

This commit is contained in:
boris
2026-04-23 20:14:05 -07:00
parent e0a5d0c945
commit 85feee6dac
10 changed files with 608 additions and 27 deletions

View File

@@ -917,6 +917,22 @@ where
));
Ok(())
}
OrderIntent::DepositWithdraw {
amount,
receiving_days,
reason,
} => {
report.diagnostics.push(format!(
"engine_account_intent_skipped kind=deposit_withdraw amount={amount:.2} receiving_days={receiving_days} reason={reason}"
));
Ok(())
}
OrderIntent::FinanceRepay { amount, reason } => {
report.diagnostics.push(format!(
"engine_account_intent_skipped kind=finance_repay amount={amount:.2} reason={reason}"
));
Ok(())
}
}
}