mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
POS: Allow clients to fetch payment details
This commit is contained in:
@@ -955,6 +955,8 @@ class BoxOfficeProvider(BasePaymentProvider):
|
|||||||
return {
|
return {
|
||||||
"pos_id": payment.info_data.get('pos_id', None),
|
"pos_id": payment.info_data.get('pos_id', None),
|
||||||
"receipt_id": payment.info_data.get('receipt_id', None),
|
"receipt_id": payment.info_data.get('receipt_id', None),
|
||||||
|
"payment_type": payment.info_data.get('payment_type', None),
|
||||||
|
"payment_data": payment.info_data.get('payment_data', {}),
|
||||||
}
|
}
|
||||||
|
|
||||||
def payment_control_render(self, request, payment) -> str:
|
def payment_control_render(self, request, payment) -> str:
|
||||||
|
|||||||
Reference in New Issue
Block a user