Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenERP Connect
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
XCG
OpenERP Connect
Commits
9045a45b
Commit
9045a45b
authored
11 years ago
by
Florent Aide
Browse files
Options
Downloads
Patches
Plain Diff
Fixed typos and approximations
parent
92383f08
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.rst
+35
-15
35 additions, 15 deletions
README.rst
with
35 additions
and
15 deletions
README.rst
+
35
−
15
View file @
9045a45b
OEC Module
==========
This programm is created to insert data in OpenERP. For example a client database.
This programm does not store values in memory, the values are generated on the fly.
This programm is created to insert data in OpenERP. For example a client
database.
This programm does not store values in memory, the values are read and
consumed on the fly.
First step
----------
...
...
@@ -6,9 +8,15 @@
First step
----------
Install the pyhton package with python setup.py develop or install
Install the python package with::
python setup.py develop
or::
python setup.py install
Second step
-----------
...
...
@@ -11,7 +19,12 @@
Second step
-----------
Copy oec.conf-sample to oec.conf
Edit oec.conf
Copy oec.conf-sample to oec.conf::
cp oec.conf-sample oec.conf
Edit oec.conf and set the server, username, password and openerp database.
Here is a resulting example::
...
...
@@ -17,6 +30,4 @@
In this file, define the server, a user name and a password to accees Openerp database.
ex:
name= 127.0.0.1
port = 8069
name= 127.0.0.1
port = 8069
...
...
@@ -22,4 +33,4 @@
username = admin
password =
*******
username = admin
password =
yourpassword
...
...
@@ -25,6 +36,6 @@
database = CRM
database = CRM
Third step
----------
...
...
@@ -27,7 +38,16 @@
Third step
----------
Launch the oec programm.
Use -h to see to see args.
ex : oec -c oec.conf -i example/crmleads_create.json -t crm.lead -m create
Launch the oec program::
oec -c oec.conf -i example/crmleads_create.json -t crm.lead -m create
Oec can also consume data from STDIN instead of a filename::
cat example/crmleads_create.json | oec -c oec.conf -t crm.lead -m create
For more information about the command line arguments run::
oec --help
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment