Re: [Openerp-connector-community] Use an OCA mailing list for connectors

2015-10-30 Thread Guewen Baconnier
Landis, you posted on the old mailing list. It will be closed. Please use the new one on http://odoo-community.org/groups I think the list can largely support both support and development. True that support can seems noisy but there is a lot of reasons to keep a unique list, among them: * the

Re: [Openerp-connector-community] Use an OCA mailing list for connectors

2015-10-29 Thread Guewen Baconnier
On Thu, Oct 29, 2015 at 3:47 PM, Eric Caudal wrote: > > Mailing lists do not need to be linked to PSC (eg: accounting is covering > multiople PSC and repos) and can cover other topics than the PSC > (transversal or complementary) > > +1 in favor of gathering

Re: [Openerp-connector-community] Prices are managed in OpenERP with pricelists error

2015-10-19 Thread Guewen Baconnier
Because you probably hadn't cloned the entire repository: https://github.com/OCA/connector-magento/ Best practices are: 1. clone the full repository somewhere 2. modify the odoo configuration file and add the path of 'connector-magento' in 'addons_path' -- Guewen Baconnier Business Solutions

Re: [Openerp-connector-community] Remove all jobs from the queue

2015-10-06 Thread Guewen Baconnier
If you do not care about the jobs not being executed later, you can set them to 'done' with a SQL query: UPDATE queue_job SET state = 'done' WHERE state in ('pending', 'enqueued') AND NOT id IN (...); -- put the ids you don't want to change in the 'IN' clause -- Guewen Baconnier Business

[Openerp-connector-community] Migration of connector / connector-magento to v9

2015-10-01 Thread Guewen Baconnier
Hi, Does anyone already plan to work on the migration of the connector framework or Magento connector for v9? -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ -- Mailing

Re: [Openerp-connector-community] Binding Models integrity

2015-10-01 Thread Guewen Baconnier
int to disable because there is none in the connector core: https://github.com/OCA/connector/blob/8.0/connector/backend_model.py#L118-L122 -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10

Re: [Openerp-connector-community] Import complete sales orders

2015-09-28 Thread Guewen Baconnier
Hi, You should be able to set the orders as 'done' by configuring the 'Sales Automatic Workflow' (in Sales > Configuration menu) with (from my memory): * automatically confirm sales orders * set a journal so payments are created (it will only work if you have payments on Magento though) *

Re: [Openerp-connector-community] Import sales order (problem)

2015-08-21 Thread Guewen Baconnier
Hi, Heads on https://lists.launchpad.net/openerp-connector-community/msg00687.html It might help you. Guewen -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ On Fri, Aug

Re: [Openerp-connector-community] Problem importing orders from Magento to Odoo 8

2015-08-17 Thread Guewen Baconnier
On Mon, Aug 3, 2015 at 6:39 PM, Fernando Quiles fernandoquiles...@gmail.com wrote: I set the Magento backend access, and have imported Customers, categories and products. The problem I have when trying to import orders. By clicking the button Import orders. They appear in the Jobs section for

Re: [Openerp-connector-community] Doubt: Mapping fields over an non-customized magento backend version

2015-07-23 Thread Guewen Baconnier
Hi, Yes, you can have only 1 ConnectorUnit for 1 model and 1 backend version at a time. You can't add concurrent ConnectorUnit classes because there is no way to know which one should be used in which order (and for other reasons). Did you read this documentation?

Re: [Openerp-connector-community] Multi Language Support

