콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3 답글
9893 화면

We have asp.net application(C#.Net), We want to integrate OpenERP community version with my existing application. I've already download the source, How do I integrate ?

아바타
취소
작성자

we've some modules like Sales, Purchase, Shopping Cart, Customer. These modules we are planning to sync with OpenERP

베스트 답변

What do you mean by integrate? Are you wanting to build a seperate C# system, attached to the OpenERP system?

The database is a PostgreSQL database, on C# I am not sure what you would use, be it a DSN or whatever. I would check out the PostgreSQL website and I am sure there will be a C# driver.

The language used by OpenERP is Python, if you want to extend the existing system I'd start looking at the development docs online.

But if you can give us an indication of what you mean or plan to do, we may be able to help further.

아바타
취소
베스트 답변

You have to write a custom module that will open the other database and allow communication.

Without knowing more details a good explanation cannot be given, but it should be trivial to get the information into openERP from your application.. Ensuring the two databases remained synchronized is not trivial.

아바타
취소
베스트 답변

Hello.

You'll have to develop C# code and Python code to connect both of them. It doesn't matter what you want to do joining both systems there is no native functionality that connects C# with OpenERP

아바타
취소
작성자

Thanks for answer, it seems like if we setup for products in OpenERP we'll have to develop code to sync the product in our application and also if in our application any changes in product we'll have to develop the logic in OpenERP to sync. Am I right ?