Click or drag to resize

IPaymentProcessorOnPaymentAdded Method

Perform order edit operation after payment is added to order (on preliminary payments page or on payment page).

Namespace: Resto.Front.Api
Assembly: Resto.Front.Api.V9 (in Resto.Front.Api.V9.dll)
Syntax
C#
void OnPaymentAdded(
	IOrder order,
	IPaymentItem paymentItem,
	IUser cashier,
	IOperationService operationService,
	IReceiptPrinter printer,
	IViewManager viewManager,
	IPaymentDataContext context
)

Parameters

order  IOrder
Order.
paymentItem  IPaymentItem
Added payment item.
cashier  IUser
User handling payments and receipts.
operationService  IOperationService
Allows to edit entities within this method. Should not be used after method returns.
printer  IReceiptPrinter
IReceiptPrinter object to perform print actions. Should not be used after method returns.
viewManager  IViewManager
IViewManager object to show dialogs. Should not be used after method returns.
context  IPaymentDataContext
IPaymentDataContext object to work with plugin saved data in Syrve storage.
Exceptions
ExceptionCondition
PaymentActionCancelledExceptionException to notify that payment actions were cancelled with no message shown.
PaymentActionFailedExceptionException to notify that payment actions were not successful.
See Also