JBS Canada Distribution Center (2024)

'; } else { var html = '

'; } $("#message").empty(); $("#message").append(html); $("#message").fadeIn(1000); setTimeout(function () { $("#message").fadeOut(1000); }, 60000); } function sortOrder() { //alert(""); var order = []; //loop trought each li... var iOrder = 1; $('#sortable li').each(function (e) { // TODO: remove the inogre Li var assetId = $(this).find('#assetId').val(); if (iOrder == 1) { $(this).css("border-top", "skyblue solid 10px"); } else { $(this).css("border-top", "1px solid #c5c5c5"); } // Ignore the deleted one. if ($('#imageStatus_' + assetId).val() == 'Ignore') return; if ($('#imageStatus_' + assetId).val() == 'Remove') return; //add each li position to the array... // the +1 is for make it start from 1 instead of 0 if ($('#Order_' + assetId).val() != iOrder) { window.assetDatas.push({ id: assetId }); } $(this).find('.imageorder').val(iOrder++); //$(this).find("data-id").val(iOrder++); }); } function addNewImage() { //need to be refreshed $("#sortable").sortable("refresh"); } var fadeTime = 300; $(function () { $("#sortable").sortable(); $("#sortable").disableSelection(); $("#sortable").sortable({ update: function (event, ui) { sortOrder(); } }); $(document).bind('drop dragover', function (e) { e.preventDefault(); }); window.imageDatas = []; window.assetDatas = []; //initPreview(); sortOrder(); initFileUpload(); $("#btn-save").click(function (e) { e.preventDefault(); e.stopPropagation(); var breakOut = false; if (window.assetDatas.length == 0 && window.imageDatas.length == 0) { confirmationSuccess("Nothing need to be saved!", true); return false; } // Remove the duplicate asset and new Ignored asset var uniqueAssetDatas = []; $.each(window.assetDatas, function (i, el) { if ($.inArray(el.id, uniqueAssetDatas) === -1) { if ($('#imageStatus_' + el.id).val() != 'Ignore') uniqueAssetDatas.push(el.id); } }); // Remove the duplicate image var uniqueimageDatas = []; $.each(window.imageDatas, function (i, el) { if ($.inArray(el.id, uniqueimageDatas.id) == -1) uniqueimageDatas.push(el) }); if (uniqueimageDatas.length == 0 && uniqueAssetDatas.length == 0) { confirmationSuccess("Nothing need to be saved!", true); window.imageDatas = []; window.assetDatas = []; return false; } // Check if any new added (onlY ADDED) asset has images. // Check if new added in window.assetDatas has image in window.imageDatas. // If YES, Remove the data in assetDatas, So the new Added will only post from window.imageDatas. $.each(uniqueAssetDatas, function (i, el) { var assetId = el; if ($('#imageStatus_' + assetId).val() != 'Add') return; var found = false; for (var i = 0; i < uniqueimageDatas.length; i++) { if (uniqueimageDatas[i].id == assetId) { found = true; uniqueAssetDatas.splice(i, 1); // uniqueAssetDatas.remove(el); break; } } if (!found) { confirmationSuccess("No image uploaded. Please add image before saving!", true); breakOut = true; return false; } return; }); if (breakOut) return; // Combine the assetdata to imageData if they is image changes in image data and also asset data change. So we don't need to post twice. $.each(uniqueimageDatas, function (i, el) { var assetId = el.id; var found = false; for (var i = 0; i < uniqueAssetDatas.length; i++) { if (uniqueAssetDatas[i] == assetId) { found = true; uniqueAssetDatas.splice(i, 1); break; } } return; }); // image with the data uniqueimageDatas.forEach(function (d) { var assetId = d.id; d.data.formData = { //Passing data projectId: $('#projectId').val(), assetId: assetId, displayDate: $('#DisplayDate_' + assetId).val(), source: $('#Source_' + assetId).val(), caption: $('#Caption_' + assetId).val(), order: $('#Order_' + assetId).val(), status: $('#imageStatus_' + assetId).val(), }, d.data.submit(); }) // Data change only without images uniqueAssetDatas.forEach(function (d) { var assetId = d; $.ajax( { url: "/Asset/uploadAssetImage", type: 'POST', dataType: 'json', data: { //Passing data projectId: $('#projectId').val(), assetId: assetId, displayDate:$('#DisplayDate_' + assetId).val(), source: $('#Source_' + assetId).val(), caption:$('#Caption_' + assetId).val(), order: $('#Order_' + assetId).val(), status: $('#imageStatus_' + assetId).val(), }, success: function (data) { var result = data.result; if (result) { var lastmodified = data.lastmodified; confirmationSuccess("Save successfully!", true); // Update the Last modified date filed in detail page. $('#lastmodified').text(lastmodified); return; } if (!result) { confirmationSuccess("Save Failed, Please try again!", true); breakOut = true; return false; } }, failure: function (result) { } }); }) if (breakOut) return; window.imageDatas = []; window.assetDatas = []; }); $("#btn-add").click(function (e) { e.preventDefault(); e.stopPropagation(); // this is a fake asset id used for drag and drop. var uploadFileId = getRandomInt(9999)+""; reloadAssetAndImage(0, uploadFileId, false,'Add','','','',''); }); function reloadAssetAndImage(oldassetId, newassetId, imageFromServer,status,displayDate,source,caption,order) { // add new uploadFileId = newassetId; var newAdd = ""; newAdd = '

  • ' + '' + '' + '' + '

    ' + '' + '

    '; if(imageFromServer) newAdd += 'JBS Canada Distribution Center (2)'; newAdd += '

    ' + '

    ' + '

    ' + '

    Order:

    ' + '

    ' + '

    Display Date:

    ' + '

    ' + '

    Caption:

    ' + '

    ' + '

    Source:

    ' + '

    ' + '

    ' + '
  • '; $(newAdd).fadeOut(fadeTime, function () { if(oldassetId == 0) $('#sortable').append(newAdd); else { if (oldassetId != 0) { $('#sortable li ').each(function () { if ($(this).find('#assetId').val() == oldassetId) $(this).replaceWith($(newAdd)); }) } } $(newAdd).fadeIn(fadeTime); }); sortOrder(); initEachFileUpload(uploadFileId) } function initFileUpload() { var dropzoneIds = []; $('#sortable li #assetId').each(function () { dropzoneIds.push($(this).val()); }) for (var d = 0; d < dropzoneIds.length; d++) { var currentId = dropzoneIds[d]; initEachFileUpload(currentId); } } // Every time the file upload added or initilazied function initEachFileUpload(currentId) { // check if image droped var fileuploadid = "#btnInfoImageUpload_" + currentId; $(fileuploadid).fileupload( { dropZone: $(fileuploadid), cache: false, url: "/Asset/uploadAssetImage", type: 'POST', dataType: 'json', contentType: false, processData: false, autoUpload: false, formData: { projectId: $('#projectId').val(), //assetId: $(imageupload).parent().parent().find('#assetId').val(), //displayDate: $(imageupload).parent().parent().find('#DisplayDate').val(), //source: $(imageupload).parent().parent().find('#Source').val(), //caption: $(imageupload).parent().parent().find('#Caption').val(), //order: $(imageupload).parent().parent().find('#Order').val(), }, //data: $('#uploadItemImageForm').serialize(), add: function (e, data) { e.stopPropagation(); e.preventDefault(); console.log(e.originalEvent.delegatedEvent.target); var targetId = e.originalEvent.delegatedEvent.target.id; var assetId = $('#' + targetId).parent().parent().find('#assetId').val(); //Remove the previous added one. var uniqueimageDatas = []; for (var i in window.imageDatas) { if (window.imageDatas[i].id == assetId) { window.imageDatas.splice(i, 1); break; } } //$.each(window.imageDatas, function (i, el) { // if (el.id == assetId) // window.imageDatas.array.splice(i, 1); //}); window.imageDatas.push({ id: assetId, data: data }); // Preview var prviewDiv = "#previewImage_" + assetId; var file = data.files[0]; var reader = new FileReader(); reader.addEventListener("load", function () { $(prviewDiv).fadeOut(fadeTime, function () { // convert image file to base64 string var bin = reader.result; var newFile = document.createElement('div'); $(newFile).addClass("image-dragdrop_title"); newFile.innerHTML = 'Image is ready : ' + file.name ; $(prviewDiv).empty().append(newFile); var img = document.createElement("img"); img.file = file; img.src = bin; $(prviewDiv).append(img); $(prviewDiv).find("img").addClass("image-dragdrop"); $(prviewDiv).fadeIn(fadeTime); }); }, false); if (file) { reader.readAsDataURL(file); } }, progress: function (e, data) { }, success: function (data) { var result = data.result; if (result) { // Update the asset id from database for New Added. var targetId = data.oldassetId; //var previousassetId = $('#' + targetId).parent().parent().find('#assetId').val(); var newassetid = data.newassetId; var lastmodified = data.lastmodified; // var iOrder = 1; var displayDate = $('#DisplayDate_' + targetId).val(); var source = $('#Source_' + targetId).val(); var caption = $('#Caption_' + targetId).val(); var order = $('#Order_' + targetId).val(); reloadAssetAndImage(targetId, newassetid, true, 'Exist',displayDate,source,caption,order); confirmationSuccess("Save successfully!", true); // Update the Last modified date filed in detail page. $('#lastmodified').text(lastmodified); return; } if (!result) { confirmationSuccess("Save Failed, Please try again!", true); return; } }, error: function (xhr, status) { } }); // Check if image deleted var deleteImage = "#btnDeleteImage_" + currentId; $(deleteImage).click(function (e) { if (window.confirm("Are you sure you want to remove this image? If yes, you still need to save to make it effective.")) { var imageStatus = "#imageStatus_" + currentId; // Hide and mark it is needed to be removed. $(deleteImage).parent().hide(); if ($(imageStatus).val() == "Exist") { $(imageStatus).val("Remove"); } if ($(imageStatus).val() == "Add") { $(imageStatus).val("Ignore"); } assetDatas.push({ id: currentId }); sortOrder(); } }); // Check if value changed var order = "#Order_" + currentId; $(order).on('change keydown paste input', function () { assetDatas.push({ id: currentId }); }); var displayDate = "#DisplayDate_" + currentId; $(displayDate).on('change keydown paste input', function () { assetDatas.push({ id: currentId }); }); var caption = "#Caption_" + currentId; $(caption).on('change keydown paste input', function () { assetDatas.push({ id: currentId }); }); var source = "#Source_" + currentId; $(source).on('change keydown paste input', function () { assetDatas.push({ id: currentId }); }); // $(displayDate).datepicker( { changeMonth: true, changeYear: true, showButtonPanel: true, dateFormat: 'M yy', //onClose: function (dateText, inst) { // if ($(window.event.srcElement).hasClass('ui-datepicker-close')) { // var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val(); // var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val(); // $(this).datepicker('setDate', new Date(year, month, 1)); // setDetailsDirty("true");; // } // //$(displayDate).valid(); //}, //beforeShow: function (input, inst) { // if ($(input).attr('readonly')) { // return false; // } // if (!$('#ui-datepicker-div').hasClass('')) { // $('#ui-datepicker-div').addClass(""); // } //} } ); } function getRandomInt(max) { return Math.floor(Math.random() * Math.floor(max)); } });

    JBS Canada Distribution Center (2024)

    FAQs

    Did JBS Canada break ground on a new $80 million facility? ›

    JBS Canada has broken ground on a new distribution centre in Brooks, Alta. Construction on the $80-million centre is expected to finish in Q4 2025. The centre is expected to increase JBS Canada's shipping capacity by 40 per cent, minimize errors, and improve worker safety.

    How do I contact JBS Canada? ›

    Thank you for visiting our JBS Food Canada home page. If you have any questions or concerns, please send your information and/or comments directly to the following email: JbsCanadaConsumer-Inq@jbssa.com, and we will ensure you receive a timely response.

    Who owns JBS Foods in Canada? ›

    What does JBS Canada do? ›

    JBS Canada is one of the largest beef companies in Canada, specializing in providing the best Canadian food products to consumers in more than 20 countries around the globe.

    How many cows are slaughtered by JBS? ›

    Across their global operations, JBS slaughters more than 13 million chickens, 128,000 pigs, and 77,000 cattle around the world every day.

    Did Tyson buy JBS? ›

    Tyson Foods Inc. plans to sell the company's Mexico and Brazil-based poultry operations to JBS SA. Tyson plans to use proceeds from the sale to pay down debt related to its acquisition of Hillshire Brands Inc. The all-cash deal is valued at $575 million.

    Who are JBS biggest customers? ›

    In its Annual and Sustainability 2017 Report, the company noted that its global customers included McDonald's, Burger King, Subway, Outback, KFC, Pizza Hut and Wendy's.

    What does JBS stand for? ›

    JBS was initially established as a slaughtering business in 1953 by José Batista Sobrinho, a rancher from Anápolis. The company's name comes from the founder's initials. Sobrinho's business began to expand when the establishment of Brazil's capital, Brasilia, brought a new market within reach of his ranch.

    Who owns JBS group? ›

    Shareholders: JBS S.A.
    NameEquities%
    Batista Family 48.48 %1,075,419,89848.48 %
    BNDES Participações SA 20.81 %461,661,10120.81 %
    Itaú Unibanco SA 0.3473 %7,702,8970.3473 %
    BB Gestão de Recursos DTVM SA 0.3081 %6,833,8850.3081 %
    1 more row

    Is JBS listed in USA? ›

    JBS Expects US Listing to Be Delayed as It Lets More Shareholders Vote on Deal. Brazil's JBS SA says its planned listing in the US will likely be delayed into the second half of 2024 as the world's largest meat producer works to allow more investors to vote on the move.

    Does JBS own Cargill? ›

    On January 14, 2013, JBS USA completed the purchase of the Brooks facility, a second XL beef facility in Calgary, Alberta, and a feedyard. In July 2015, JBS USA purchased the U.S. pork processing business of Cargill Meat Solutions for $1.45 billion.

    What does JBS own in the US? ›

    JBS USA is the majority shareholder (78.3%) of Pilgrim's Pride Corporation (Pilgrim's), with operations in the U.S. and Mexico, owner of Moy Park, a leading poultry and prepared foods company in the U.K. and Europe and the owner of Tulip Limited, a leading pork and prepared foods company in the U.K.

    Who runs JBS? ›

    JBS CEO, Wesley Batista, at his Sao Paulo office. The story goes that when Wesley Mendonça Batista arrived in Greeley, Colo. in 2007 from Brazil he sported the basic cowboy gear of jeans, boots and hat.

    Who is the largest beef producer company in the world? ›

    1. JBS S.A. JBS S.A. is the largest beef producer globally, with operations spanning across several continents. Headquartered in Brazil, JBS operates modern processing facilities and distribution networks, supplying beef products to markets worldwide.

    How much money does JBS make a year? ›

    According to JBS's latest financial reports the company's current revenue (TTM ) is $281.46 B. In 2022 the company made a revenue of $72.74 B an increase over the revenue in the year 2021 that were of $64.87 B. The revenue is the total amount of income that a company generates by the sale of goods or services.

    What happened to JBS meat company? ›

    JBS was targeted by a cyberattack in late May 2021, which forced the company to temporarily shut down slaughterhouses in Australia, Canada and the United States. The company stood down 7,000 workers across Australian operations and up to 3,000 workers in Canada and the United States.

    How many plants does JBS have in USA? ›

    JBS Foods USA

    We are a leading producer of beef with nine facilities in the U.S. We offer beef products to more than 44 countries on six continents and employ more than 26,000 people.

    How much money is JBS worth? ›

    Market cap: $13.24 Billion

    As of September 2024 JBS has a market cap of $13.24 Billion. This makes JBS the world's 1336th most valuable company by market cap according to our data.

    Top Articles
    13 Ways to Lower Your Car Insurance Rate | Liberty Mutual
    For One Baldur's Gate 3 Race, Romance Is Very, Very Different
    Golden Abyss - Chapter 5 - Lunar_Angel
    1970 Chevrolet Chevelle SS - Skyway Classics
    Back to basics: Understanding the carburetor and fixing it yourself - Hagerty Media
    Kostenlose Games: Die besten Free to play Spiele 2024 - Update mit einem legendären Shooter
    Urinevlekken verwijderen: De meest effectieve methoden - Puurlv
    Craigslistdaytona
    Shuiby aslam - ForeverMissed.com Online Memorials
    Morocco Forum Tripadvisor
    FAQ: Pressure-Treated Wood
    I Wanna Dance with Somebody : séances à Paris et en Île-de-France - L'Officiel des spectacles
    Sivir Urf Runes
    Illinois Gun Shows 2022
    Vanessa West Tripod Jeffrey Dahmer
    boohoo group plc Stock (BOO) - Quote London S.E.- MarketScreener
    Marvon McCray Update: Did He Pass Away Or Is He Still Alive?
    Gazette Obituary Colorado Springs
    Tips and Walkthrough: Candy Crush Level 9795
    Loslaten met de Sedona methode
    Mini Handy 2024: Die besten Mini Smartphones | Purdroid.de
    D2L Brightspace Clc
    Elite Dangerous How To Scan Nav Beacon
    Cable Cove Whale Watching
    Redbox Walmart Near Me
    +18886727547
    Broken Gphone X Tarkov
    Citibank Branch Locations In Orlando Florida
    Fedex Walgreens Pickup Times
    Edict Of Force Poe
    Acadis Portal Missouri
    Boggle BrainBusters: Find 7 States | BOOMER Magazine
    Case Funeral Home Obituaries
    The disadvantages of patient portals
    8 Ball Pool Unblocked Cool Math Games
    Dee Dee Blanchard Crime Scene Photos
    Sukihana Backshots
    Jack In The Box Menu 2022
    Who Is Responsible for Writing Obituaries After Death? | Pottstown Funeral Home & Crematory
    Nail Salon Open On Monday Near Me
    Sofia With An F Mugshot
    COVID-19/Coronavirus Assistance Programs | FindHelp.org
    How Big Is 776 000 Acres On A Map
    Mynord
    M&T Bank
    Dobratz Hantge Funeral Chapel Obituaries
    UNC Charlotte Admission Requirements
    Shannon Sharpe Pointing Gif
    Superecchll
    Chitterlings (Chitlins)
    Gainswave Review Forum
    Latest Posts
    Article information

    Author: Prof. An Powlowski

    Last Updated:

    Views: 5427

    Rating: 4.3 / 5 (44 voted)

    Reviews: 83% of readers found this page helpful

    Author information

    Name: Prof. An Powlowski

    Birthday: 1992-09-29

    Address: Apt. 994 8891 Orval Hill, Brittnyburgh, AZ 41023-0398

    Phone: +26417467956738

    Job: District Marketing Strategist

    Hobby: Embroidery, Bodybuilding, Motor sports, Amateur radio, Wood carving, Whittling, Air sports

    Introduction: My name is Prof. An Powlowski, I am a charming, helpful, attractive, good, graceful, thoughtful, vast person who loves writing and wants to share my knowledge and understanding with you.