2015-07-21 Thread Guewen Baconnier
On Jul 16, 2015, at 2:05 PM, Michael Aigner mich...@stilnest.com wrote: Hi guys, we have two Store Views for two Languages (Germand English) in our Shop, which we also mapped to the Storeviews in the Connector. If I take a product now, are also the values for both Storeviews (eg

Re: [Openerp-connector-community] Multi Language Support

2015-07-21 Thread Guewen Baconnier
On Tue, Jul 21, 2015 at 4:16 PM, Michael Aigner mich...@stilnest.com wrote: Hi, no, that’s not what I’m looking for. We would like to extend the connector in the future that we have Odoo as a source system and sync Products then from Odoo to Magento. In order to do that I need

Re: [Openerp-connector-community] Order Synchronization

2015-07-14 Thread Guewen Baconnier
On Tue, Jul 14, 2015 at 3:52 PM, Michael Aigner mich...@stilnest.com wrote: Hi Guys, I have another question to the order synchronization. When I try to also import historic orders during the first import I get the error message: Import of the order 100437173 canceled because it has not

Re: [Openerp-connector-community] Problem with backend_adapter

2015-07-13 Thread Guewen Baconnier
On Mon, Jul 13, 2015 at 3:51 PM, Danimar Ribeiro danimaribe...@gmail.com wrote: Hi, I'm trying to create a new connector for integrate with WooCommerce, I've created a backend adapter, which inherits from CrudAdapter, then in my Importer I call self.backend_adapter, I got an error as if I had

Re: [Openerp-connector-community] OCA Code Sprint

2015-05-20 Thread Guewen Baconnier
Markus, To be short: yes. Something will be organized on the Connector and perhaps on the Magento Connector as they received a lot of interest. The objectives have not been defined yet though. If you have any idea they could maybe be included in the plan. -- Guewen Baconnier Business Solutions

Re: [Openerp-connector-community] Odoo 8 Magento Connector

2015-04-28 Thread Guewen Baconnier
On Tue, Apr 28, 2015 at 3:10 PM, Thomas Winteler i...@win-soft.ch wrote: Hey Guewen Have made comment on PR https://github.com/OCA/connector-magento/pull/85. Thanks! I added the PR 92 in the buildout config. What is the plan about configurable products? What do you expect about

Re: [Openerp-connector-community] Odoo 8 Magento Connector

2015-04-20 Thread Guewen Baconnier
On 04/17/2015 05:20 PM, Thomas Winteler wrote: Hello Is there any plan about Magenot Connector Migration for Odoo 8? Thanks for response Regards Thomas Hi, You will find the information here: https://lists.launchpad.net/openerp-connector-community/msg00619.html -- Guewen Baconnier

Re: [Openerp-connector-community] Migration of Magento Connector

2015-02-18 Thread Guewen Baconnier
New status: On Wed, Feb 11, 2015 at 3:21 PM, Guewen Baconnier guewen.baconn...@camptocamp.com wrote: Hi, I propose to make a quick status on the migration of Magento Connector. * connector: migrated, still using the old api. Allowing to use the new api inside the ConnectorUnit would

[Openerp-connector-community] Funding for the migration of the Magento Connector

2015-01-22 Thread Guewen Baconnier
and to support us if you feel concerned. Have a nice day -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ -- Mailing list: https://launchpad.net/~openerp-connector-community Post

Re: [Openerp-community] Class or class_obj

2014-11-27 Thread Guewen Baconnier
much further with my poor arguments... but at least it was an excuse to share this commit https://github.com/odoo-dev/odoo/commit/3ac368b588b94d2563427df04f62a05c26b171e4 where odoo is using 2 of them: the meaningless suffix Obj *and* the CamelCase assignation which upset some people ;-) Guewen

Re: [Openerp-connector-community] Import from OpenERP to Magento

2014-11-03 Thread Guewen Baconnier
On 11/03/2014 11:27 AM, Sergio wrote: Hi Guewen, Here you have, in the top of the page Http://odoo-magento-connector.com/index.html And it says: OpenERP Magento Connector ... is a bi-directional connector. Not written fully bidirectional. Bidirectional doesn't mean that all the objects of

Re: [Openerp-connector-community] Can't sync product categories

2014-10-30 Thread Guewen Baconnier
Hi, All the errors that begin with Fault are errors returned by Magento. This error comes from Magento so you should understand see in the Magento logs for details. -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41

Re: [Openerp-connector-community] Can't sync product categories

2014-10-30 Thread Guewen Baconnier
/app/Mage.php(684): Mage_Core_Model_App-run(Array) #18 /home/kaflooch/public_html/magento/index.php(87): Mage::run('', 'store') #19 {main} But, I don't understand the meaning of the message. I can't know what is wrong El 30/10/14 a las 14:42, Guewen Baconnier escribió: Hi, All the errors

Re: [Openerp-connector-community] connector-framework v8

2014-10-28 Thread Guewen Baconnier
this also ;) Hi Markus, I hadn't the luck to work on it in v8 yet. Though, AFAIK it should be working, thanks to the work of Laurent Mignon who did the porting heavy plumbing and to Jonathan Nemry, Nicolas Bessi and Yannick Vaucher who fixed some remaining bugs. -- Guewen Baconnier Business

Re: [Openerp-community] Suggestion for OCA conventions

2014-10-20 Thread Guewen Baconnier
looking at the list of files for the first time, I'd rather we gave preference to the people writing and maintaining the code and let them choose. I totally agree with Graeme. -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39

Re: [Openerp-connector-community] Modify _after_import

2014-07-21 Thread Guewen Baconnier
On Mon, Jul 21, 2014 at 2:57 PM, Alberto Garcia alberto.gar...@factorlibre.com wrote: How can I modify the method _after_import? Or can I modify the method _create_payment? Thnaks. -- Alberto Garcia Consultor Funcional / Jefe Proyecto Hi, Have a look at:

