Magento 社区版功能问题
我刚刚开始使用 Magento,对私人批发商店有两个要求。我意识到这个问题有点开放式,但我很感激经验丰富的 Magento 开发人员对扩展或复杂程度的任何建议。
该商店是私人的。仅适用于在 Magento 管理员中输入的客户。通过 HTTP Auth 实现安全性不是一个选项。我想要 Magento 来处理它。似乎我会禁用新客户注册,然后向核心添加一些自定义代码。这需要多少代码?
客户订单是赊购的。该积分是在 Magento 管理员中根据每个客户设置的。客户不管理他们的信用。我发现扩展可供购买,所以这是可能的。但是,如果我已经在核心中执行上述操作,那么这可能会多多少?
当然,上述两个要求都是 Magento 企业版的功能,价格为 13,000 美元/年。
I am just starting out with Magento and have two requirements for a private wholesale store. I realize this question is a bit open ended, but I would appreciate any recommendations for extensions or level of complexity from an experienced Magento developer.
The store is private. Only available to customers entered within the Magento Admin. Security via HTTP Auth is not an option. I want Magento to handle it. Seems like I would disable new customer registration and then add some custom code to the core. How much code would that require?
The customer orders are purchased on credit. This credit is set on a per customer basis within the Magento Admin. Customers do not manage their credit. I found an extension for purchase, so it's possible. However, if I am already in the core to do the above, how much more might this be?
Of course, both of the requirements above are features in Magento Enterprise edition, for $13,000/year.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
客户信用,至少正如您在这里所设想的那样,并不是真正最适合 EE。它的信用系统基于发放商店信用退款,并且不能单独作为唯一的支付类型。
至于您的问题,第一个问题应该可以在对代码进行少量修改或无需修改的情况下实现。正如您所说,关闭用户注册以防止用户自行注册。如果您想对目录保密,您可能需要添加一些代码以将所有未经身份验证的请求重定向回主页或登录页面。
我对你提到的插件没有具体的经验,但添加新的支付类型是 Magento 中经过深思熟虑的系统之一,所以如果它不起作用,你可以在合理的时间内编写一个新的支付类型。
希望有帮助!
谢谢,
乔
Customer credit, at least as you envision it here, isn't really the best fit for EE. Its credit system is based on issuing store credit for refunds, and doesn't stand alone well as the sole payment type.
As to your questions, the first should be possible with little or no modification to the code. As you said, turn off user registration to prevent users from signing themselves up. If you want to keep the catalog a secret, you may need to add a little code to redirect all unauthenticated requests back to the homepage or a login page.
I don't have specific experience with the plugin you mentioned, but adding new payment types is one of the better thought out systems in Magento, so if it doesn't work you can code a new one in a reasonable amount of time.
Hope that helps!
Thanks,
Joe
由于最近刚刚有人提出这个问题(此处):
将客户激活与仅登录目录。
有各种各样的信用延期可供选择,毫无疑问您才刚刚开始发现这些。搜索时,请务必包含短语“magento connect”,这样您就不会被类似的问题和没有解决方案所淹没,这似乎是一个流行的主题。
As this has just been asked recently (here):
Use Customer Activation with Login only catalog.
There are a variety of credit extensions available which you have no doubt only just started discovering. When searching be sure to include the phrase "magento connect" so you don't get overwhelmed by similar questions and no solutions, it seems it is a popular subject.