Skip to Content Skip to Menu

List Management in CBSUB

8 years 3 weeks ago #289636 by yousufshaheen
List Management in CBSUB was created by yousufshaheen
How I can generate following payment List for fore-end;

1. Payment for each plan and each payment method, weekly, monthly and yearly
2. List of subscription members with payment.
3. List of members, those has made donations.
4. Total subscription payment.
5. Total donations received.

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48722
  • Thanks: 8320
  • Karma: 1447
8 years 3 weeks ago #289666 by krileon
Replied by krileon on topic List Management in CBSUB
CBSubs provides none of that functionality for frontend. Statistics is all handled from backend. With that said you can probably accomplish that using a Userlist and filtering the userlist to subscribed users using an Advanced Filter. The below advanced filter for example ensures they've an active subscription to the specified plan id.

Code:
( ( SELECT COUNT(*) FROM `#__cbsubs_subscriptions` AS sub WHERE sub.`user_id` = u.`id` AND sub.`plan_id` = PLAN_ID_HERE AND sub.`status` = 'A' ) >= 1 )

To get the total amounts you'd have to use a CB Query Field and query for that information from the various CBSubs database tables. This covers usages 2-5, but I've nothing to suggest for 1 beyond just using backend.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
The following user(s) said Thank You: yousufshaheen

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum