哪些 ERP 拥有像样的 Ruby 连接器或完整的 API 构建?

发布于 2024-11-23 17:02:04 字数 325 浏览 1 评论 0原文

我是一名 Ruby on Rails 开发人员,正在寻找一个开源 ERP,它具有 Ruby 连接器或我可以使用的非常强大、全面的 API。

我知道 Ruby 有 XLSuite,但它似乎有点过时,我只是在探索其他平台。

到目前为止我发现的最接近的是 OpenERP + OOOR gem。我对 OpenERP 的担忧是人们发布的错误和问题的数量 - 我使用 ERP 开始而不是构建任何自定义的唯一原因是我不必修复平台上的核心错误并专注于自定义。

当然,如果不存在,另一种方法是通过 API 访问大量 ERP 功能。如果是这种情况,有什么推荐的具有非常全面、稳定的 API 的 ERP 吗?

I'm a Ruby on Rails developer looking for an open source ERP which has a Ruby connector or a very robust, thorough API I can use.

I know Ruby has XLSuite, but it seems kinda outdated and am just exploring other platforms.

The closest I've found so far is OpenERP + the OOOR gem. My concern with OpenERP is the number of bugs and problems people have posted - my sole reason of using a ERP to start with and not building anything custom, is so I don't have to fix core bugs on the platform and focus on customization.

Of course if this doesn't exist, the alternative is to access alot of the ERP functions through the API. If this is the case, any recommendations on an ERP which has a very thorough, stable API?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味拾荒者 2024-11-30 17:02:04

OpenERP可以通过xml-rpc来访问。以下是 Ruby 中的示例:

登录:

require 'xmlrpc/client'

database = "terp"
username = "admin"
password = "admin"

socket = XMLRPC::Client.new( 'http://localhost', '/xmlrpc/common', 8069 )
user_id = socket.login( database, username, password )

搜索(成功登录后):

socket = XMLRPC::Client.new( 'http://localhost', '/xmlrpc/object', 8069 )
ids = socket.execute(
    database, user_id, password,
    'res.partner', 'search', []
)
partners = socket.execute(
    database, user_id, password,
    'res.partner', 'read', ['name']
)

for partner in partners:
    print "partner: %s" % [ partner['name'] ]

OpenERP can be accessed by xml-rpc. Here is an example in Ruby:

Login:

require 'xmlrpc/client'

database = "terp"
username = "admin"
password = "admin"

socket = XMLRPC::Client.new( 'http://localhost', '/xmlrpc/common', 8069 )
user_id = socket.login( database, username, password )

Search (after a successful login):

socket = XMLRPC::Client.new( 'http://localhost', '/xmlrpc/object', 8069 )
ids = socket.execute(
    database, user_id, password,
    'res.partner', 'search', []
)
partners = socket.execute(
    database, user_id, password,
    'res.partner', 'read', ['name']
)

for partner in partners:
    print "partner: %s" % [ partner['name'] ]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文