shop.payment_providers.prepayment ================================= .. py:module:: shop.payment_providers.prepayment Attributes ---------- .. autoapisummary:: shop.payment_providers.prepayment.logger Classes ------- .. autoapisummary:: shop.payment_providers.prepayment.Prepayment shop.payment_providers.prepayment.PrePayment Module Contents --------------- .. py:data:: logger .. py:class:: Prepayment Bases: :py:obj:`shop.payment_providers.PaymentProviderAbstract` Prepayment method for the ViUR Shop. Allows customers to place orders with the agreement to pay in advance. The order is marked as ready to ship (RTS) once payment is received. The customer pays this order in the next x days, shipping will wait. Note: Payment receipt verification (The customer pays this order in the next x days, shipping will wait) is handled externally and not within this module. .. py:attribute:: name :type: Final[str] :value: 'prepayment' .. py:method:: checkout(order_skel) .. py:method:: charge(order_skel, payment = None) .. py:method:: check_payment_state(order_skel) .. py:method:: return_handler() .. py:method:: webhook() .. py:method:: get_debug_information() .. py:class:: PrePayment Bases: :py:obj:`Prepayment` Prepayment method for the ViUR Shop. Allows customers to place orders with the agreement to pay in advance. The order is marked as ready to ship (RTS) once payment is received. The customer pays this order in the next x days, shipping will wait. Note: Payment receipt verification (The customer pays this order in the next x days, shipping will wait) is handled externally and not within this module.