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://machinerymax.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f11882810%2fLOT-118-27-SHEETS-OF-LAUAN-PLYWOOD-18-THICK-96-X-48-LOT-OF-27'; 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=eamachinery&template=ask_listing_question&listingID=11882811&returnUrl=%2FEvent%2FLotDetails%2F11882810%2FLOT-118-27-SHEETS-OF-LAUAN-PLYWOOD-18-THICK-96-X-48-LOT-OF-27'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; //$(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=11882811&Receiver=eamachinery' .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://machinerymax.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f11882810%2fLOT-118-27-SHEETS-OF-LAUAN-PLYWOOD-18-THICK-96-X-48-LOT-OF-27'; 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=eamachinery&template=ask_listing_question&listingID=11882811&returnUrl=%2FEvent%2FLotDetails%2F11882810%2FLOT-118-27-SHEETS-OF-LAUAN-PLYWOOD-18-THICK-96-X-48-LOT-OF-27'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; //$(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=11882811&Receiver=eamachinery' .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 = 129; var lastLotOrder = 134; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 11510655, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 129; var lastLotOrder = 134; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 11510655, 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 = rwx_Proxy.invokeAsync("IsInvoicePayable", { invoiceId: data.InvoiceID }, function(result) { var checkoutUrl = 'https://machinerymax.com/Account/Invoice/' + data.InvoiceID; checkoutUrl += '?returnUrl=%2fEvent%2fLotDetails%2f11882810%2fLOT-118-27-SHEETS-OF-LAUAN-PLYWOOD-18-THICK-96-X-48-LOT-OF-27'; 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=eamachinery&template=ask_listing_question&listingID=11882811&returnUrl=%2FEvent%2FLotDetails%2F11882810%2FLOT-118-27-SHEETS-OF-LAUAN-PLYWOOD-18-THICK-96-X-48-LOT-OF-27'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; //$(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for invoice #" + data.InvoiceID); } //render feedback button if (false) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=11882811&Receiver=eamachinery' .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); }); } }); }); $(document).ready(function () { const timer_interval = setInterval(function () { $('.refernce-time-id').each(function () { const { day: days, hours: hours, minutes: minutes, seconds: seconds } = parseDuration($(this).text()); $(".signal-r-custom-design .clock-block:first span:eq(1)").text((days == '1' || days == '0')?"DAY": "DAYS"); $(".signal-r-custom-design .clock-block:first span:first").text(days); $(".signal-r-custom-design .clock-block:nth-of-type(2) span:first").text(hours); $(".signal-r-custom-design .clock-block:nth-of-type(3) span:first").text(minutes); $(".signal-r-custom-design .clock-block:last span:first").text(seconds); }); }, 500); $('[data-toggle="tooltip"]').tooltip() // function for parsing the date and day from Timer function parseDuration(durationString) { const components = durationString.split(/[\s:]+/); const day = components[0]; const hours = components[2]; const minutes = components[3]; const seconds = components[4]; if (day == '0' && hours == '00' && minutes == '00' && seconds == '00') { clearInterval(timer_interval); // hide ActionBox $('.awe-rt-BuyBox').slideUp(500); $(".signal-r-custom-design").css("display", "none"); } return { day, hours, minutes, seconds }; } })
Current Auctions / 130 LOTS IN THIS COMPLETE COMPANY CLOSURE @ BOB-LEON PLASTICS in SACRAMENTO, CA
#LOT118
Ask Seller A Question
`; } else if (total_lot_image_count == 4) { var prev_1 = 0; var prev_2 = 1; var prev_3 = 2; var prev_4 = 3; var prev_1_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_1}"]:first`).find('img').attr('src'); var prev_2_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_2}"]:first`).find('img').attr('src'); var prev_3_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_3}"]:first`).find('img').attr('src'); var prev_4_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_4}"]:first`).find('img').attr('src'); items = ` `; big_images_items = `
`; } else if (total_lot_image_count == 3) { var prev_1 = 0; var prev_2 = 1; var prev_3 = 2; var prev_1_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_1}"]:first`).find('img').attr('src'); var prev_2_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_2}"]:first`).find('img').attr('src'); var prev_3_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_3}"]:first`).find('img').attr('src'); items = ` `; big_images_items = `
`; } else if (total_lot_image_count == 2) { var prev_1 = 0; var prev_2 = 1; var prev_1_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_1}"]:first`).find('img').attr('src'); var prev_2_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_2}"]:first`).find('img').attr('src'); items = ` `; big_images_items = `
`; } else if (total_lot_image_count == 1) { var prev_1 = 0; var prev_1_image_source = $(`.multi-lot-carousel-container-1 [data-count="${prev_1}"]:first`).find('img').attr('src'); items = ``; big_images_items = `
`; } var data = `
${big_images_items}
` } $('body').append(data); } function cross_button() { function_reset_zoom(); if (auto_play_flag === true) { clearInterval(auto_play); auto_play_flag = false; } $('body .lots-corousel-popup-container').remove() } function next_button(iter) { function_reset_zoom(); if (total_lot_image_count >= 5) { //remove prev_2, add next_2, make next_1 as active-lot-slide var next_2_data_count = $(`.lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:last`).data('count'); var new_data_count = (next_2_data_count + 1) % total_lot_image_count; //fetching the new element count var new_image_source = $(`.multi-lot-carousel-container-1 [data-count="${new_data_count}"]:first`).find('img').attr('src'); var right_side_item = ``; var right_big_image_item = `
`; $(".lots-corousel-popup-container .big-image-gallery-container").append(right_big_image_item); $(".lots-corousel-popup-container .multi-lots-image-container-2").append(right_side_item); $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:first").css({ "animation": "next-remove-anim 450ms ease-out" }); $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:first").css({ "animation": "next-big-remove-anim 350ms ease-out" }); $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:first").on("animationend", () => { $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:first").remove(); if (iter === true) { next_button(false) } }) $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:first").on("animationend", () => { $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:first").remove(); }) $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:last").css({ "animation": "next-anim 450ms ease-out" }) $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:last").css({ "animation": "next-big-anim 350ms ease-out" }) var active_data_count = $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide.active-lot-slide").data('count') $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide.active-lot-slide").removeClass('active-lot-slide'); $(`.lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide[data-count="${(active_data_count + 1) % total_lot_image_count}"]`).addClass('active-lot-slide'); } else { var current_data_count = $("#popup-big-image-id").parent().data('count'); var new_data_count = (current_data_count + 1) % total_lot_image_count; var new_image_source = $(`.lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide[data-count="${new_data_count}"]`).find('img').attr('src'); $("#popup-big-image-id").attr('src', new_image_source); $("#popup-big-image-id").parent().data('count', new_data_count); } } function prev_button(iter) { function_reset_zoom(); if (total_lot_image_count >= 5) { //remove next_2, add prev_2, make prev_1 as active-lot-slide var prev_2_data_count = $(`.lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:first`).data('count'); var new_data_count = ((total_lot_image_count + prev_2_data_count - 1) % total_lot_image_count); //fetching the new element count var new_image_source = $(`.multi-lot-carousel-container-1 [data-count="${new_data_count}"]:first`).find('img').attr('src'); var left_side_item = `` var left_big_image_item = `
`; $(".lots-corousel-popup-container .big-image-gallery-container").prepend(left_big_image_item); $(".lots-corousel-popup-container .multi-lots-image-container-2").prepend(left_side_item); $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:last").css({ "animation": "next-remove-anim 450ms ease-out" }) $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:last").css({ "animation": "next-big-remove-anim 350ms ease-out" }); $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:last").on("animationend", () => { $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:last").remove(); if (iter === true) { prev_button(false) } }) $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:last").on("animationend", () => { $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:last").remove(); }) $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide:first").css({ "animation": "next-anim 450ms ease-out" }) $(".lots-corousel-popup-container .big-image-gallery-container .big-lot-image-slide:first").css({ "animation": "next-big-anim 350ms ease-out" }) var active_data_count = $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide.active-lot-slide").data('count') $(".lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide.active-lot-slide").removeClass('active-lot-slide'); $(`.lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide[data-count="${((total_lot_image_count + active_data_count - 1) % total_lot_image_count)}"]`).addClass('active-lot-slide'); } else { var current_data_count = $("#popup-big-image-id").parent().data('count'); var new_data_count = ((total_lot_image_count + current_data_count - 1) % total_lot_image_count); var new_image_source = $(`.lots-corousel-popup-container .multi-lots-image-container-2 .lot-slide[data-count="${new_data_count}"]`).find('img').attr('src'); $("#popup-big-image-id").attr('src', new_image_source); $("#popup-big-image-id").parent().data('count', new_data_count); } } function lot_click_button(ele) { if (!$(ele).hasClass("active-lot-slide")) { if ($(ele).next().hasClass("active-lot-slide") || $(ele).next().next().hasClass("active-lot-slide")) { if ($(ele).next().hasClass("active-lot-slide")) { prev_button(false); } else { prev_button(true); } } else if ($(ele).prev().hasClass("active-lot-slide") || $(ele).prev().prev().hasClass("active-lot-slide")) { if ($(ele).prev().hasClass("active-lot-slide")) { next_button(false); } else { next_button(true); } } } else { } } function auto_play_button() { function_reset_zoom(); if (auto_play_flag === false) { $(".single-big-lot-image .auto-play-button-popup").css("display", "none"); $(".single-big-lot-image .pause-button-popup").css("display", "block"); auto_play = setInterval(next_button, 2000); auto_play_flag = true; } } function stop_auto_play_button() { if (auto_play_flag === true) { $(".single-big-lot-image .pause-button-popup").css("display", "none"); $(".single-big-lot-image .auto-play-button-popup").css("display", "block"); clearInterval(auto_play); auto_play_flag = false; } } function zoom_out_button() { if (track_zoom_in > 0) { if (total_lot_image_count >= 5) { $(".popup-big-image").css("transform", `scale(${(zoom_array_value[track_zoom_in - 1] - 0.5)})`); } if (total_lot_image_count < 5 && total_lot_image_count >= 1) { $("#popup-big-image-id").css("transform", `scale(${(zoom_array_value[track_zoom_in - 1] - 0.5)})`); } track_zoom_in--; if (track_zoom_in < zoom_array_count) { //enabled the zoom in if ($(".single-big-lot-image .zoom-in-button-popup").hasClass("pointer-events-none")) { $(".single-big-lot-image .zoom-in-button-popup").removeClass("pointer-events-none") } } } if (track_zoom_in <= 0) { //disabled the zoom out $(".single-big-lot-image .zoom-out-button-popup").addClass("pointer-events-none"); } } function zoom_in_button() { //standard value is 1 if (track_zoom_in < zoom_array_count) { if (total_lot_image_count >= 5) { $(".popup-big-image").css("transform", `scale(${zoom_array_value[track_zoom_in]})`); } if (total_lot_image_count < 5 && total_lot_image_count >= 1) { $("#popup-big-image-id").css("transform", `scale(${zoom_array_value[track_zoom_in]})`); } track_zoom_in++; if (track_zoom_in > 0) { //enable the zoom out if ($(".single-big-lot-image .zoom-out-button-popup").hasClass("pointer-events-none")) { $(".single-big-lot-image .zoom-out-button-popup").removeClass("pointer-events-none") } } } if (track_zoom_in === zoom_array_count) { //disabled the zoom in $(".single-big-lot-image .zoom-in-button-popup").addClass("pointer-events-none"); } } function function_reset_zoom() { track_zoom_in = 0; if ($(".single-big-lot-image .zoom-in-button-popup").hasClass("pointer-events-none")) { $(".single-big-lot-image .zoom-in-button-popup").removeClass("pointer-events-none") } if (!$(".single-big-lot-image .zoom-out-button-popup").hasClass("pointer-events-none")) { $(".single-big-lot-image .zoom-out-button-popup").addClass("pointer-events-none"); } if (total_lot_image_count >= 5) { $(".popup-big-image").css("transform", `scale(${zoom_array_value[track_zoom_in] - 0.5})`); } if (total_lot_image_count < 5 && total_lot_image_count >= 1) { $("#popup-big-image-id").css("transform", `scale(${zoom_array_value[track_zoom_in] - 0.5})`); } }
LOT# 118 (27) SHEETS OF LAUAN PLYWOOD 1/8" THICK * 96" X 48" LOT OF 27 Ended
BOB-LEON PLASTICS & COUNTERTOPS 5151 FRANKLIN BLVD SACRAMENTO, CA 95820
- Winning Bid : $151.00 USD Sold
- 16 Bid(s)
- High Bidder: B****y