Subversion Repositories SmartDukaan

Rev

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

Rev 18794 Rev 18802
Line 607... Line 607...
607
    if loanHistory.invoiceNumber:
607
    if loanHistory.invoiceNumber:
608
        t_LoanHistory.invoiceNumber = loanHistory.invoiceNumber
608
        t_LoanHistory.invoiceNumber = loanHistory.invoiceNumber
609
        
609
        
610
    return t_LoanHistory
610
    return t_LoanHistory
611
 
611
 
612
def to_t_PaginatedCreditHostory(hasMore, totalCount, creditHistoryList):
612
def to_t_PaginatedCreditHistory(hasMore, totalCount, creditHistoryList):
613
    t_PaginatedCreditHostory = TPaginatedCreditHistory()
613
    t_PaginatedCreditHostory = TPaginatedCreditHistory()
614
    t_PaginatedCreditHostory.hasMore = hasMore
614
    t_PaginatedCreditHostory.hasMore = hasMore
615
    t_PaginatedCreditHostory.totalCount = totalCount
615
    t_PaginatedCreditHostory.totalCount = totalCount
616
    creditHistory = []
616
    creditHistory = []
617
    for credit_history in creditHistoryList:
617
    for credit_history in creditHistoryList: