Re: [Openerp-community] Track datamodel changes

2014-08-07 Thread Sébastien Alix

Hi,

Another way is to extract the schema with RPC (with a tool like 
OERPLib). I just wrote a POC script here:

https://gist.github.com/sebalix/8cb0acc2cff419f4529e

First, install OERPLib:

$ pip install oerplib

Then edit the header data of the script for connection data to Odoo.
Generate the reference scheme:

$ ./dump_schema.py  s1.json

Make another dump later:

$ ./dump_schema.py  s2.json

And compare them:

$ ./dump_schema.py s1.json s2.json

The output will look like this:


 ADDED 
- product.attribute.renamed

 REMOVED 
- product.attribute

 MODIFIED 
- account.move.line.reconcile.select
A  account_id2
R  account_id
M  create_uid
M  string (u'Created by2' = u'Created by')
- email_template.preview
M  sub_object
M  store (False = True)


Regards,



Le 06/08/2014 21:16, David Arnold - El Alemán a écrit :

*Hi People*
*
*
I want to keep track on any db-changes realized on the database coloums
during this last development phase until V8 stable is released.

I thought of something with grep and some magical statements (I surely
would not quite understand). Does anyone have an idea how to accomplish
this? Or is there any best practice arround?

*
​Thanks  kind regards
*


___
Mailing list: https://launchpad.net/~openerp-community
Post to : openerp-community@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community
More help   : https://help.launchpad.net/ListHelp



--
Sébastien ALIX
ABF Osiell
Immeuble Oméga
Rue Jean-Marie David
35740 PACÉ, FRANCE
Tél: 09 72 36 91 08
Site: http://www.osiell.com

___
Mailing list: https://launchpad.net/~openerp-community
Post to : openerp-community@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community] Track datamodel changes

2014-08-07 Thread Jean Sébastien HEDERER ASPerience
Very good. But it needs to apply changes to obtain s2.json. I think question 
was to track datamodel changes in source code. 
Your method is very interesting 
 
 
message d'origine-
De: Sébastien Alix [sebastien.a...@osiell.com  ]
A: openerp-community@lists.launchpad.net  
Date: Thu, 07 Aug 2014 11:21:05 +0200
-
 
 
 Hi,
 
 Another way is to extract the schema with RPC (with a tool like 
 OERPLib). I just wrote a POC script here:
 https://gist.github.com/sebalix/8cb0acc2cff419f4529e
 
 First, install OERPLib:
 
   $ pip install oerplib
 
 Then edit the header data of the script for connection data to Odoo.
 Generate the reference scheme:
 
   $ ./dump_schema.py  s1.json
 
 Make another dump later:
 
   $ ./dump_schema.py  s2.json
 
 And compare them:
 
   $ ./dump_schema.py s1.json s2.json
 
 The output will look like this:
 
  ADDED 
 - product.attribute.renamed

  REMOVED 
 - product.attribute

  MODIFIED 
 - account.move.line.reconcile.select
 A  account_id2
 R  account_id
 M  create_uid
 M  string (u'Created by2' = u'Created by')
 - email_template.preview
 M  sub_object
 M  store (False = True)
 
 Regards,
 
 
 
 Le 06/08/2014 21:16, David Arnold - El Alemán a écrit :
 *Hi People*
 *
 *
 I want to keep track on any db-changes realized on the database coloums
 during this last development phase until V8 stable is released.

 I thought of something with grep and some magical statements (I surely
 would not quite understand). Does anyone have an idea how to accomplish
 this? Or is there any best practice arround?

 *
 Thanks  kind regards
 *


 ___
 Mailing list: https://launchpad.net/~openerp-community
 Post to : openerp-community@lists.launchpad.net  
 Unsubscribe : https://launchpad.net/~openerp-community
 More help   : https://help.launchpad.net/ListHelp

 
 -- 
 Sébastien ALIX
 ABF Osiell
 Immeuble Oméga
 Rue Jean-Marie David
 35740 PACÉ, FRANCE
 Tél: 09 72 36 91 08
 Site: http://www.osiell.com
 
 ___
 Mailing list: https://launchpad.net/~openerp-community
 Post to : openerp-community@lists.launchpad.net  
 Unsubscribe : https://launchpad.net/~openerp-community
 More help   : https://help.launchpad.net/ListHelp
 



___
Mailing list: https://launchpad.net/~openerp-community
Post to : openerp-community@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community] Track datamodel changes

2014-08-07 Thread Alexandre Fayolle
On 06/08/2014 21:16, David Arnold - El Alemán wrote:
 *Hi People*
 *
 *
 I want to keep track on any db-changes realized on the database
 coloums during this last development phase until V8 stable is released.

 I thought of something with grep and some magical statements (I surely
 would not quite understand). Does anyone have an idea how to
 accomplish this? Or is there any best practice arround?

Hi David,

There are tools for this in the OpenUpgrade project.

-- 
Alexandre Fayolle
Chef de Projet
Tel : + 33 (0)4 79 26 57 94

Camptocamp France SAS
Savoie Technolac, BP 352
73377 Le Bourget du Lac Cedex
http://www.camptocamp.com

___
Mailing list: https://launchpad.net/~openerp-community
Post to : openerp-community@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community] Track datamodel changes

2014-08-07 Thread Sébastien Alix

Le 07/08/2014 12:33, Jean Sébastien HEDERER ASPerience a écrit :

Very good. But it needs to apply changes to obtain s2.json. I think question 
was to track datamodel changes in source code.
Your method is very interesting



