Is it possible to create wallet module ?

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
jaynarayan
Posts: 3
Joined: 12 Aug 2021, 16:14

Is it possible to create wallet module ?

Post by jaynarayan » 12 Aug 2021, 16:56

I need a standard eCommerce web site with following custom functionality :
1 ) E wallet
2) Customer type(retailer and wholesaler)

After reading docs I concluded that

1)For e wallet I have to create an extension .This extension will have to interact with built in modules like customer , checkout , FrontEnd etc. Can I do this by creating models , views , and controller like normal laravel app?

2) I would have to modify the customer modules to add customer types(retailer,wholesale),to change the product modules to show different prices to both type of customer etc.

3) customize frontEnd Auth to provide login for customers and wholesaler.

I want to make sure that aimeos is the right choice for my project. Looking for some workflow suggestions. Thanks in advance for your help.

User avatar
aimeos
Administrator
Posts: 7907
Joined: 01 Jan 1970, 00:00

Re: Is it possible to create wallet module ?

Post by aimeos » 12 Aug 2021, 17:40

jaynarayan wrote: 12 Aug 2021, 16:56 1)For e wallet I have to create an extension .This extension will have to interact with built in modules like customer , checkout , FrontEnd etc. Can I do this by creating models , views , and controller like normal laravel app?
You need to implement that yourself but you need to extend the Aimeos code because you don't want this to be separate. Instead, you need to extend the account page and add a new module for wallet management and the checkout page by adding a payment service provider for wallet payments:

- https://aimeos.org/docs/latest/frontend ... omponents/
- https://aimeos.org/docs/latest/frontend ... omponents/
- https://aimeos.org/docs/latest/provider ... e/payment/
jaynarayan wrote: 12 Aug 2021, 16:56 2) I would have to modify the customer modules to add customer types(retailer,wholesale),to change the product modules to show different prices to both type of customer etc.
There's an extension available from the Aimeos GmbH that already does what you need (customer groups for different prices):
https://aimeos.com/extensions#c437
jaynarayan wrote: 12 Aug 2021, 16:56 3) customize frontEnd Auth to provide login for customers and wholesaler.
This is a standard Laravel feature that is already there if you set up authentication:
https://github.com/aimeos/aimeos-laravel#laravel-8
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

jaynarayan
Posts: 3
Joined: 12 Aug 2021, 16:14

Re: Is it possible to create wallet module ?

Post by jaynarayan » 12 Aug 2021, 18:06

Thank you very much for quick reply.

I cant buy the customer package as this is a very low budget project.

Is there any community marketplace of extension? I would like to se which free extension are there.

User avatar
aimeos
Administrator
Posts: 7907
Joined: 01 Jan 1970, 00:00

Re: Is it possible to create wallet module ?

Post by aimeos » 13 Aug 2021, 07:05

All official extensions are listed here:
https://aimeos.org/extensions
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply