Esempio n. 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)
Esempio n. 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)
Esempio n. 3
0
 def method_description(self):
     return get_payment_operation(self.method_name).description
Esempio n. 4
0
 def method_description(self):
     return get_payment_operation(self.method_name).description
Esempio n. 5
0
 def method_description(self):
     from stoqlib.domain.payment.operation import get_payment_operation
     return get_payment_operation(self.method_name).description
Esempio n. 6
0
 def method_description(self):
     from stoqlib.domain.payment.operation import get_payment_operation
     return get_payment_operation(self.method_name).description