With the previous script, you just have to install all modules on an 
instance on a given Git commit ID. When the 8.0 is release, update this 
instance, re-run the script to extract the new scheme, and compare it to 
the previous one.
But I agree that this way we don't know where the changes happen (in 
which module, which file...), it's just an overview of the changes at 
the application/ORM level. But it allows the Odoo team to make some 
refactoring without changing the scheme, like migrating to the new API 
v8 (in account and event modules for instance), or reformat/reindent the 
code, and we don't need to care about that.


Regards,


--
Sébastien ALIX
ABF Osiell
Site: http://www.osiell.com

___
Mailing list: https://launchpad.net/~openerp-community
Post to : openerp-community@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community] odoo vertical-medical

2014-08-07 Thread Mario Arias
Great!

Then so far we have:

   - Vertical-medical is a first class citizen of OCA (not there by any
   mistake)
   - Repository name will stay Vertical-Medical, so it will be located in
   githut at OCA/vertical-medical
   - Technical name will be medical, so modules will be named medical_
   - Application name will be Odoo Medical, to be used for
   promotion/marketing...

I will push the name changes next week, together with several functional
ones, and will send another message when ready.  After that, everybody will
be welcomed to contribute and make this vertical THE open source
application for physicians and medical centers worldwide...   ;-)


As for the logo, we still need resolution/guidance from OCA:

   - Fonts and colors:  Stay with the official ones or push different ones
   for OCA projects
   - Use wide logos like the official ones (one line with odoo +
   application_name) or make the logos use two lines (first one for odoo and
   second one for application_name)


Again, thank you all for your participation !!

Regards,
-Mario
___
Mailing list: https://launchpad.net/~openerp-community
Post to : openerp-community@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~learts92/sale-wkfl/7.0-add-sale-order-authorized-users into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~learts92/sale-wkfl/7.0-add-sale-order-authorized-users/+merge/227325
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/sale-wkfl/7.0-dropshipping-merge-po-lep into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~camptocamp/sale-wkfl/7.0-dropshipping-merge-po-lep/+merge/216756
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/sale-wkfl/product_procurement_type into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~camptocamp/sale-wkfl/product_procurement_type/+merge/222111
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~akretion-team/sale-wkfl/7.0-addmulticpny-sale-except-module-dbl into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~akretion-team/sale-wkfl/7.0-addmulticpny-sale-except-module-dbl/+merge/223750
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~dreis-pt/sale-wkfl/7.0-sale_noinvoice-dr into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~dreis-pt/sale-wkfl/7.0-sale_noinvoice-dr/+merge/221383
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~initos.com/sale-wkfl/7.0-add-sale_exception_warning into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~initos.com/sale-wkfl/7.0-add-sale_exception_warning/+merge/218365
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~akretion-team/sale-wkfl/70-add-sale_order_revision into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~akretion-team/sale-wkfl/70-add-sale_order_revision/+merge/202735
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~kinner-vachhani/sale-wkfl/lp-1317035 into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~kinner-vachhani/sale-wkfl/lp-1317035/+merge/223877
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~akretion-team/sale-wkfl/7.0-add-sale_group into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~akretion-team/sale-wkfl/7.0-add-sale_group/+merge/201017
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/sale-wkfl/7.0-add-dropshipping-merge-check-lep into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~camptocamp/sale-wkfl/7.0-add-dropshipping-merge-check-lep/+merge/216420
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~savoirfairelinux-openerp/sale-wkfl/sale_dropshipping_translation into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~savoirfairelinux-openerp/sale-wkfl/sale_dropshipping_translation/+merge/211607
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~factorlibre/sale-wkfl/sale-wkfl-7-partnerrisk-partnerinsurance into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~factorlibre/sale-wkfl/sale-wkfl-7-partnerrisk-partnerinsurance/+merge/209204
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~david-cormier-j/sale-wkfl/sale_landed_costs into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~david-cormier-j/sale-wkfl/sale_landed_costs/+merge/205650
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~akretion-team/sale-wkfl/7.0-add-sale_import_lines into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~akretion-team/sale-wkfl/7.0-add-sale_import_lines/+merge/201021
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~yannick-buron/sale-wkfl/sale-wkfl into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~yannick-buron/sale-wkfl/sale-wkfl/+merge/207468
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~savoirfairelinux-openerp/sale-wkfl/sale_lot_tracking into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~savoirfairelinux-openerp/sale-wkfl/sale_lot_tracking/+merge/216323
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~akretion-team/sale-wkfl/sale-wkfl_discount_per_unit into lp:~sale-core-editors/sale-wkfl/6.1

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~akretion-team/sale-wkfl/sale-wkfl_discount_per_unit/+merge/138192
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/6.1.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp


Re: [Openerp-community-reviewer] [Merge] lp:~camptocamp/sale-wkfl/7.0-add-sale-default-discount-lep into lp:~sale-core-editors/sale-wkfl/7.0

2014-08-07 Thread Pedro Manuel Baeza
Review: Resubmit

This project is now hosted on https://github.com/OCA/sale-workflow. Please move 
your proposal there. This guide may help you 
https://github.com/OCA/maintainers-tools/wiki/How-to-move-a-Merge-Proposal-to-GitHub

-- 
https://code.launchpad.net/~camptocamp/sale-wkfl/7.0-add-sale-default-discount-lep/+merge/227214
Your team Sale Core Editors is subscribed to branch 
lp:~sale-core-editors/sale-wkfl/7.0.

-- 
Mailing list: https://launchpad.net/~openerp-community-reviewer
Post to : openerp-community-reviewer@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openerp-community-reviewer
More help   : https://help.launchpad.net/ListHelp