Re: [Openerp-community] Draft Proposal for a new field type for OpenERP/Odoo

2014-07-14 Thread Guewen Baconnier
for what the fields.serialised and fields.sparse are meant for. -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ ___ Mailing list: https

Re: [Openerp-community] [OCA] PRs for standard files on migrations

2014-07-12 Thread Guewen Baconnier
Le 12 juil. 2014 00:37, Holger Brunn hbr...@therp.nl a écrit : Ladies and gentlemen being concerned with the bzr-git migration, we have a rulebook to do the migration, and a rulebook to handle merge (now: pull) requests. The migration guide is not decisive, but most people including me do

[Openerp-community-reviewer] [Merge] lp:~camptocamp/account-financial-report/7.0-export-add-statement into lp:account-financial-report

2014-07-11 Thread Guewen Baconnier @ Camptocamp
Guewen Baconnier @ Camptocamp has proposed merging lp:~camptocamp/account-financial-report/7.0-export-add-statement into lp:account-financial-report. Requested reviews: Account Report Core Editors (account-report-core-editor) For more details, see: https://code.launchpad.net/~camptocamp

Re: [Openerp-connector-community] adding product to magento via OpenERP

2014-07-07 Thread Guewen Baconnier
can follow the migration status on this dashboard: https://docs.google.com/spreadsheets/d/1CfGY7rc60jnpAWvMfNf0pI7fBDAlumwI2jx6f_RJ4_4/edit?pli=1#gid=0 -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10

Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/web-addons/7.0-web_translate_dialog-no-readonly-gbr into lp:~webaddons-core-editors/web-addons/7.0

2014-07-07 Thread Guewen Baconnier @ Camptocamp
Moved to https://github.com/OCA/web/pull/4 -- https://code.launchpad.net/~camptocamp/web-addons/7.0-web_translate_dialog-no-readonly-gbr/+merge/224780 Your team Web-Addons Core Editors is subscribed to branch lp:~webaddons-core-editors/web-addons/7.0. -- Mailing list:

[Openerp-community-reviewer] [Merge] lp:~camptocamp/web-addons/7.0-web_translate_dialog-no-readonly-gbr into lp:~webaddons-core-editors/web-addons/7.0

2014-07-07 Thread Guewen Baconnier @ Camptocamp
The proposal to merge lp:~camptocamp/web-addons/7.0-web_translate_dialog-no-readonly-gbr into lp:~webaddons-core-editors/web-addons/7.0 has been updated. Status: Needs review = Rejected For more details, see:

Re: [Openerp-community] github migration: proposale for helper for travis configuration

2014-07-02 Thread Guewen Baconnier
the porting +1 documentation could point to it. PR for improvements are welcome. :-) Done, it points to your repo, the link should be updated when the GitHub repo will be owned by the OCA. Thanks for your attention. Thanks to you! -- Guewen Baconnier Business Solutions Software Developer

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-07-01 Thread Guewen Baconnier
discussed but I don't think it has been done on 7.0 branches, at least on most of the projects, I'm sure I never had to extract a module from an __unported__ folder). Regards /DR -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-07-01 Thread Guewen Baconnier
people like me to see it. Regards /DR Thanks for your improvements on the wiki! -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com

Re: [Openerp-community] Convention for unported modules

