× Bidding has ended on this item.
"); if (!$(this).is(":visible")) { $(this).fadeTo(1000, 1, function () { $(this).slideDown(500); }); } }); } if (data.Accepted) { //prepare success system message systemMessage = "
×" + contextMessageDictionary["ActionSuccess"] + "
"; if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } //render checkout button if a lineitem was returned //EXCEPT: when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices && ownerAllowsInstantCheckout && data.LineItemID) { var checkoutUrl = 'https://tkauctions.ca/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f9051485%2fThermoflask-Stainlesssteel-Bottle-12-L-40-oz-2-pack'; if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } if (data.LineItemID && !highlightCheckoutButtonForBuyNow) { //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=TKAuctions&template=ask_listing_question&listingID=9051486&returnUrl=%2FEvent%2FLotDetails%2F9051485%2FThermoflask-Stainlesssteel-Bottle-12-L-40-oz-2-pack'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (true) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=9051486&Receiver=TKAuctions' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } else { //ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } else { //Context is null, but ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } }); // render a checkout button if: // // - the lot ends successfully, and // - the winner is viewing, but only if // - auto gen invoices is disabled // // mainly to prevent one invoice per LOT per buyer, rather than the generally preferred one invoice per EVENT per buyer $(document).on("SignalR_UpdateListingStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; if (autoGenerateInvoices || ownerAllowsInstantCheckout) { if (data.Status == "Successful" && data.LineItemID && data.LineItemPayerUN == "") { //when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices) { var checkoutUrl = 'https://tkauctions.ca/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f9051485%2fThermoflask-Stainlesssteel-Bottle-12-L-40-oz-2-pack'; var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { //"/Account/SendListingMessage?receiver=tester1&template=ask_listing_question&listingID=166614&returnUrl=%2FListing%2FDetails%2F166614%2Ftest-item-J" var contactSellerUrl = '/Account/SendListingMessage?receiver=TKAuctions&template=ask_listing_question&listingID=9051486&returnUrl=%2FEvent%2FLotDetails%2F9051485%2FThermoflask-Stainlesssteel-Bottle-12-L-40-oz-2-pack'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (true) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=9051486&Receiver=TKAuctions' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } }); $(".GoToPrevLot").on("click", function () { var thisLotOrder = 645; var lastLotOrder = 808; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 8847161, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 645; var lastLotOrder = 808; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 8847161, lotOrder: (thisLotOrder + 1) }) .done(function (data) { console.log("next lot result: ", data); if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(document).on("SignalR_UpdateInvoiceStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; jslog("SignalR_UpdateInvoiceStatus (listing, invoice, status, payer): " + data.ListingID + ", " + data.InvoiceID + ", " + data.InvoiceStatus + ", " + data.InvoicePayerUN); //show "View Invoice" or "Checkout" button if applicable if (data.InvoicePayerUN == aweUserName) { //get result of /RealTime/IsInvoicePayable?invoiceId=nnnnnn var promise = Proxy.invokeAsync("IsInvoicePayable", { invoiceId: data.InvoiceID }, function(result) { var checkoutUrl = 'https://tkauctions.ca/Account/Invoice/' + data.InvoiceID; checkoutUrl += '?returnUrl=%2fEvent%2fLotDetails%2f9051485%2fThermoflask-Stainlesssteel-Bottle-12-L-40-oz-2-pack'; if (result.isPayable) { //invoice is payable if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } if ($("a.btn__detail__checkout").length == 0) { //render checkout button if one does not already exist var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; $(".detail__context-menu").prepend(checkoutHtml).show(); jslog("checkout button rendered for invoice #" + data.InvoiceID); } } else { //the invoice is not payable, so instead of 'checkout' button, render 'view invoice' button if one does not already exist if ($("a.btn__detail__invoices").length == 0) { var viewInvoiceHtml = '
' + '' + '' + '' + '' + '' + '' + 'View Invoice' + '' + '' + '
'; $(".detail__context-menu").append(viewInvoiceHtml).show(); jslog("view invoice button rendered for invoice #" + data.InvoiceID); } } //only render the contact and/or feedback buttons if either // a) the web.config setting HighlightCheckoutButtonForBuyNow is set to False, or // b) the invoice is not payable if (!highlightCheckoutButtonForBuyNow || !result.isPayable) { //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=TKAuctions&template=ask_listing_question&listingID=9051486&returnUrl=%2FEvent%2FLotDetails%2F9051485%2FThermoflask-Stainlesssteel-Bottle-12-L-40-oz-2-pack'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for invoice #" + data.InvoiceID); } //render feedback button if (true) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=9051486&Receiver=TKAuctions' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for invoice #" + data.InvoiceID); } } }, function(error) { jslog("Error retrieving invoice status (1): " + error); } ); promise.fail(function (jqXHR, textStatus) { jslog("Error retrieving invoice status (2): " + textStatus); }); } }); });
Back To Catalog
Shipping Information
Please note that all items listed on our platform are available for local pickup only. By placing a bid on any item, you are agreeing to the following terms and conditions:
Payment and pickup must be made within the specified time frame. Failure to do so will result in your order being considered abandoned. Abandoned orders are not refunded
By bidding, you are entering into a legally binding contract to both pay for and retrieve the items. Failure to comply with this agreement may result in legal action and permanent removal from our platform.
We reserve the right to use the payment method provided to obtain payment.
We also reserve the right to refuse or cancel any bid at our discretion.
By using our platform and bidding on any items, you are acknowledging that you have read, understood, and agreed to these terms and conditions.
please note that your order will be shipped to the Pickup Location that is on file at the time of auction close. It is your responsibility to ensure that you have selected the correct pickup location before the auction closes.
Please take note of the following pickup locations and hours:
Hamilton -200 Centennial Pkwy N, Hamilton. April 8th and 9th from 10am-6pm
Brantford -366 Grand River Ave, Brantford, Ontario April 6thand April 8st from 9am-6pm
If you fail to collect your items within the specified pickup times, you will be charged additional fees of up to 20% of the invoice total, with a minimum of $5 per item. These fees will be automatically charged to the card on file.
If we receive your payment, your order will be made available for pickup the following week. However, if we do not receive your payment, your order will be considered abandoned and relisted without refund.
If you have any further questions, please contact us at Auction@tkliquidation.com.
This Auction Uses Proxy Bidding.
Active
Thermoflask Stainless-steel Bottle, 1.2 L (40 oz.) 2 pack 
Condition: Used MSRP: 29
- Current Price $5.00 ( ) No Reserve
-
Your Maximum Bid Is $0.00
- 1 Bid(s) View Bid History
- High Bidder: A.T.
TKAuctions Brantford, Ontario CA
1
Contact Seller Payment Options Seller Accepts PayPal
Seller Accepts Credit Cards
Details
- MSRP 29
- Lot # 26245
- System ID # 9051485
- End Date
- Start Date
Description
Condition: Used
Inspection: Was used and needs a good clean inside before use. Small scuff on blue bottle
Below is the manufacturers description. We do not guarantee this description to accurately describe the products being sold. Please bid accordingly
The double-wall vacuum insulated stainless-steel bottles prevent outside temperatures from affecting the inside beverage temperature, so your drink stays just the way you like it — all day long. The 1.2 L (40 oz.) size is great for a big thirst, minimal refills, or to share. Whether you’re headed to yoga, the gym, or just out and about, this bottle will keep you refreshed and hydrated all day long.
Features:
1.2 L (40 oz.) Stainless steel water bottles
Wide mouth for easy filling and cleaning
Dishwasher safe
Leakproof spout lid with quick open cap that keeps your drinking area clean
Protective silicone bumper
Double-wall vacuum insulated with durable powder coat
Includes:
2 × stainless steel bottles
Specifications:
Dimensions (L × W × H): 22 cm × 12 cm × 30.5 cm (8.6. in. × 4.7 in. × 12 in.)
Weight: 1.2 kg (2.7 lbs.)