mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-31 18:59:08 +00:00
fix: correct get linked payments type hint in bank reconcilliation tool (#52982)
fix: correct type hint for bank reconcilliation tool
This commit is contained in:
@@ -492,7 +492,7 @@ def reconcile_vouchers(bank_transaction_name: str, vouchers: str):
|
|||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def get_linked_payments(
|
def get_linked_payments(
|
||||||
bank_transaction_name: str,
|
bank_transaction_name: str,
|
||||||
document_types: list[str] | None = None,
|
document_types: str | list[str] | None = None,
|
||||||
from_date: str | date | None = None,
|
from_date: str | date | None = None,
|
||||||
to_date: str | date | None = None,
|
to_date: str | date | None = None,
|
||||||
filter_by_reference_date: bool | None = None,
|
filter_by_reference_date: bool | None = None,
|
||||||
|
|||||||
Reference in New Issue
Block a user