2014-07-01 Thread Guewen Baconnier
Reis Hi, Daniel and Pedro raised good points why we should move the modules in a __unported__ subdirectory (also discussed on https://github.com/OCA/department/pull/1). I agree with them. Thanks Daniel Best, -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE

Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/stock-logistic-report/7.0-replace-print-actions-mdh into lp:stock-logistic-report

2014-07-01 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review Thanks -- https://code.launchpad.net/~camptocamp/stock-logistic-report/7.0-replace-print-actions-mdh/+merge/225126 Your team Stock and Logistic Core Editors is subscribed to branch lp:stock-logistic-report. -- Mailing list:

Re: [Openerp-connector-community] Problem php 5.4

2014-06-30 Thread Guewen Baconnier
On Mon, Jun 30, 2014 at 11:35 AM, Alberto Garcia alberto.gar...@factorlibre.com wrote: We applied that patch but the problem persist My code: http://pastebin.com/qPDktH0d Several issues there: * a ConnectorUnit cannot be registered on a backend if it is not linked to one/several models *

Re: [Openerp-community] OCA repositories naming convention

2014-06-30 Thread Guewen Baconnier
On Fri, Jun 27, 2014 at 4:20 PM, Joël Grand-Guillaume joel.grandguilla...@camptocamp.com wrote: Hi, This is not a light topic I agree of the need, and suggest the following rules: * Never put odoo- as repo name = this way, we have a github address like :

Re: [Openerp-community] OCA repositories naming convention

2014-06-30 Thread Guewen Baconnier
On Mon, Jun 30, 2014 at 9:53 AM, Daniel Reis dgr...@sapo.pt wrote: Please, we need someone to devote himself so we can move forward, this is a blocking position. Can the conclusions be summarized, so that we can confirm no one disagrees? /DR Absolutely, I was working on that. Here is the

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-30 Thread Guewen Baconnier
according to https://github.com/OCA/maintainers-tools/wiki/Migration-Launchpad-%E2%86%92-GitHub#migration-steps I hope the 22 maintainers will be able to participate, we need you! The more we are, the less work there will be for each head. Thanks! -- Guewen Baconnier Business Solutions Software

Re: [Openerp-community] OCA repositories naming convention

2014-06-30 Thread Guewen Baconnier
On Mon, Jun 30, 2014 at 2:24 PM, Nhomar Hernández nho...@gmail.com wrote: 2014-06-30 3:36 GMT-04:30 Guewen Baconnier guewen.baconn...@camptocamp.com: /DR Absolutely, I was working on that. Here is the document: https://docs.google.com/spreadsheets/d

Re: [Openerp-community] OCA repositories naming convention

2014-06-30 Thread Guewen Baconnier
On Mon, Jun 30, 2014 at 3:25 PM, Nhomar Hernández nho...@gmail.com wrote: 2014-06-30 8:12 GMT-04:30 Guewen Baconnier guewen.baconn...@camptocamp.com: I changed all until row 20. Oh, you mean on GitHub! Alright, thanks! (thought on the file) I think I finish all changes. Just answer

Re: [Openerp-community] OCA repositories naming convention

2014-06-30 Thread Guewen Baconnier
On Mon, Jun 30, 2014 at 4:24 PM, Joël Grand-Guillaume joel.grandguilla...@camptocamp.com wrote: Hi all, Thanks for bringing your help here. I just have a doubt on localization name. I rather prefer to keep the name of the locale-country instead of l10n-country_iso_code. My arguments for

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-27 Thread Guewen Baconnier
On Thu, Jun 26, 2014 at 9:22 PM, Sandy Carter sandy.car...@savoirfairelinux.com wrote: Just a point: In OCA/canada, I have been renaming the folders of uninstallable modules to modulename_unported with _unported at the end to help travis not test these modules. I updated the wiki regarding

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-27 Thread Guewen Baconnier
On Thu, Jun 26, 2014 at 9:26 PM, Stefan ste...@therp.nl wrote: Hi Guewen, thanks again. I've checked banking-addons (account_banking series), web-addons and server-env-tools. I was a little alarmed to find that a small number of directories were missing from git, but then I found out that

Re: [Openerp-community] OCA repositories naming convention

2014-06-27 Thread Guewen Baconnier
Hello Yannick, Only the owners of the OCA's project on GitHub (so the Board's members) have the rights to rename the repositories. Renaming a repository implies to: - rename it on GitHub - change the link on odoo-community.org - change the mapping for the migration But you are right, we must

Re: [Openerp-community] OCA repositories naming convention

2014-06-27 Thread Guewen Baconnier
Le 27 juin 2014 14:29, David Beal david.b...@akretion.com a écrit : Hi Guewen and all, +1 to have better names +1 to remove management/mgmt and addons But Guewen say : Also, logistics takes a final 's': stock-logistics-warehouse stock-logistics-tracking stock-logistics-reports

[Openerp-community-reviewer] [Merge] lp:~camptocamp/web-addons/7.0-web_translate_dialog-no-readonly-gbr into lp:web-addons

