Subversion Repositories SmartDukaan

Rev

Rev 7285 | Rev 7311 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7285 Rev 7293
Line 154... Line 154...
154
        try:
154
        try:
155
            return get_transaction_status(transactionId)
155
            return get_transaction_status(transactionId)
156
        finally:
156
        finally:
157
            close_session()
157
            close_session()
158
                
158
                
159
    def changeTransactionStatus(self, transactionId, status, description, pickUp, orderType):
159
    def changeTransactionStatus(self, transactionId, status, description, pickUp, orderType, source):
160
        """
160
        """
161
        Parameters:
161
        Parameters:
162
         - transactionId
162
         - transactionId
163
         - status
163
         - status
164
         - description
164
         - description
165
         - selfPickup
165
         - selfPickup
166
        """
166
        """
167
        try:
167
        try:
168
            return change_transaction_status(transactionId, status, description, pickUp, orderType)
168
            return change_transaction_status(transactionId, status, description, pickUp, orderType, source)
169
        finally:
169
        finally:
170
            close_session()
170
            close_session()
171
            
171
            
172
    def getOrdersForTransaction(self, transactionId, customerId):
172
    def getOrdersForTransaction(self, transactionId, customerId):
173
        """
173
        """