shop.payment_providers.invoice ============================== .. py:module:: shop.payment_providers.invoice Attributes ---------- .. autoapisummary:: shop.payment_providers.invoice.logger Classes ------- .. autoapisummary:: shop.payment_providers.invoice.Invoice Module Contents --------------- .. py:data:: logger .. py:class:: Invoice Bases: :py:obj:`shop.payment_providers.PaymentProviderAbstract` Invoice payment method for the ViUR Shop. Allows customers to place orders with the agreement to pay later via invoice. The order can be marked as ready to ship (RTS) immediately but is not considered paid. Note: Payment processing (the customer pays this order in the next x days) and verification are handled externally and not within this module. .. py:attribute:: name :type: Final[str] :value: 'invoice' .. 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()