2014-06-27 Thread Guewen Baconnier @ Camptocamp
The proposal to merge lp:~camptocamp/web-addons/7.0-web_translate_dialog-no-readonly-gbr into lp:web-addons has been updated. Commit Message changed to: Do not display readonly translatable fields in the translate dialog For more details, see:

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-26 Thread Guewen Baconnier
On 06/26/2014 09:15 AM, Stefan wrote: On 25-06-14 16:36, Guewen Baconnier wrote: I'm currently copying all the branches to the OCA repositories [0] with this script: https://github.com/OCA/maintainers-tools/blob/copy-branches/tools/copy_branches.py It can be launched again to pull

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-26 Thread Guewen Baconnier
[2] https://code.launchpad.net/openerp-connector [3] https://code.launchpad.net/~sebastien.beau/openerp-connector/openerp-connector-fix-useless-fire-sparse-fields/+merge/175054 -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-25 Thread Guewen Baconnier
On 06/25/2014 08:02 AM, Daniel Reis wrote: Can you 'git push' back to the bzr remote? DR Yes, git-remote-bzr supports that. Note that we shouldn't need that here. No dia 25/06/2014, às 06:45, Guewen Baconnier guewen.baconn...@camptocamp.com escreveu: On 06/24/2014 07:19 PM, Lorenzo

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-25 Thread Guewen Baconnier
do not commit anything on the github branches! (concerns the committers). See you, [0] https://github.com/OCA -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-24 Thread Guewen Baconnier
-community/msg06150.html [1] https://lists.launchpad.net/openerp-community/msg06160.html -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-24 Thread Guewen Baconnier
and consultant http://twitter.com/rvalyi http://twitter.com/#!/rvalyi +55 21 3942-2434 www.akretion.com http://www.akretion.com/ Thanks for the hints. git-remote-bzr is already the tool I started to use. It is the best tool for doing that I think. -- Guewen Baconnier Business Solutions

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-24 Thread Guewen Baconnier
On 06/25/2014 07:40 AM, Guewen Baconnier wrote: On 06/25/2014 04:01 AM, Raphael Valyi wrote: my bad, yesterday I did a mistake and copy-pasted the old method I had when using git-bzr for the initial checkout, sorry for that. In fact using the standard git remote helper (which I absolutely

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-24 Thread Guewen Baconnier
On 06/24/2014 07:19 PM, Lorenzo Battistini wrote: On 06/24/2014 11:18 AM, Guewen Baconnier wrote: The existing merge proposals in progress: The authors of the MP will have to move them to GitHub themselves if they are not merged before the switch. For sure, that's not nice to have to move

Re: [Openerp-connector-community] Sync Broken?

2014-06-23 Thread Guewen Baconnier
of running from the bzr branches As it seems that you did both, you may have broken your database. Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ On Mon, Jun 23, 2014 at 11:50 AM

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-23 Thread Guewen Baconnier
On Mon, Jun 23, 2014 at 12:58 PM, Lorenzo Battistini lorenzo.battist...@agilebg.com wrote: On 06/23/2014 11:16 AM, Joël Grand-Guillaume wrote: Hi, First thank you for your feedback. About the LP - Github migration. The main arguments in favor of keeping v 6.1 and 7.0 on LP and mirror on

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-23 Thread Guewen Baconnier
On Mon, Jun 23, 2014 at 12:04 PM, Leonardo Pistone leonardo.pist...@camptocamp.com wrote: Hi! I am still convinced it would be somewhat less painful to have 6.1 and 7.0 in github, too. Existing MPs scare me less, since it's a one-time problem, and it's easy to spread the work: each person

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-23 Thread Guewen Baconnier
I started to work on the tools: https://github.com/OCA/maintainers-tools The first script is the one that copies the members of the maintainers team to the other teams. The branch also contains a function to login on GitHub using a token, that should be shared by all the other scripts. The other

Re: [Openerp-community] OCA: transition from Launchpad to Github

2014-06-23 Thread Guewen Baconnier
On Mon, Jun 23, 2014 at 3:32 PM, Moises Lopez moylop...@vauxoo.com wrote: Hello, +1 with full migration to github... with scripts. In github you will have new runbot available with PR for test it. In github you will have just one tool of version control. And you can make some script to

[Openerp-community] OCA: transition from Launchpad to Github

2014-06-20 Thread Guewen Baconnier
api, github api, CI, ...). I probably forget a lot of things, so do not hesitate to complete. Thanks to be concise in your replies. Have a nice and shiny week-end! [0] https://github.com/orgs/OCA/teams/community-maintainers -- Guewen Baconnier Business Solutions Software Developer

Re: [Openerp-community-reviewer] [Merge] lp:~savoirfairelinux-openerp/knowledge-addons/cmis_read into lp:knowledge-addons/7.0

2014-06-20 Thread Guewen Baconnier @ Camptocamp
Hi, It seems nice. I left a few comments in the diff. I won't really block on them but you should have a look. Diff comments: === added directory 'cmis_read' === added file 'cmis_read/__init__.py' --- cmis_read/__init__.py 1970-01-01 00:00:00 + +++ cmis_read/__init__.py

Re: [Openerp-community-reviewer] [Merge] lp:~pedro.baeza/ocb-addons/7.0-lp1122155 into lp:ocb-addons

2014-06-20 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review -- https://code.launchpad.net/~pedro.baeza/ocb-addons/7.0-lp1122155/+merge/217629 Your team OpenERP Community Backports is subscribed to branch lp:ocb-addons. -- Mailing list: https://launchpad.net/~openerp-community-reviewer Post to :

Re: [Openerp-community-reviewer] [Merge] lp:~pedro.baeza/purchase-wkfl/7.0-purchase_discount into lp:purchase-wkfl

