示例#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
文件: views.py 项目: dionimf/stoq
 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