Skip to content

Commit

Permalink
Merge pull request OCA#263 from camptocamp/BSIBSO-1103
Browse files Browse the repository at this point in the history
BSIBSO-1103 exchange connector improvements
  • Loading branch information
gurneyalex committed Nov 28, 2018
2 parents 606d73a + b79b1cc commit 713eaea
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 3 deletions.
3 changes: 3 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Latest (Unreleased)
adjusted in the cron parameters)

* BSIBSO-1107: Change the delivery date of a picking
* BSIBSO-1103 Connector-exchange: add flag on res.users to filter for Odoo events
* BSIBSO-1103 Connector-exchange: add parameter to search with a max horizon

**Bugfixes**
* BSIBSO-1092: fix invoicing of sales with MRC
Expand All @@ -41,6 +43,7 @@ Latest (Unreleased)
- analytic_tag_dimension_purchase_warning
- analytic_tag_dimension_sale_warning

* BSIBSO-1103 Update OCA/connector repository

**Documentation**

Expand Down
2 changes: 1 addition & 1 deletion odoo/external-src/connector
Submodule connector updated 224 files
2 changes: 1 addition & 1 deletion odoo/external-src/connector-exchange
Submodule connector-exchange updated 33 files
+4 −0 .travis.yml
+1 −2 README.md
+6 −0 connector_exchange/AUTHORS
+5 −1 connector_exchange/__manifest__.py
+2 −2 connector_exchange/connector.py
+8 −4 connector_exchange/data/ir_config_parameter.xml
+13 −0 connector_exchange/demo/backend.xml
+8 −0 connector_exchange/demo/res_company.xml
+19 −16 connector_exchange/models/calendar_event/calendar_event.py
+4 −4 connector_exchange/models/calendar_event/exporter.py
+2 −1 connector_exchange/models/calendar_event/importer.py
+29 −12 connector_exchange/models/exchange_backend/common.py
+0 −1 connector_exchange/models/res_partner/exporter.py
+10 −9 connector_exchange/models/res_partner/res_partner.py
+20 −1 connector_exchange/models/res_users/res_users.py
+2 −2 connector_exchange/unit/importer.py
+4 −3 connector_exchange/views/users_views.xml
+34 −0 docs/README.md
+41 −0 docs/config/exchange_configuration.md
+ docs/config/images/backend.png
+ docs/config/images/res_company.png
+ docs/config/images/res_users.png
+34 −0 docs/config/odoo_configuration.md
+19 −0 docs/how_to/export_calendar_events.md
+22 −0 docs/how_to/export_contacts.md
+ docs/how_to/images/cron_calendar_import.png
+ docs/how_to/images/cron_contact_import.png
+ docs/how_to/images/exchange_export_calendar_event.gif
+ docs/how_to/images/exchange_export_contact.gif
+27 −0 docs/how_to/import_calendar_events.md
+26 −0 docs/how_to/import_contacts.md
+ docs/images/OdooXchange.png
+1 −1 requirements.txt
5 changes: 5 additions & 0 deletions odoo/migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -432,3 +432,8 @@ migration:
#### local-src
- specific_security
- specific_sale
# OCA/connector
- component
- component_event
# camptocamp/connector-exchange
- connector_exchange
9 changes: 9 additions & 0 deletions odoo/pending-merges.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@
# account_invoice_merge module refactor
- oca refs/pull/386/head
target: *default_target
./external-src/connector-exchange:
remotes:
camptocamp: git@github.com:camptocamp/connector-exchange.git
merges:
- camptocamp 10.0
# [10.0][ADD] Find Events : odoo category filtering + max horizon
- camptocamp refs/pull/14/head
- camptocamp refs/pull/15/head
target: *default_target
./src:
remotes:
oca: git@github.com:OCA/OCB.git
Expand Down
6 changes: 5 additions & 1 deletion odoo/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,14 @@ responses
mailchimp3==3.0.4

# connector_exchange
git+https://github.com/yvaucher/pyews@PyEWS_Events_Management#egg=pyews
git+https://github.com/camptocamp/pyews@PyEWS_Events_Management#egg=pyews
contextlib2==0.5.4
vcrpy==1.10.5

#connector telephony
phonenumbers==8.9.10
py-Asterisk==0.5.17

# OCA base connector
cachetools>=2.0.1,<3.0.0
unittest2

0 comments on commit 713eaea

Please sign in to comment.