2014-06-20 Thread Guewen Baconnier @ Camptocamp
Review: Needs Fixing Hi, I left some diff comments. I'm also annoyed by the incompatibily introduced by this module (override of amount_all and amount_line), but on the other hand there is maybe no other way to do that. Thanks Pedro Diff comments: === added directory 'purchase_discount'

Re: [Openerp-community-reviewer] [Merge] lp:~pedro.baeza/purchase-wkfl/7.0-purchase_discount into lp:purchase-wkfl

2014-06-20 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review Great, thanks! -- https://code.launchpad.net/~pedro.baeza/purchase-wkfl/7.0-purchase_discount/+merge/217030 Your team Purchase Core Editors is subscribed to branch lp:purchase-wkfl. -- Mailing list: https://launchpad.net/~openerp-community-reviewer Post to :

[Openerp-community-reviewer] [Bug 1008513] Re: [6.1]document_webdav - pywebdav import error if pywebdav=0.9.8

2014-06-20 Thread Guewen Baconnier @ Camptocamp
** Changed in: ocb-addons/6.1 Status: Fix Committed = Fix Released -- You received this bug notification because you are a member of OpenERP Community Backports, which is subscribed to OpenERP Community Backports (Addons). https://bugs.launchpad.net/bugs/1008513 Title:

Re: [Openerp-community-reviewer] [Merge] lp:~numerigraphe-team/ocb-addons/7.0-fix-regression-fill-inventory-OOM into lp:ocb-addons

2014-06-20 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review LGTM -- https://code.launchpad.net/~numerigraphe-team/ocb-addons/7.0-fix-regression-fill-inventory-OOM/+merge/223928 Your team OpenERP Community Backports is subscribed to branch lp:ocb-addons. -- Mailing list: https://launchpad.net/~openerp-community-reviewer Post

Re: [Openerp-community-reviewer] [Merge] lp:~ajite/web-addons/7.0-web-addons-add-0001 into lp:web-addons

2014-06-20 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review Hi Augustin, LGTM finally! Thanks for you work. Since Sylvain's comments have been addressed, I'll merge it. -- https://code.launchpad.net/~ajite/web-addons/7.0-web-addons-add-0001/+merge/210620 Your team Web-Addons Core Editors is subscribed to branch

Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/sale-wkfl/7.0-add-last_sale_price-yvr into lp:sale-wkfl

2014-06-19 Thread Guewen Baconnier @ Camptocamp
Yannick, you need to save the sales order to see the prices. That seems a usability issue. I'm not sure that we can deal with that properly with onchanges though. -- https://code.launchpad.net/~camptocamp/sale-wkfl/7.0-add-last_sale_price-yvr/+merge/223704 Your team Sale Core Editors is

Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/account-financial-report/7.0-sync-afr_webkit-with-report_webkit into lp:account-financial-report

2014-06-18 Thread Guewen Baconnier @ Camptocamp
should propose the MP again on OCB -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ https://code.launchpad.net/~camptocamp/account-financial-report/7.0-sync-afr_webkit

Re: [Openerp-connector-community] Error import categorires from backend

2014-06-16 Thread Guewen Baconnier
is installed on PHP 5.4; it does not support this version of PHP (but a patch is provided on the Magento official website). -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ -- Mailing

Re: [Openerp-connector-community] Product import error

2014-06-16 Thread Guewen Baconnier
On 06/15/2014 09:45 AM, Pedro Manuel Baeza Romero wrote: Thanks for the reference, Guewen. It's working fine with the fix. Sorry for not seeing before the MP. Regards. You couldn't, it wasn't existing yet ;-) -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE

Re: [Openerp-connector-community] Cash on delivery

2014-06-12 Thread Guewen Baconnier
? Are the python modules correctly imported in __init__.py ? -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ -- Mailing list: https://launchpad.net/~openerp-connector

Re: [Openerp-connector-community] Cash on delivery

