创建一个非常专业的界面 SugarCRM
我需要一个非常专业的 CRM
吗
- 我想重新编码 Sugar crm 的整个布局 ?最好的开始方式是什么?
- 编写单独的应用程序并通过 API 调用更新 SugarCRM
I need a very specialized CRM
Do I
- I want to recode the entire layout of sugar crm. whats the best way to start.
- write a separate application and update SugarCRM via API calls
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您能更具体地介绍一下“非常专业的 CRM”吗?
1.) 您可以使用工作室自定义所有字段、下拉菜单、布局。
查看:
http ://developers.sugarcrm.com/docs/OS/6.1/-docs-Developer_Guides-Sugar_Developer_Guide_6.1.0-Chapter%204%20Customizing%20Sugar.html
Can you be more specific about "very specialized CRM" ?
1.) You can customize all the field, drop down menus, layouts using the studio.
Check out:
http://developers.sugarcrm.com/docs/OS/6.1/-docs-Developer_Guides-Sugar_Developer_Guide_6.1.0-Chapter%204%20Customizing%20Sugar.html
既然您已决定使用 SugarCRM,请勿在 SugarCRM 之外开发 UI。由于 SugarCRM 具有很强的可扩展性,并且基本上其中的每个视图都可以替换为任何 smarty tempalte/html 页面,因此没有理由不使用它的功能,特别是权限、主仪表板等。
所以我的答案是使用 SugarCRM 定制。
Since you have decided to use SugarCRM don't develop UI outside SugarCRM. Since SugarCRM is very extensible and basicly every view in it can be replaced with any smarty tempalte/html page then there is no reason not to use it's functionalities especialy something like privilidges, home dashboards etc.
So my answer is go with SugarCRM customization.
如果你想重写 Sugar 的整个 MVC 架构,我会基于 PHP MVC 框架(如 Zend 或 CakePHP)编写你自己的系统,如果你只是想创建专门的字段,也许调整一些布局或其他东西,我会推荐 SugarCRM,因为创建字段并将它们添加到基本的 2 列表单布局非常简单。如果您充分掌握了 OOPHP 和 MVC 架构,那么即使扩展当前视图也相当容易。在不了解您的所有需求的情况下,如果您必须编写整个自定义系统,我会感到非常惊讶。几乎所有内容都可以通过安全升级的方式进行扩展和定制,这使您可以在新的 SugarCRM 版本发布时获得其优势,而不会丢失您的定制增强功能。
If you are looking to re-write the whole MVC architecture of Sugar, I would write your own system based off a PHP MVC framework like Zend or CakePHP, if you are just looking to create specialized fields, and maybe tweak some layouts or something, I would recommend SugarCRM, because created fields and adding them to a basic 2 column form layout is quite simple. Even extending the current views is pretty easy if you have a solid grasp of OOPHP and the MVC architecture. Without knowing all your needs here, I'd be very surprised if you had to write a whole custom system. Almost Everything can be extended and customized in an upgrade safe way, which leaves you open to gaining the benefits of the new SugarCRM releases when they come out with out losing your custom enhancements.