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