Phranakorn Rajabhat University Library

Technology strategies for the hospitality industry /

Nyheim, Peter

Technology strategies for the hospitality industry / Peter Nyheim & Daniel Connolly - 2nd ed. - Harlow : Pearson Education, 2014 - II, 266 p. : ill. ; 26 cm.

Chapter 1 If you think you don't need to know about IT, think again! page 1-20 -- Chapter 2 Using information technology to drive competitive advantage page 21-48 -- Chapter 3 Computing essentials page 49-62 -- Chapter 4 Networks page 63-80 -- Chapter 5 E-commerce page 81-92 -- Chapter 6 Restaurant management systems page 93-108 -- Chapter 7 Hotel and resort technology page 109-132 Chapter 8 Global distribution systems and channels page 133-162 -- Chapter 9 Databases page 163-180 -- Chapter 10 Competing on knowledge: How the power of information can enable great things page 181-206 -- Chapter 11 Technology for the meetings and events industry page 207-216 -- Chapter 12 Technology in the casino industry page 217-240 -- Chapter 13 Strategic hospitality technology investment page 241-260

9781292027395 1495


HOSPITALITY INDUSTRY--DATA PROCESSING
INFORMATION TECHNOLOGY

TX 911.3.E4 / N93T 2014

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });