eCommerce
This course covers the full eCommerce module in Quickenerp. Learn how to set up your online store, manage product catalog, configure checkout and payment methods, manage shipping, apply promotions, handle customer accounts, and analyze sales performance.
| Responsible | System |
|---|---|
| Last Update | 07/21/2026 |
| Completion Time | 2 days 13 hours |
| Members | 1 |
eCommerce Overview
View alleCommerce Reporting
eCommerce Analysis
Go to eCommerce > Reporting > eCommerce Analysis. Pivot with:
- Dimensions: Product, Category, Customer, Country, Payment Method, Shipping Method.
- Measures: Sales (Untaxed), Total, Quantity, Number of Orders.
- Filters: Date Range, Order Status, Sales Channel.
Key Metrics
- Conversion Rate – Visitors who completed checkout / total visitors.
- Average Order Value – Total sales / number of orders.
- Cart Abandonment Rate – Carts created but not paid.
- Top Selling Products – Volume and revenue.
- Sales by Channel – Direct, Referral, Social, Email.
Abandoned Cart Recovery
Enable Email Marketing integration. Quickenerp can auto-send abandoned cart emails after 1 hour, 24 hours, and 72 hours. Configure in eCommerce > Configuration > Settings > Abandoned Carts.
Best Practices
- Review cart abandonment rate weekly.
- A/B test product page layouts using the website builder (duplicate page → test variant).
- Monitor payment failure rates per provider.
- Analyze which customer segments buy which products.
- Cross-check eCommerce revenue against Sales/Accounting reports monthly — the numbers should match once orders are invoiced, so a gap usually flags a stuck or unpaid order.
Serving Returning Customers
Customer Portal
A registered customer can log in and see, under My Account:
- Order history and current order status/tracking.
- Invoices and payment status.
- Saved addresses (billing/shipping).
- Saved payment tokens (if the payment provider supports saved cards).
Guest Checkout vs Account Required
In eCommerce > Configuration > Settings, choose whether customers must create an account to buy, or can always check out as a guest (an account is auto-created behind the scenes either way, so order history is preserved if they later set a password).
Product Reviews & Ratings
Enable Customer Reviews in Settings to let logged-in customers who purchased a product leave a star rating and comment on its product page. Reviews can be moderated (approve before publish) or shown immediately, depending on your risk tolerance for unmoderated public comments.
Wishlists & Compare
If enabled, customers can add products to a Wishlist for later, or use Compare to view several products' attributes side by side before deciding — both are toggled per-website in Settings.
Promotions & Coupons
Enable the Coupons (loyalty) and Gift Cards modules in Apps.
Creating a Coupon Program
- Go to eCommerce > Configuration > Coupon Programs.
- Click Create.
- Name – Internal name.
- Rule:
- Minimum purchase amount.
- Specific products or categories.
- Customer group.
- Percentage discount (e.g. 10% off).
- Fixed amount discount (e.g. $15 off).
- Free shipping.
- Free product.
Gift Cards
Go to eCommerce > Configuration > Gift Cards.
- Sell gift cards as products.
- Customers buy a gift card → receive a code.
- Recipient enters code at checkout to redeem.
- Partial redemption supported – remaining balance stays for next purchase.
Automatic Promotions (Cart Rules)
Go to Sales > Configuration > Promotions. Create rules that auto-apply without a code:
- Buy X get Y free.
- Spend $100, get 20% off.
- Free shipping over $50.
Checkout Process
Checkout Flow
- Customer adds products to cart.
- Customer clicks Checkout.
- If not logged in, they can sign in or check out as guest.
- Enter shipping address.
- Select shipping method.
- Select payment method.
- Confirm order. Payment is processed.
- Order confirmation page with order reference.
Payment Methods
Go to eCommerce > Configuration > Payment Methods.
- Stripe – Credit/debit cards. Requires a Stripe account.
- PayPal – PayPal Express Checkout.
- Bank Transfer – Manual payment. Order is confirmed after payment received.
- Cash on Delivery – Payment on delivery.
- Custom – Any other method (local payment gateways, wallets).
Shipping Methods
Go to eCommerce > Configuration > Shipping Methods.
- Fixed Price – Flat rate per order.
- Based on Weight – Configure price per weight range.
- Based on Subtotal – Free shipping over a set order amount.
- Real-Time Rates – Connect to carrier APIs (USPS, FedEx, DHL) for live quotes.
Multi-Step vs Quick Checkout
Go to eCommerce > Configuration > Settings. Choose:
- Multi-Step – Address, Shipping, Payment, Confirm (4 pages).
- Quick – All fields on one page. Faster but more loaded.
Taxes at Checkout
Prices can be displayed tax-included or tax-excluded on the shop (set in Settings). The actual tax applied at checkout still follows the customer's fiscal position (country/region), same as any Sales order — see the Accounting course's "Fiscal Positions" article.
Managing Products
Making a Product Visible in the Shop
- Go to eCommerce > Products → Create (or edit existing).
- Set Can be Sold = True.
- Set Available in POS if also selling in POS.
- Add product Description (Sales) – Shown on product page.
- Upload one or more Images. First image is the cover.
- Set Category for navigation.
- Set Website Ribbon – Badge like "Sale!", "New", "20% OFF".
- Set Visibility – Visible, Hidden (by search only), Hidden.
- Set Price and Cost.
Product Variants
On the Attributes tab:
- Add attribute (Size, Color, Material).
- Add attribute values (S, M, L, XL).
- Quickenerp auto-generates all variants in a grid.
- Configure per variant: price, SKU, barcode, image, weight.
- On the website, customers select attributes via dropdowns, radio buttons, colour swatches, or a size grid, depending on the attribute's display type.
- Price Extra – Add a surcharge for specific variant values (e.g. XL +$3.00).
Product Categories & Navigation
Go to eCommerce > Configuration > Product Categories. Create a hierarchy:
- Categories appear as shop navigation.
- Subcategories can be shown as filters.
- Each category can have a banner image and SEO description.
Product Filters & Search
In Edit mode on /shop, configure the filter panel:
- Price Range.
- Product Categories.
- Attributes (Size, Color).
- Rating.
- Custom filter options.
Digital / Downloadable Products
For non-physical goods (e-books, license keys, software), mark the product as a service/digital type and attach the downloadable file — the customer receives a download link on the order confirmation page and by email instead of a physical delivery being scheduled.
Stock Display on the Product Page
Optionally show "In Stock" / "Only 3 left" / "Out of Stock" messages on the product page, sourced live from Inventory quantities — configure the exact wording and threshold in eCommerce > Configuration > Settings > Inventory Defaults.
The eCommerce Module
The eCommerce module extends the Website module with a full online store. Products from Inventory/Sales become browsable and purchasable online.
Core Concepts
| Concept | Model | Description |
|---|---|---|
| Shop | website.page | The product listing page rendered on /shop. |
| Product Template | product.template | The master product record. eCommerce attributes are on this model. |
| Product Variant | product.product | Specific variant (e.g. Blue / Large). Each has its own stock and price. |
| Cart / Order | sale.order | The customer's shopping cart. Becomes a sales order on checkout. |
| Line Item | sale.order.line | A product in the cart with quantity and price. |
| Payment Provider | payment.provider | Payment gateway (Stripe, PayPal, bank transfer, etc.). |
| Carrier | delivery.carrier | Shipping method with rate calculation. |
Accessing the Shop
- The shop is at
/shopon your website. - Go to eCommerce > Products to manage the catalog.
- Go to eCommerce > Orders to view and manage sales.
- Go to eCommerce > Configuration for settings, payment methods, shipping.
How Orders Flow Into the Rest of the System
A completed checkout creates a normal Sales Order — from that point on it behaves exactly like an order taken manually by a salesperson: it reserves stock in Inventory, generates a delivery, and can be invoiced in Accounting. Nothing about fulfilment/invoicing is eCommerce-specific once the order exists.