Subversion Repositories SmartDukaan

Rev

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

Rev 11526 Rev 11592
Line 833... Line 833...
833
    def isInsuranceDetailPresent(self, addressId):
833
    def isInsuranceDetailPresent(self, addressId):
834
        try:
834
        try:
835
            return is_insurance_detail_present(addressId)
835
            return is_insurance_detail_present(addressId)
836
        finally:
836
        finally:
837
            self.closeSession()
837
            self.closeSession()
-
 
838
            
-
 
839
    def validateCartPlus(self, cartId, sourceId):
-
 
840
        return validate_cart(cartId, sourceId)
838
    
841
    
839
    def closeSession(self, ):
842
    def closeSession(self, ):
840
        CartDataAccessors.close_session()
843
        CartDataAccessors.close_session()
841
        UserDataAccessors.close_session()
844
        UserDataAccessors.close_session()
842
 
845