Phranakorn Rajabhat University Library

Introduction to Operations and Supply Chain Management /

Bozarth, Cecil C.

Introduction to Operations and Supply Chain Management / Cecil C. Bozarth & Robert B. Handfield - 4th ed. - New York : Pearson, 2016 - 503 p. : ill. ; 28 cm.

Part I: Creating value through operations and supply chains -- Chapter 1 Introduction to operations and supply chain management page 17-33 -- Chapter 2 Operations and supply chain strategies page 34-52 Part II: Establishing the operations environment -- Chapter 3 Process choice and layout decisions in manufacturing and services page 53-86 -- Chapter 4 Business processes page 87-120 -- Chapter 5 Managing quality page 121-154 -- Chapter 6 Managing capacity page 155-188 -- Chapter 6S Advanced waiting line theory and simulation modeling page 189-202 Part III: Establishing supply chain linkages -- Chapter 7. Supply management page 203-232 -- Chapter 8 Logistics page 233-264 -- Part IV: Planning and controlling operations and supply chains -- Chapter 9 Forecasting page 265-309 -- Chapter 10 Sales and operations planning (Aggregate planning) page 310-341 -- Chapter 11 Managing inventory throughout the supply chain page 342-373 -- Chapter 12 Managing production across the supply chain page 374-408 -- Chapter 12S Supply chain information systems page 409-417 -- Chapter 13 JIT/Lean Production page 418-438 -- Part V: Project management and product/service -- Chapter 14 Managing projects page 439-460 -- Chapter 15 Developing products and services page 461-478

9781292093420 1330


PRODUCTION MANAGEMENT
MANAGEMENT
BUSINESS LOGISTICS
SUPPLY CHAIN
PROJECT MANAGEMENT

HD 31.2 / B69I 2016

มหาวิทยาลัยศรีปทุม (กทม.)
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.

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