Controlling costs

With material now at an all time high, everyone is looking at how they can control costs. One simple way would be to evaluate the material thickness of your project and decide if you are able to use a little thinner material.

 

Another option would be to look at your flat blank layout. Does your layout provide the best sheet yield? Can you modify the design a little to get more parts on a raw sheet of material? Our typical material sizes are 48x120 and 60x120. During the material shortages and allocation the 60x120 sheets have become harder to get. Sticking with just a 48x120 sheet, one example would be if your parts flattens out to over 24" in any direction you will potentially reduce your sheet yield in half since anything over 24" wide cannot nest side by side. 


💬 Chat with DEM Assistant(Beta)
async function sendMessage() { const input = document.getElementById('user-input'); const log = document.getElementById('chat-log'); const userText = input.value; if (!userText) return; log.innerHTML += `
You: ${userText}
`; input.value = ""; try { const response = await fetch("https://ancient-unit-b923.michael-ab6.workers.dev/", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ messages: [ { role: "system", content: "You are a helpful assistant for an online Shopify store. Answer questions about products, orders, or anything else in a friendly tone." }, { role: "user", content: userText } ] }) }); const data = await response.json(); const reply = data.choices[0].message.content; log.innerHTML += `
DEM Assistant: ${reply}
`; } catch (error) { console.error(error); log.innerHTML += `
Bot: Sorry, something went wrong.
${error.message}
`; ; } log.scrollTop = log.scrollHeight; }