Phranakorn Rajabhat University Library

Operations and supply chain management /

Jacobs, F. Robert

Operations and supply chain management / F Robert Jacobs & Richard B Chase - 16th ed. - New York, NY : McGraw-Hill Education, 2021 - XXVI, 724 p. : ill. ; 29 cm.

Section One : Strategy, products and capacity : Introduction p.2-19 -- Strategy p.20-38 -- Design of products and services p.39-70 -- Projects p.71-107 -- Strategic capacity management p.108-127 -- Investment analysis p.128-143 -- Learning curves p.144--161 -- Section Two: Manufacturing and service processes : Manufacturing processes p.162-181 -- Manufacturing technology p.182-188 -- Facility layout p.189-222 -- Service processes p.223-243 -- Health care p.244-257 -- Waiting line analysis and simulation p.258-300 -- Process design and analysis p.301-333 -- Operations consulting p.334-343 -- Six sigma quality p.344-362 -- Statistical quality control p.363-395 -- Section Three: Supply Chain Processes: Lean supply chains p.396-423 -- Logistics, distribution, and transportation p.424-447 -- Global Sourcing and procurement p.448-471 -- Section Four: Supply and Demand Planning and Control : The Internet of things and ERP p.472-484 -- Forecasting p.485-525 -- Sales and operations planning p.526-551 -- Linear programming using the excel solver p.552-565 -- Inventory management p.566-608 -- Material requirements planning p.609-639 -- Workcenter scheduling p.640-671 -- Theory of constraints p.672-702

9781260575941 1110


MANAGEMENT
BUSINESS LOGISTICS
PRODUCTION MANAGEMENT

HD 31 / J32O 2021

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

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