2014-06-12 Thread Guewen Baconnier
On 06/12/2014 04:31 PM, Alberto Garcia wrote: El 12/06/14 16:28, Guewen Baconnier escribió: On 06/12/2014 04:25 PM, Alberto Garcia wrote: Thanks Guewen I try this but not result My customer use magento 1.6 i have backend: magento_myversion = backend.Backend(parent=magento_backend.magento

Re: [Openerp-connector-community] Special Price

2014-06-11 Thread Guewen Baconnier
by Magento on sales orders is always used, so a special price applied by Magento would also be effective on OpenERP. -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ -- Mailing

Re: [Openerp-community-reviewer] [Merge] lp:~akretion-team/partner-contact-management/partner-firstname-inheritable into lp:partner-contact-management

2014-06-11 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review -- https://code.launchpad.net/~akretion-team/partner-contact-management/partner-firstname-inheritable/+merge/222730 Your team Partner and Contact Core Editors is subscribed to branch lp:partner-contact-management. -- Mailing list:

[Openerp-community-reviewer] [Merge] lp:~camptocamp/ocb-addons/7.0-send-message-slow-1311087 into lp:ocb-addons

2014-06-11 Thread Guewen Baconnier @ Camptocamp
Guewen Baconnier @ Camptocamp has proposed merging lp:~camptocamp/ocb-addons/7.0-send-message-slow-1311087 into lp:ocb-addons. Requested reviews: OpenERP Community Backports (ocb) For more details, see: https://code.launchpad.net/~camptocamp/ocb-addons/7.0-send-message-slow-1311087/+merge

[Openerp-community-reviewer] [Merge] lp:~camptocamp/account-financial-report/7.0-account_export_csv-select-periods into lp:account-financial-report

2014-06-11 Thread Guewen Baconnier @ Camptocamp
Guewen Baconnier @ Camptocamp has proposed merging lp:~camptocamp/account-financial-report/7.0-account_export_csv-select-periods into lp:account-financial-report. Requested reviews: Account Report Core Editors (account-report-core-editor) For more details, see: https://code.launchpad.net

Re: [Openerp-community-reviewer] [Merge] lp:~numerigraphe-team/ocb-addons/7.0-fill-inventory-OOM into lp:ocb-addons

2014-06-10 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review, test LGTM. Thanks! -- https://code.launchpad.net/~numerigraphe-team/ocb-addons/7.0-fill-inventory-OOM/+merge/217049 Your team OpenERP Community Backports is subscribed to branch lp:ocb-addons. -- Mailing list: https://launchpad.net/~openerp-community-reviewer Post

[Openerp-community-reviewer] [Bug 1312045] Re: Importing inventory pushes the OS to out-of-memory condition when many Stock Moves exist

2014-06-10 Thread Guewen Baconnier @ Camptocamp
** Changed in: ocb-addons Status: Fix Committed = In Progress ** Changed in: ocb-addons Status: In Progress = Fix Released -- You received this bug notification because you are a member of OpenERP Community Backports, which is subscribed to OpenERP Community Backports (Addons).

Re: [Openerp-connector-community] Sync Broken?

2014-06-09 Thread Guewen Baconnier
, Damo -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ -- Mailing list: https://launchpad.net/~openerp-connector-community Post to : openerp-connector-community

Re: [Openerp-connector-community] New release of the Connector framework and Magento Connector

2014-05-27 Thread Guewen Baconnier
On 05/27/2014 09:46 AM, Thierry BOULOGNE wrote: Hello, i update the connect and i get a strange error : == File /opt/openerp/v7/web/addons/web/http.py, line 580, in load_addons m = __import__('openerp.addons.' + module) File

Re: [Openerp-connector-community] New release of the Connector framework and Magento Connector

2014-05-27 Thread Guewen Baconnier
On 05/27/2014 06:58 PM, Thierry BOULOGNE wrote: hello, just a up on this. Any tips to solve this error please :-) ? Thanks for help. This error means that you 'connector' module is not up-to-date. So, the only advice I can give you is to check again your branches, check the

Re: [Openerp-connector-community] Magento Connector may miss import of same sales orders

2014-05-26 Thread Guewen Baconnier
On Fri, May 23, 2014 at 8:41 AM, Guewen Baconnier guewen.baconn...@camptocamp.com wrote: Hi, Allison Miller reported a concerning issue with the Magento Connector. You will find details here [0]. I post it on the mailing list because you should really be aware of that. I would be glad

Re: [Openerp-connector-community] New release of the Connector framework and Magento Connector

2014-05-26 Thread Guewen Baconnier
On Mon, May 26, 2014 at 2:43 PM, greencoding Fischer, Jan-Philipp jan-philipp.fisc...@greencoding.de wrote: BTW: my Name isn't in Autors anymore This is corrected, sorry. -- Mailing list: https://launchpad.net/~openerp-connector-community Post to :

Re: [Openerp-connector-community] New release of the Connector framework and Magento Connector

2014-05-26 Thread Guewen Baconnier
Did you restarted the server with --update=all in order to update the modules? -- Mailing list: https://launchpad.net/~openerp-connector-community Post to : openerp-connector-community@lists.launchpad.net Unsubscribe : https://launchpad.net/~openerp-connector-community More help :

Re: [Openerp-community-reviewer] [Merge] lp:~wiz-keed/ocb-addons/7.0-delivery-carrier-multi-company-awareness into lp:ocb-addons

