第三方报告工具 - 跟踪购买的产品
我正在寻找第三方应用程序来报告电子商务网站上的交易。我们希望报告购买的产品和交易金额。我们网站上的每个产品都由不同的供应商拥有,他们希望能够跟踪消费者购买其产品的历史记录(因为他们每次购买都能赚钱)。如果他们能够拥有自己的登录凭据,并且仅向他们提供查看报告的访问权限,那就太理想了。
我们的应用程序使用authorize.net作为支付网关。
I am looking for a third party application to report on transactions on an e-commerce site. We are looking to report on which product was purchased and the transaction amount. Each product on our site is owned by a different vendor and they would like to be able to track the history of consumer purchases of their product (as they earn money on each purchase). It would be ideal if they could have had their own login credentials that only provide them access to see their reports.
Our application uses authorize.net as a payment gateway.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们的新 ActiveReports Server 产品包括多租户支持。基本上,您可以通过实现一个简单的接口以编程方式接管身份验证(请参阅 ISecurityProvider)。您可以通过这种方式为每个供应商提供特殊的登录信息。如果您已经拥有供应商的登录信息(例如公共供应商站点),您甚至可以使用 ISecurityProvider 与其集成,为您的供应商提供单点登录体验。
在文档此处中,它解释了如何将 SecurityProvider 实现配置为处理身份验证以及如何使用“安全过滤器”根据登录用户透明地过滤记录。安全过滤器是确保供应商只看到他的历史记录的方法。
ActiveReports Server 还包括一个基于 Web 浏览器的拖放功能。删除临时报告设计器,由自动生成且完全可定制的逻辑数据模型提供支持,可保护业务用户免受底层技术细节的影响。
Our new ActiveReports Server product includes multi-tenant support. Basically you can programmatically take over authentication by implementing a simple interface (see ISecurityProvider). This is how you can give a special login to each of your vendors. If you already have a login for your vendors (e.g. for a public vendor site) you can even integrate with that using the ISecurityProvider to give your vendors a single-sign-on experience.
In the documentation here it explains how to configure your SecurityProvider implementation to handle authentication and how to use "Security Filters" to filter records transparently based on the logged in user. The Security Filter is how you would make sure that the vendor sees only his history.
ActiveReports Server also includes a web browser-based drag & drop ad hoc report designer powered by automatically generated and fully customizable logical data models that protect business users from underlying technical details.