- When user Registers in application, 3 documents are added in 3 different collection : users - all userdata save here subscribers - all subscribers data ( package, features ) and linking with users is added with the subscriberld organisations - one organization is created for that user, which then can be updated through setupwizard. Products : All the packages which are created are stored in this collection. We can create package from admin collection. One Free package is necessary which will have basic permissions and features, so that whenever user registers that package is applicable for him. Admin ADMIN A Manange Users Packages In Packages tab, we can apply CRUD on products/packages. Package a 45 Admin Free Individual For1User (Mont... Business Plan Per User (M... OINR OINR 200 INR 350 INR 0 Days astafvd Months 1DMB Storage 0 Months SOMB Storage Months 500 MB Storage . vdssdv Monthly 50 Smart Credits Monthy 100 Smart Credits Monthy 500Sart Credits UnimtedUsers Max 1User Unlimited Users Individual For 1User (Yearly) Business Plan Per User (Ye... 10 Mini Agile 10 MiniAgile 150 INR 300INR 2 INR TINR Years 50MB Storage Years 500 MB Storaga 0 Days Months Monthy 100 Smart Credita Monthly 500 Smart Credte* Max 1 User Unlimited Users* 10 CollabPro 10 CollabProMiniAgile 10 HandBook TINR 1INR 1INR Months Months Months 0 While creating package, we can set the price, type of package ( use Taxpayer mostly ), type of user( Enterprise / Individual ). Along with this we can add features like DocumentType List with their limit ProcessList with their using limit and chat limit for SmartChat Report List with the download limit Userlimit : How much users can be created ( through SetUp Wizard ) using this package ---PAGE END--- User Price : If user need more userlimit then he can increase userlimit while purchasing package ( so package price will increase with this user price / user ) While creating addOn package, have to click checkbox isAddOn and also have to link the addonpackage to main package. Also we can add permission for the package using the features tab. Update Package Basic Details Permission Feature list Select Permission.. dashboard (14) QAIl downloadsoftware (2) DAIL Wizard (5) DAll Queue all permission Download Software organisation add Rule all permission all permissions organisation edit all permissions dashboard organisation GIS all permission all permissions EngineRuleV1 SetupWizard FAQ Package contact (11) OAll nav(1) DA lob (14) DAll contact batch invoice navbar lob Support contact employee card products navbar Iob Legal contacts dashboard accounting navbar lob banking all permissions process studio navbar lob operations rontart edit nrnfile navhar Inh testinn In FeatureList tab, we can add text message to show users while purchasing package. Add Package : When user registers, he gets the free package ( all the features & permissions in free package ) addpackage api is called from the registerUser api let token = yield this.createTokenFor(String(userInfo._id),String(subscriberInfo._id),String(orgIn let options = method: 'POST', You, 4 weeks ago : Change url: config.apiUrl.replace(/$/,"') + "/gibots-api/subs/addPackage", headers:{ 'authorization': "Bearer " + token, 'content-type': "application/json", "selectedorgid": String(orgInfo._id) body: [ "id" : packageData._id, "name": "Free Package", "amount": 0 json: true Hi proCess.env["NODE_TLS_REJECT_UNAUTHORIZED'] = '0'; ---PAGE END--- And User can buy package manually through package type in their dashboard : Admin MiniAgile CollabPro 20 /Month 1/Month 1/Month View Details View Details View Details Add To Cart Add To Cart Add To Cart CollabProMiniAgile HandBook Mini Agile 1/Month 1/Month 2 /Month View Details View Details View Details Add To Cart Add To Cart Add To Cart: Individual For 1 User (Yearly) Individual For 1 User Business Plan Per User (Monthly) (Yearly) 3150 /Month Package 200 /Month 2300 /Month View Details View Details View Details Add To Cart Add To Cart Add To Cart: After that these all packages are visible which can be purchased with checkout and buy features. Package related apis are in gibots-node-api. Productcontroller and subscribercontroller. In product document the features are stored with structure like this : "features" : { "documentTypeList" : [ t "name" : "Invoice_Document", "limit" : 50, "_id" : ObjectId("65fic4fac400d9cfd823c5aa") ], "processList": [ t "processName" : "Mini Agile", "limit" : 100, "chatlimit" : 20, "metaDatalist" : [ ], "_id" : ObjectId("64e2f8003111793090b95c7d") } ], "reportList" : [ ], "expiry" : 45 }, "storage" : { "limit" : 20 }, "user" : { "limit" : 5 }, documentTypelist - Array of documentTypes processList - Array of processes ---PAGE END--- When we purchase any package, similar structure data is stored in subscriber document. In addition there startdate, expiry these things will be added. "pastPackages" : [ ], "features" : [ t "startData" : null, "expiry" : null, "_id" : ObjectId("6618b756e71042b13f2c4816"), "documentTypeList" : [], "processlist" : [], "reportlist" : [], "packageId" : ObjectId("616d73d6ae22f84216e2501a") } ], "extraPurchase" : [ ], "storage" : { "limit" : 10, "used" : 0 }, "user":{ "limit" : 3, "used" : 1 }, User can purchase multiple packages at a time, thats why features in subscriber document in in array format. If User purchases the same package again, then it goes the extrapurchase key of the subscriber and after expiry of the current package that package will automatically added in features array. In Subscriber document, there is one key called packages where we store all the packages which used for that subscriber. Using this packageslds we fetch all permission from respective product document and give it to that user. So that he can use "amount" : 0, "cartlist" : [ ], "packages" : [ ObjectId("65e9bb686039c8ccb35ae82f"), ObjectId("62833ee8fd6b7508a62d5db7") ], ---PAGE END---