Пример #1
0
    def operation(self):
        """Get the operation for this method.
        The operation contains method specific logic when
        creating/deleting a payment.

        :return: the operation associated with the method
        :rtype: object implementing IPaymentOperation
        """
        from stoqlib.domain.payment.operation import get_payment_operation
        return get_payment_operation(self.method_name)
Пример #2
0
    def operation(self):
        """Get the operation for this method.
        The operation contains method specific logic when
        creating/deleting a payment.

        :return: the operation associated with the method
        :rtype: object implementing IPaymentOperation
        """
        from stoqlib.domain.payment.operation import get_payment_operation
        return get_payment_operation(self.method_name)
Пример #3
0
 def method_description(self):
     return get_payment_operation(self.method_name).description
Пример #4
0
 def method_description(self):
     return get_payment_operation(self.method_name).description
Пример #5
0
 def method_description(self):
     from stoqlib.domain.payment.operation import get_payment_operation
     return get_payment_operation(self.method_name).description
Пример #6
0
 def method_description(self):
     from stoqlib.domain.payment.operation import get_payment_operation
     return get_payment_operation(self.method_name).description