我翻阅了博尼塔的文献,读了一本关于它的书。我还观看了博尼塔在YouTube上提供的几乎所有教程。然而,软件的局限性对我来说还不清楚。
我工作的公司,一家咨询公司,想使用bonitasoft来管理它的企业资源。
我们要执行的任务示例:
我无法找到任何演示网站,博尼塔,看看人们是否试图建立一个基于bonitasoft的ERP系统。这个是可能的吗?
我认为应该可以创建一个表单并使用JavaScript对其进行修改以实现一个非任务功能。
这算黑吗?
其他人用博尼塔还是不这样?
另外,是否可以使用小部件(HTML和外部webservice)来实现non-task功能?
发布于 2017-06-05 14:21:35
Bonita是一个基于过程的应用平台.我在这里强调它的过程部分,因为这是平台中的一个关键概念。
基本上,任何Bonita应用程序的业务逻辑部分都是使用BPM ()方法设计的。您设计了一个表示业务逻辑的流程,并通过编码业务规则、数据处理、与第三方系统的集成等来实现其行为。
然后,一旦实现了业务逻辑,您就可以构建报告,向最终用户显示执行不同流程所产生的数据。
如果我们以你的例子为例:
- Typically handle by a process.
- Can be handle by a process. The finance manager will have initiate the generation of a new bill from the application. But really, in the backend, it will trigger a new case (process instance), then follow all the steps down to the generation of the bill.
- You're right, not typically process based. Maybe just entering the bonuses value in a DB. If there are business rules associated to the calculation of the bonuses, it could be handled by a process.
- Should be a report pulling data from an external DB or the Bonita DB.
- Typically process-based.
所以简单地说是的,Bonita可以用来构建这样的应用程序。
https://stackoverflow.com/questions/43799530
复制相似问题