The Shop module provides basic e-commerce features like product and inventory management, shopping cart process. etc., based on data hosted outside the Magnolia JCR repository.
There is no payment integrated yet.
This module is at the INCUBATOR level.
Installing with Maven
Maven is the easiest way to install the module. Add the following to your bundle:
To function properly this module requires configurations in module configuration location.
Configurations can be located in JCR config node or in the config.yaml file.
We need to pass database connection information to the module.
This is the minimum configuration that needs to be passed to the module so it can connect to a database instance.
This module does not create a database. Database MUST EXISTS and database user has to have also CREATE/DROP/ALTER RIGHTS on that database.
For the database connection to work, we need appropriate database driver to be available on the classpath.
For example, if we are using mysql database with tomcat server we need to place "mysql-connector-java-8.0.18.jar"` in tomcat lib folder.
Shop App
The Shop App module allows browsing and managing shop related entities (catalogs, products, categories, shippings, prices, etc … ) from Magnolia’s Custom Content Application.
This module is dependent on Shop Core module. Ensure you have installed the module.
Shop Rest
The Shop Rest module provide rest api which can be used to manage shop related entities (CRUD operations).
This module is dependent on Shop Core module. Ensure you have installed the module.
Shop Workflow
The Shop Workflow module provide functionality for managing orders and transiting order from one state to another.
For example:
accept order
mark order as dispatched
This module is dependent on Shop Core module. Ensure you have installed the module.
Usage
After installation there will be a new item bar in the main admin central screen as shown in below screenshot.
Settings app
First thing to do is to open the Settings app to define all the shop basics like catalogs, currencies, taxes…
Catalogs - Products will be assigned to catalogs.
Categories - Categories of products, tree structure.
Shipping - Shipping methods, different rates can be assigned depending on the purchase price.
Currencies - Define currencies and exchange rates.
Tax rates - Define different tax rates.
Units - Define units for weight, volumen and dimension.
Custom fields - Products fields can be extended by adding custom fields.
Field templates - Custom fields need to be assigned to templates to be able to use them.
Manufacturers app
This app allows to define different manufacturers to later assign to products.
Products app
After all the above is ready products can be created, assigned to categories, with images, price, dimensions and all custom fields that the user had defined. Products can then be published and be available for the customers.