{

Spiritus Coffee Co.

Wholesale Order Portal - "Sip in the Moment"

Order submitted successfully! You'll receive a confirmation email shortly.
Please correct the errors below and try again.

Prefer to Order Offline?

Download our Excel order sheet to prepare your order offline, then email it to us.

📊 Download Excel Order Sheet
Order Date:
Order ID:
Customer Portal: Wholesale Orders

Product Selection

Product 12oz Qty
(Case of 6)
12oz Price 5lb Qty
(Individual)
5lb Price Line Total
Aether Dark Roast
SKU: AETHER-001
$18.00
$11.50
$90.00
$57.50
$0.00
Lilacia Blend
SKU: LILACIA-001
$18.00
$11.50
$90.00
$57.50
$0.00
Mountain Water Process Decaf
SKU: DECAF-001
$18.00
$11.50
$90.00
$57.50
$0.00
Solstice Holiday Blend
SKU: SOLSTICE-001
$20.00
$13.00
$95.00
$62.50
$0.00
Spiritus Classic Espresso
SKU: ESPRESSO-001
$19.00
$12.00
$92.00
$59.50
$0.00
Spiritus Signature Blend
SKU: SIGNATURE-001
$18.00
$11.50
$90.00
$57.50
$0.00
Summer Awakening Ethiopia Washed
SKU: SUMMER-001
$22.00
$14.00
$105.00
$67.50
$0.00
Still Here Coffee: Brewing Change, One Bag at a Time
SKU: STILLHERE-001
$20.00
$13.00
$95.00
$62.50
$0.00
Microlot Rotating Selection #1
SKU: MICROLOT-001
$23.00
$15.00
$110.00
$72.50
$0.00
Microlot Rotating Selection #2
SKU: MICROLOT-002
$23.00
$15.00
$110.00
$72.50
$0.00
PFC Blend - Lombard Harvest
SKU: LOMBARD-001
$19.00
$12.50
$95.00
$62.00
$0.00

Order Summary

Subtotal: $0.00
Shipping: $0.00
Total: $0.00

• Orders processed within 1 business day

• Email confirmation sent

• Invoice via QuickBooks

, '')); if (subtotal === 0) { document.getElementById('error-message').textContent = 'Please add items to your order.'; document.getElementById('error-message').style.display = 'block'; return; } // Hide error, show success document.getElementById('error-message').style.display = 'none'; document.getElementById('success-message').style.display = 'block'; // Here you would normally submit to Shopify // For now, just show success message console.log('Wholesale order submitted'); }); // Update shipping when delivery method changes document.addEventListener('change', function(e) { if (e.target.name === 'properties[Delivery Method]') { updateOrderTotal(); } }); // Excel download function function downloadExcelSheet() { // Create Excel content const excelContent = ` SPIRITUS COFFEE CO. - WHOLESALE ORDER FORM "Sip in the Moment" Order Date: ${new Date().toLocaleDateString()} Order ID: SC-W-${new Date().toISOString().slice(0, 10).replace(/\-/g, '')}-${Math.floor(Math.random() * 999).toString().padStart(3, '0')} CUSTOMER INFORMATION Company Name: ________________________ Account Number: ______________________ Contact Name: ________________________ Email: _______________________________ Phone: _______________________________ Address: _____________________________ City: _____________ State: ____ ZIP: ____ PRODUCT ORDER Product Name,SKU,12oz Qty (Case of 6),12oz Price,5lb Qty,5lb Price,Line Total Aether Dark Roast,AETHER-001,,$11.50,,$57.50, Lilacia Blend,LILACIA-001,,$11.50,,$57.50, Mountain Water Process Decaf,DECAF-001,,$11.50,,$57.50, Solstice Holiday Blend,SOLSTICE-001,,$13.00,,$62.50, Spiritus Classic Espresso,ESPRESSO-001,,$12.00,,$59.50, Spiritus Signature Blend,SIGNATURE-001,,$11.50,,$57.50, Summer Awakening Ethiopia Washed,SUMMER-001,,$14.00,,$67.50, Still Here Coffee: Brewing Change One Bag at a Time,STILLHERE-001,,$13.00,,$62.50, Microlot Rotating Selection #1,MICROLOT-001,,$15.00,,$72.50, Microlot Rotating Selection #2,MICROLOT-002,,$15.00,,$72.50, PFC Blend - Lombard Harvest,LOMBARD-001,,$12.50,,$62.00, ORDER TOTALS Subtotal: $______ Shipping: $______ TOTAL: $______ DELIVERY PREFERENCES □ Free Local Delivery (Lombard area) □ UPS Ground Shipping □ Pickup at Roastery SPECIAL INSTRUCTIONS _________________________________ _________________________________ Email completed form to: orders@spirituscoffee.com `; // Create and download file const blob = new Blob([excelContent], { type: 'text/csv' }); const url = window.URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = 'Spiritus_Coffee_Wholesale_Order_Sheet.csv'; document.body.appendChild(a); a.click(); document.body.removeChild(a); window.URL.revokeObjectURL(url); alert('Excel order sheet downloaded! Fill it out and email to orders@spirituscoffee.com'); }