2014-05-26 Thread Guewen Baconnier @ Camptocamp
Review: Approve LGTM Thanks -- https://code.launchpad.net/~wiz-keed/ocb-addons/7.0-delivery-carrier-multi-company-awareness/+merge/214176 Your team OpenERP Community Backports is subscribed to branch lp:ocb-addons. -- Mailing list: https://launchpad.net/~openerp-community-reviewer Post to

Re: [Openerp-community-reviewer] [Merge] lp:~agilebg/carriers-deliveries/adding_delivery_optional_invoice_line_7 into lp:carriers-deliveries

2014-05-26 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review LGTM -- https://code.launchpad.net/~agilebg/carriers-deliveries/adding_delivery_optional_invoice_line_7/+merge/213867 Your team Stock and Logistic Core Editors is subscribed to branch lp:carriers-deliveries. -- Mailing list:

[Openerp-connector-community] Magento Connector may miss import of same sales orders

2014-05-23 Thread Guewen Baconnier
if you can work on a patch. See you, [0] https://bugs.launchpad.net/openerp-connector-magento/+bug/1322452 -- Guewen Baconnier -- Mailing list: https://launchpad.net/~openerp-connector-community Post to : openerp-connector-community@lists.launchpad.net Unsubscribe : https://launchpad.net

Re: [Openerp-community-reviewer] [Merge] lp:~numerigraphe-team/stock-logistic-warehouse/7.0-stock_available_immediately-compute-error into lp:stock-logistic-warehouse

2014-05-19 Thread Guewen Baconnier @ Camptocamp
Review: Needs Information Isn't Outgoing a negative value? I think that stock_qty['qty_available'] + stock_qty['outgoing_qty'] is correct to compute an immediately usable quantity. Am I wrong? --

Re: [Openerp-connector-community] active field on magento tables

2014-05-14 Thread Guewen Baconnier
be necessary, as for the products where we would want to deactivate only the stock synchro or the export of the product. -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com

Re: [Openerp-connector-community] active field on magento tables

2014-05-14 Thread Guewen Baconnier
On 05/14/2014 10:30 AM, Markus Schneider wrote: so the name my be 'active_sync' or 'update_external' or may be 'no_update_sync' to make it consistent to the 'no_stock_sync' flag we add recently. 'no_export_sync' to be consistent with 'no_stock_sync' and the 'export' term used in many places

Re: [Openerp-connector-community] Limited sale order import filtered by update date

2014-05-13 Thread Guewen Baconnier
a nice day, -- Guewen Baconnier Business Solutions Software Developer Camptocamp SA PSE A, CH-1015 Lausanne Phone: +41 21 619 10 39 Office: +41 21 619 10 10 http://www.camptocamp.com/ -- Mailing list: https://launchpad.net/~openerp-connector-community Post to : openerp-connector-community

Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/department-mgmt/add-account-department-fix-default-anyltic-jge into lp:department-mgmt

2014-05-12 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review Thanks! LGTM -- https://code.launchpad.net/~camptocamp/department-mgmt/add-account-department-fix-default-anyltic-jge/+merge/218807 Your team Department Core Editors is subscribed to branch lp:department-mgmt. -- Mailing list:

Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/department-mgmt/add-account-department-fix-default-anyltic-jge into lp:department-mgmt

2014-05-09 Thread Guewen Baconnier @ Camptocamp
Review: Needs Fixing l.21: context propagation is missing l.25-25: indentation could be aligned l.37: if the department of the account changes, the analytic lines won't be changed. That's maybe what is wanted though. I propose either to add triggers, either to add a comment why the departement

Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/department-mgmt/add-dep-on-project-task-jge into lp:department-mgmt

2014-05-08 Thread Guewen Baconnier @ Camptocamp
Review: Approve code review -- https://code.launchpad.net/~camptocamp/department-mgmt/add-dep-on-project-task-jge/+merge/217068 Your team Department Core Editors is subscribed to branch lp:department-mgmt. -- Mailing list: https://launchpad.net/~openerp-community-reviewer Post to :

Re: [Openerp-connector-community] Magento connector extending with module and options

2014-05-06 Thread Guewen Baconnier
Hi Markus, On Mon, Apr 28, 2014 at 2:24 PM, Markus Schneider markus.schnei...@initos.com wrote: hi folks, with the discussion what option should be default how the connector should handle some data and thinking how to reuse and share more code i start making a concept to move different

Re: [Openerp-connector-community] adding product to magento via OpenERP

2014-05-05 Thread Guewen Baconnier
On 05/05/2014 04:00 PM, Adam Langowski / IDEA07 Studio Kreatywne wrote: Hello, is there any possibillity to add product to Magento directly via OpenERP? Kind regards Adam Langowski Not at the moment. This feature is still under development. -- Guewen Baconnier Business Solutions

  1   2   3   4   5   6   >