Imported From: http://groups.google.com/group/in-portal-dev/browse_thread/thread/f01ad53dbba3927a#
In In-Commerce we have such term as reoccurring orders. Here are steps to start using it:
Then scheduled task in cron will periodically check for orders, who are processed, but have next charge time and:
This way order is cloned for each payment and In-Commerce keeps track when to do next charge.
User can cancel reoccurring charging at any time while viewing cloned order details from "My Orders" page on Front-End.
However these days payment gateways become clever enough to do reoccurring charging themselves and only report charged/failed status back to In-Commerce. This feature is called "subscriptions".
Sadly, but In-Commerce absolutely doesn't support this feature.
Here is how I see it implemented:
Once order is approved payment gateway will automatically start charging user on a regular basis. Once charge happens (or fails) we'll receive notification to same /modules/in-commerce/gw_notify.php script and clone order (see above), but set it to processed right away so no extra charge will happen.
P.S.
I saw some PayPal subscription handling code pieces in In-Commerce but database columns mentioned in code were not present in database and tags created for same purpose wasn't used anywhere too. Surely these are pieces of some old customization that are left without being noticed for a long time.