Subversion Repositories SmartDukaan

Rev

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

Rev 18794 Rev 18803
Line 12... Line 12...
12
    to_t_attribute, to_t_rechargeTransaction, to_t_frc, to_t_hotspot, \
12
    to_t_attribute, to_t_rechargeTransaction, to_t_frc, to_t_hotspot, \
13
    to_t_sourcedetail, to_t_amazonorder, to_t_storeOrderDetail, \
13
    to_t_sourcedetail, to_t_amazonorder, to_t_storeOrderDetail, \
14
    to_t_storeOrderCollection, to_t_hotspotServiceMatrix, to_t_ebayOrder, \
14
    to_t_storeOrderCollection, to_t_hotspotServiceMatrix, to_t_ebayOrder, \
15
    to_t_amazonFbaSalesSnapshot, to_t_snapdealOrder, to_t_flipkartOrder, \
15
    to_t_amazonFbaSalesSnapshot, to_t_snapdealOrder, to_t_flipkartOrder, \
16
    to_t_amazonFbaOrderReturn, to_t_flipkartAdvantageOrder, to_t_hsOrder, to_t_Creditor, \
16
    to_t_amazonFbaOrderReturn, to_t_flipkartAdvantageOrder, to_t_hsOrder, to_t_Creditor, \
17
    to_t_CreditHistory, to_t_UserSanction, to_t_LoanHistory, to_t_PaginatedCreditHostory, \
17
    to_t_CreditHistory, to_t_UserSanction, to_t_LoanHistory, to_t_PaginatedCreditHistory, \
18
    to_t_PaginatedLoanHistory, to_t_PaginatedUserSanction
18
    to_t_PaginatedLoanHistory, to_t_PaginatedUserSanction
19
from shop2020.model.v1.order.impl.DataAccessors import create_transaction, \
19
from shop2020.model.v1.order.impl.DataAccessors import create_transaction, \
20
    get_transactions_for_customer, get_transaction_status, get_line_items_for_order, \
20
    get_transactions_for_customer, get_transaction_status, get_line_items_for_order, \
21
    get_transaction, get_transactions_for_shopping_cart_id, \
21
    get_transaction, get_transactions_for_shopping_cart_id, \
22
    change_transaction_status, get_orders_for_customer, get_orders_for_transaction, \
22
    change_transaction_status, get_orders_for_customer, get_orders_for_transaction, \
Line 2743... Line 2743...
2743
        finally:
2743
        finally:
2744
            close_session()
2744
            close_session()
2745
            
2745
            
2746
    def getLimitedCreditHistoryRecords(self, paymentId, userId, creditorId, limit, offset):
2746
    def getLimitedCreditHistoryRecords(self, paymentId, userId, creditorId, limit, offset):
2747
        try:
2747
        try:
2748
            return get_credit_history_records_paginated(paymentId, userId, creditorId, None, limit, offset)
2748
            return to_t_PaginatedCreditHistory(get_credit_history_records_paginated(paymentId, userId, creditorId, None, limit, offset))
2749
        finally:
2749
        finally:
2750
            close_session()
2750
            close_session()
2751
    
2751
    
2752
    def getLimitedLoanHistoryRecords(self, paymentId, userId, creditorId, limit, offset):
2752
    def getLimitedLoanHistoryRecords(self, paymentId, userId, creditorId, limit, offset):
2753
        try:
2753
        try:
2754
            return get_loan_history_records_paginated(paymentId, userId, creditorId, None, limit, offset)
2754
            return to_t_PaginatedLoanHistory(get_loan_history_records_paginated(paymentId, userId, creditorId, None, limit, offset))
2755
        finally:
2755
        finally:
2756
            close_session()
2756
            close_session()
2757
            
2757
            
2758
    def getUserSanctionsDetailsAsPerLimit(self, userId, creditorId, limit, offset):
2758
    def getUserSanctionsDetailsAsPerLimit(self, userId, creditorId, limit, offset):
2759
        try:
2759
        try: