Reset Password - Reyes (2024)

Skip to content

Current Employees

Current Employee

JOBS FOR CURRENT EMPLOYEES

By clicking on the Current Employee Job Search button, you are confirming that you are a current employee of Reyes Family of Businesses. Only applications from current Reyes Family of Business employees will be accepted via this link.

I am a Current Employee

If you are not a current employee, view and apply for jobs as an external applicant.

Search Jobs

  • English
    • Canadian French
  • English
    • Canadian French

Current Employees

JOBS FOR CURRENT EMPLOYEES

By clicking on the Current Employee Job Search button, you are confirming that you are a current employee of Reyes Family of Businesses. Only applications from current Reyes Family of Business employees will be accepted via this link.

I am a Current Employee

If you are not a current employee, view and apply for jobs as an external applicant.

Search Jobs

Job Search

Menu

Reset Passwordsomesh2023-09-07T04:54:46+00:00

Reset Password - Reyes (11)

Widget Title

View 17 jobs >

Reset Password - Reyes (12)

Widget Title

View 196 jobs >

Reset Password - Reyes (13)

Widget Title

View 132 jobs >

Reset Password - Reyes (14)

Widget Title

View 208 jobs >

Reset Password - Reyes (15)

Widget Title

View 43 jobs >

SITEMAP

  • AREAS OF TALENT
  • LOCATIONS
  • WHAT SETS US APART
  • EVENTS

OUR BUSINESSES

  • REYES HOLDINGS
  • REYES BEVERAGE GROUP
  • MARTIN BROWER
  • REYES COCA-COLA BOTTLING
  • REYES FLEET MANAGEMENT

SOCIAL

EMPLOYEES

  • EMPLOYEE JOB SEARCH
  • PRIVACY POLICY
  • NEWS

©2021 REYES HOLDINGS

' return output; } this.removeMarker = function() { jQuery('[data-marker-name="'+this.name+'"]').remove(); delete this.map.mapMarkers[this.name]; this.map.openedModals.removeElement(this.modal); } this.show = function() { this.markerContainer.append(this.generateMarker()); } } // MapMarker class end function MarkerModal(modalTitle, content, linkedMapMarker) { this.title = modalTitle; this.linkedMapMarker = linkedMapMarker; // linked to modal map marker object this.content = content; this.positionedElemOffsetX = null; this.positionedElemOffsetY = null; self = this; this.generateModal = function() { output = '

' + this.title + '

'; output += '

' + this.content + '

'; output += '

'; return output; } //Added by Somesh for Location data in bottom this.locData = function() { output = loc_details = "

"+ this.title +"

"+ this.content +"

"; return output; } this.isModalActive = function() { return (jQuery('[data-marker-name="' + this.linkedMapMarker.name + '"]').hasClass('active')); } this.closeModal = function() { jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"] .hmap_marker_content').remove(); //Added by Somesh to remove existing location after click on another location jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').parent().parent().find('.location_details').remove(); this.linkedMapMarker.map.openedModals.removeElement(this); this.linkedMapMarker.deactivate(); this.linkedMapMarker.unsetCurrent(); if (this.linkedMapMarker.map.openedModals.length < 1) { this.linkedMapMarker.map.maxZindex = 2; }; } this.openModal = function() { this.linkedMapMarker.activate(); this.linkedMapMarker.setCurrent(); // generate modal and insert it into block with clicked map marker; jQuery('[data-marker-name="' + this.linkedMapMarker.name + '"]').append(this.generateModal()); //Added by Somesh for appending Location data in bottom jQuery('.location_data').append(this.locData()); // add currently opened modal to array with all opened modals; this.linkedMapMarker.map.openedModals.push(this); // center opened modal on map marker (css); this.clearPosition(); } this.toggleModal = function() { this.openModal(); // if ( ! this.isModalActive() ) { // this.openModal(); // } // else { // this.closeModal(); // } } this.clearPosition = function() { $markerContentWidth = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content').outerWidth(); $markerContentHeight = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content').outerHeight(); // if modal content block width is grater than window width set modal with to window width if ($markerContentWidth > jQuery(window).outerWidth()) { $markerContentWidth = jQuery(window).outerWidth()-1; } $markerWidth = jQuery('.hmap_marker').outerWidth(); $markerHeight = jQuery('.hmap_marker').outerHeight(); $positionedElem = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content'); self.positionedElemOffsetX = -($markerContentWidth/2)+$markerWidth/2; self.positionedElemOffsetY = $markerHeight/2; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth() }); // if modal is off screen changes its left/right position until modal is fully on screen whileOffScreen(); } function whileOffScreen() { // while is overflowing screen on the left while (($positionedElem.offset().left < 0)&(!($positionedElem.offset().left + $markerContentWidth > jQuery(window).outerWidth()))) { self.positionedElemOffsetX += 1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } // while is overflowing screen on the rifht while (($positionedElem.offset().left + $markerContentWidth > jQuery(window).outerWidth())&(!($positionedElem.offset().left < 0))) { self.positionedElemOffsetX += -1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } // while is overflowing srceen on top while($positionedElem.offset().top<0) { self.positionedElemOffsetY += -1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } } } // MarkerModal class end // Required functionality methods and functions Array.prototype.removeElement = function(elem) { var index = this.indexOf(elem); if (index > -1) { this.splice(index, 1); } } function generateName(namebase) { return namebase+Math.floor((Math.random() * 1000) + 1); } function generateUniqueMarkerName(map, name) { var namebase = 'mapMarker'; var objname; // check if param name is specified, if so use its name and check for duplicates if(typeof name !== 'undefined') { objname = name; } else { objname = generateName(namebase); } var infiniteLoopCheck = 0; while (map.mapMarkers[objname]) { objname = generateName(namebase); infiniteLoopCheck++; if (infiniteLoopCheck > 1000) { console.error('After 10000 tries couldnt generate unique name for MapMarker object. Change max number in MapMarker object name [function generateName()]. Default max: 1000'); return false; }; } return objname; } function getKBmap(name) { for (var i=0, iLen=addedKBmaps.length; i

before last

by somesh to add Location data div in bottom var output = '

Reset Password - Reyes (16)

'; jQuery('#'+name).append(output); window[name] = new Map(name, mapDataJSON); addedKBmaps.push(window[name]); }}

Page load link
Reset Password - Reyes (2024)

FAQs

Is Coca-Cola owned by Reyes? ›

Reyes Holdings distributes Coca-Cola brands under the wholly owned subsidiary Reyes Coca-Cola Bottling.

Who is the owner of Reyes Holdings? ›

Founded in 1976 by two brothers, Chris and Jude Reyes, Reyes Holdings remains a family-run business and has become one of the largest privately-owned companies in America.

What is the email format for Reyes Holdings? ›

Reyes Holdings's Email Address Formats
Reyes Holdings Email FormatsExamplePercentage
flast@reyesholdings.comJDoe@reyesholdings.com87%
first.last@reyesholdings.comJohn.Doe@reyesholdings.com8%
lfirst@reyesholdings.comDJohn@reyesholdings.com3%
firstlast@reyesholdings.comJohnDoe@reyesholdings.com2%

How many locations does Reyes Holdings have? ›

Annually, we deliver over 1.3 billion cases from 200+ locations worldwide with the support of 36,000+ talented employees.

Who is the Reyes family billionaire? ›

Christopher Reyes (born 1953) is an American billionaire businessman and the co-chairman, with his brother Jude Reyes, of Reyes Holdings, a food and beverage production and distribution company, ranked by Forbes in 2023 as the 6th largest privately held company in the US with $40 billion in annual revenue.

What is the Reyes Holdings controversy? ›

Reyes Holdings hit with lawsuit alleging 401(k) mismanagement. The suit claims the beer-distribution giant's retirement plan shortchanged participants through excessive fees and poor investment performance.

Who is the CFO of Reyes Holdings? ›

Dan Doheny serves as the Sr VP, CFO of Reyes Holdings. Thomas Clewett serves as the Senior Vice President & Chief Technology Officer of Reyes Holdings.

Who owns Martin Brower? ›

In 1998, Reyes Holdings acquired Martin Brower and began its long-standing relationship with the iconic restaurant chain McDonald's. After working together for years, both the Reyes brothers and McDonald's wanted to grow their partnership and waited for an opportunity to arise.

What is the mission statement of Reyes Coca Cola? ›

To provide a leading brand portfolio and unmatched value for customers and consumers.

Is Reyes Holdings a good company? ›

Reyes Holdings has an employee rating of 3.7 out of 5 stars, based on 183 company reviews on Glassdoor which indicates that most employees have a good working experience there.

How much is Reyes Holdings worth? ›

Brothers Chris and Jude Reyes co-chair Reyes Holdings, a food and beverage distributor with $40 billion in sales and nearly 36,000 employees.

Who is the parent company of Reyes Beverage Group? ›

Reyes Holdings, LLC is the holding company for three business units. Together, they create the Reyes Family of Businesses.

Who owns Coca-Cola company now? ›

The Coca‑Cola Company is a public company that trades its shares on the New York stock exchange - so we are 'owned' by our thousands of shareholders and investors around the world. Did you know? The first Coca‑Cola shares were issued in 1919 and the initial stock symbol used for The Coca‑Cola Company was CCO.

Is Reyes Coca-Cola Union? ›

Union Expands Density in Soft Drink Industry

“This victory is a testament to the strength and unity of the people who are responsible for Reyes Coca-Cola's success,” said Tony Delorio, Local 665 Secretary-Treasurer.

What brand does Coca-Cola owns? ›

co*ke owns dozens of brands in addition to its namesake Coca-Cola, including Sprite, Fanta, Powerade, Dasani, Mr. Pibb, Gold Peak tea, BodyArmor, and Costa Coffee. The company has a broad portfolio of both developed and acquired brands.

What dairy company does Coca-Cola own? ›

Fairlife, stylized as fa! rlife, is an American brand of ultra-filtered milk distributed by The Coca-Cola Company.

References

Top Articles
Top 5 TamilYogi VPNs in 2024: Best for Movie Download
Tamilyogi VPN - Guide to download and use Tamilyogi VPN
Jack Doherty Lpsg
Fighter Torso Ornament Kit
2018 Jeep Wrangler Unlimited All New for sale - Portland, OR - craigslist
neither of the twins was arrested,传说中的800句记7000词
417-990-0201
Chris Provost Daughter Addie
Shorthand: The Write Way to Speed Up Communication
Wmlink/Sspr
Encore Atlanta Cheer Competition
Brenna Percy Reddit
Transformers Movie Wiki
Ree Marie Centerfold
Pwc Transparency Report
FAQ: Pressure-Treated Wood
Voy Boards Miss America
Buy Swap Sell Dirt Late Model
Concordia Apartment 34 Tarkov
Barber Gym Quantico Hours
Little Rock Skipthegames
yuba-sutter apartments / housing for rent - craigslist
SN100C, An Australia Trademark of Nihon Superior Co., Ltd.. Application Number: 2480607 :: Trademark Elite Trademarks
Sherburne Refuge Bulldogs
Prep Spotlight Tv Mn
Sorrento Gourmet Pizza Goshen Photos
Tuw Academic Calendar
Churchill Downs Racing Entries
Ou Football Brainiacs
Claio Rotisserie Menu
Busch Gardens Wait Times
Babydepot Registry
Rvtrader Com Florida
Fox And Friends Mega Morning Deals July 2022
Rocksteady Steakhouse Menu
Sedano's Supermarkets Expands to Orlando - Sedano's Supermarkets
The Vélodrome d'Hiver (Vél d'Hiv) Roundup
Easy Pigs in a Blanket Recipe - Emmandi's Kitchen
The best bagels in NYC, according to a New Yorker
Immobiliare di Felice| Appartamento | Appartamento in vendita Porto San
Sand Castle Parents Guide
Bill Manser Net Worth
Gamestop Store Manager Pay
60 Days From May 31
Mybiglots Net Associates
M&T Bank
Parks And Rec Fantasy Football Names
Costco Gas Price Fort Lauderdale
Worlds Hardest Game Tyrone
OSF OnCall Urgent Care treats minor illnesses and injuries
How to Choose Where to Study Abroad
E. 81 St. Deli Menu
Latest Posts
Article information

Author: Madonna Wisozk

Last Updated:

Views: 6526

Rating: 4.8 / 5 (48 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Madonna Wisozk

Birthday: 2001-02-23

Address: 656 Gerhold Summit, Sidneyberg, FL 78179-2512

Phone: +6742282696652

Job: Customer Banking Liaison

Hobby: Flower arranging, Yo-yoing, Tai chi, Rowing, Macrame, Urban exploration, Knife making

Introduction: My name is Madonna Wisozk, I am a attractive, healthy, thoughtful, faithful, open, vivacious, zany person who loves writing and wants to share my knowledge and understanding with you.