[Openerp-community] [OERPLib] The 0.7.0 version has been released!

2013-02-19 Thread Sébastien ALIX
OERPLib is a client library to OpenERP server. It aims to provide an
easy way to remotely pilot an OpenERP server.

Features supported:

- XML-RPC and Net-RPC protocols,
- access to all methods proposed by an OpenERP model class
  (even 'browse') with an API similar to the server-side API,
- ability to use named parameters with such methods
  (OpenERP = 6.1),
- user context automatically sent (OpenERP = 6.1),
- browse records,
- execute workflows,
- manage databases,
- reports downloading.

OERPLib works with OpenERP v5.0, v6.0, v6.1 and v7.0.

Documentation : http://pythonhosted.org/OERPLib/
PyPI :  http://pypi.python.org/pypi/OERPLib/
Source :https://launchpad.net/oerplib/

Changes in the 0.7.0 release:

- User context is sent automatically (OpenERP = 6.1),
- Able to use named parameters with OSV methods (OpenERP = 6.1),
- Auto-detect the OpenERP server version (enable or disable some
  features according to the version),
- Add support for 'html' type fields,
- [REGRESSION] one2many and many2many descriptor attributes now
  return a generator to iterate on 'browse_record' instead
  of a list,
- [REGRESSION] 'osv_name' parameter of some functions has been
  renamed to 'model',
- 'OERP.timeout' property deprecated (use 'OERP.config[timeout]'
  instead),
- 'OERP.get_osv_name()' method deprecated (use
  'record.__osv__[name]' instead),
- Bug fixes,
- Documentation updated.


-- 
Sébastien ALIX
ABF Osiell
Immeuble Oméga
Rue Jean-Marie David
35740 PACÉ
Tél: 09 72 36 91 08
E-mail: *sebastien.a...@osiell.com mailto:sebastien.a...@osiell.com
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] [OERPLib] The 0.7.0 version has been released!

2013-02-19 Thread Joël Grand-Guillaume
Dear Sébastien,

Thanks for this great contributions ! I want to also share ERPpeek library that 
has more or less the same features (I do not know the exact differences...) :

 * http://erppeek.readthedocs.org/en/latest/
 * https://pypi.python.org/pypi/ERPpeek

We do use this one @ Camptocamp... also integrated with our new beta testing 
tools (https://launchpad.net/oerpscenario)

What I love in this one is the way it more or less use the same principle than 
ActiveRecord in Ruby, e.g. : 

client.ResUsers.create({'login': 'joe', 'name': 'Joe'}) or 
client.AccountInvoice.get(12)

Best regards,


Joël


Le 19 févr. 2013 à 13:42, Sébastien ALIX sebastien.a...@osiell.com a écrit :

 OERPLib is a client library to OpenERP server. It aims to provide an
 easy way to remotely pilot an OpenERP server.
 
 ...
 ___



--

Camptocamp
Innovative Solutions by Open Source Experts

Joël Grand-Guillaume
Division Manager - Business Solutions

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] [OERPLib] The 0.7.0 version has been released!

2013-02-19 Thread Raphael Valyi


 What I love in this one is the way it more or less use the same principle
 than ActiveRecord in Ruby, e.g. :

 client.ResUsers.create({'login': 'joe', 'name': 'Joe'}) or
 client.AccountInvoice.get(12)



And of course, since 2009, there is still OpenObject On Ruby, aka OOOR
https://github.com/rvalyi/ooor which inherits from ActiveResource and hence
from ActiveModel which is part of the Ruby top ActiveRecord model
hierarchy, part of the the awesome original Rails framework from the
talented one guys everyone tries to copy...

OOOR also opens you the doors to the Rails web programming, REST
webservices over Rails, HTML5 atop of that, the multi-threaded GIL-free,
native code performance compiled Java eco-system and JVM via JRuby (as used
in TerminatOOOR) etc...

But of course, one is always free to downgrade to some Python wannabee
clone ;-)

FYI, OOOR as recently been tested on OpenERP 7.0 and its test suite runs
green on OpenERP 7.0 too, so it's just fully compatible.


Regards.


-- 
Raphaël Valyi
Founder and consultant
http://twitter.com/rvalyi http://twitter.com/#!/rvalyi
+55 21 2516 2954
www.akretion.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] [OERPLib] The 0.7.0 version has been released!

2013-02-19 Thread Nhomar Hernández
I really think oerplib is by far the best documented client tool, we use a
lot internally in Vauxoo.

Kudos for this contrib, IMHO one of the best examples of the OpenSource
spirit in OpenERP world.

;-)


2013/2/19 Sébastien ALIX sebastien.a...@osiell.com

 OERPLib is a client library to OpenERP server. It aims to provide an
 easy way to remotely pilot an OpenERP server.

 Features supported:

 - XML-RPC and Net-RPC protocols,
 - access to all methods proposed by an OpenERP model class
   (even 'browse') with an API similar to the server-side API,
 - ability to use named parameters with such methods
   (OpenERP = 6.1),
 - user context automatically sent (OpenERP = 6.1),
 - browse records,
 - execute workflows,
 - manage databases,
 - reports downloading.

 OERPLib works with OpenERP v5.0, v6.0, v6.1 and v7.0.

 Documentation : http://pythonhosted.org/OERPLib/
 PyPI :  http://pypi.python.org/pypi/OERPLib/
 Source :https://launchpad.net/oerplib/

 Changes in the 0.7.0 release:

 - User context is sent automatically (OpenERP = 6.1),
 - Able to use named parameters with OSV methods (OpenERP = 6.1),
 - Auto-detect the OpenERP server version (enable or disable some
   features according to the version),
 - Add support for 'html' type fields,
 - [REGRESSION] one2many and many2many descriptor attributes now
   return a generator to iterate on 'browse_record' instead
   of a list,
 - [REGRESSION] 'osv_name' parameter of some functions has been
   renamed to 'model',
 - 'OERP.timeout' property deprecated (use 'OERP.config[timeout]'
   instead),
 - 'OERP.get_osv_name()' method deprecated (use
   'record.__osv__[name]' instead),
 - Bug fixes,
 - Documentation updated.


 --
 Sébastien ALIX
 ABF Osiell
 Immeuble Oméga
 Rue Jean-Marie David
 35740 PACÉ
 Tél: 09 72 36 91 08
 E-mail: *sebastien.a...@osiell.com mailto:sebastien.a...@osiell.com
 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




-- 

Saludos Cordiales

Nhomar G. Hernandez M.
+58-414-4110269
Skype: nhomar00
Web-Blog: http://geronimo.com.ve
Servicios IT: http://vauxoo.com
Linux-Counter: 467724
Correos:
nho...@openerp.com.ve
nho...@vauxoo.com
twitter @nhomar
___
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


[Openerp-community] Supplier Invoice Imports

2013-02-19 Thread Andrew Higgs
Hi all,

I have created a csv of supplier invoices. The file imports just fine
although OpenERP creates Customer Invoices. I do run the import from the
Suppliers Invoice page (using the imports module).

What am I doing wrong? Using OpenERP 7.

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


Re: [Openerp-community] Supplier Invoice Imports

2013-02-19 Thread erik . myllymaki
Add a new field called supplier to you CSV and set it to True and import
again.



On Tue, Feb 19, 2013 at 8:26 AM, Andrew Higgs andrew.m.hi...@gmail.comwrote:

 Hi all,

 I have created a csv of supplier invoices. The file imports just fine
 although OpenERP creates Customer Invoices. I do run the import from the
 Suppliers Invoice page (using the imports module).

 What am I doing wrong? Using OpenERP 7.

 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


___
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] Supplier Invoice Imports

2013-02-19 Thread Jose Antonio Morales
Hi all.

If you invoices create without type, this will customer type by default,
you must add the column type with supplier value
El 19/02/2013 12:01, erik.myllym...@gmail.com escribió:

 Add a new field called supplier to you CSV and set it to True and import
 again.



 On Tue, Feb 19, 2013 at 8:26 AM, Andrew Higgs andrew.m.hi...@gmail.comwrote:

 Hi all,

 I have created a csv of supplier invoices. The file imports just fine
 although OpenERP creates Customer Invoices. I do run the import from the
 Suppliers Invoice page (using the imports module).

 What am I doing wrong? Using OpenERP 7.

 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



 ___
 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] Supplier Invoice Imports

2013-02-19 Thread Mario Arias
Google is your friend...  :)

https://bugs.launchpad.net/openobject-addons/+bug/1086424

There is a fix, but as expected it hasn't been merged... AND  is only
targeting trunk...

Regards,
-Mario


On Tue, Feb 19, 2013 at 12:16 PM, Nhomar Hernández nho...@gmail.com wrote:

 Just write type in the header of your file.


 2013/2/19 Mario Arias the.clone.mas...@gmail.com

 I couldn't find the reference, but this was a reported bug since 6.1...
  I guess it is still not fixed/merged...

 Field Type could not be selected  at import time, so correct import
 file could not be created...

 Regards,
 -Mario


 On Tue, Feb 19, 2013 at 10:47 AM, Jose Antonio Morales 
 j...@vauxoo.comwrote:

 Hi all.

 If you invoices create without type, this will customer type by default,
 you must add the column type with supplier value
 El 19/02/2013 12:01, erik.myllym...@gmail.com escribió:

 Add a new field called supplier to you CSV and set it to True and
 import again.



 On Tue, Feb 19, 2013 at 8:26 AM, Andrew Higgs andrew.m.hi...@gmail.com
  wrote:

 Hi all,

 I have created a csv of supplier invoices. The file imports just fine
 although OpenERP creates Customer Invoices. I do run the import from the
 Suppliers Invoice page (using the imports module).

 What am I doing wrong? Using OpenERP 7.

 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



 ___
 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



 ___
 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




 --
 
 Saludos Cordiales

 Nhomar G. Hernandez M.
 +58-414-4110269
 Skype: nhomar00
 Web-Blog: http://geronimo.com.ve
 Servicios IT: http://vauxoo.com
 Linux-Counter: 467724
 Correos:
 nho...@openerp.com.ve
 nho...@vauxoo.com
 twitter @nhomar
___
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] Supplier Invoice Imports

2013-02-19 Thread Nhomar Hernández
Allí es dnd si tienes una garantía en 10 minutos lo backportean ;-)

2013/2/19 Mario Arias the.clone.mas...@gmail.com

 Google is your friend...  :)

 https://bugs.launchpad.net/openobject-addons/+bug/1086424

 There is a fix, but as expected it hasn't been merged... AND  is only
 targeting trunk...

 Regards,
 -Mario


 On Tue, Feb 19, 2013 at 12:16 PM, Nhomar Hernández nho...@gmail.comwrote:

 Just write type in the header of your file.


 2013/2/19 Mario Arias the.clone.mas...@gmail.com

 I couldn't find the reference, but this was a reported bug since 6.1...
  I guess it is still not fixed/merged...

 Field Type could not be selected  at import time, so correct import
 file could not be created...

 Regards,
 -Mario


 On Tue, Feb 19, 2013 at 10:47 AM, Jose Antonio Morales 
 j...@vauxoo.comwrote:

 Hi all.

 If you invoices create without type, this will customer type
 by default, you must add the column type with supplier value
 El 19/02/2013 12:01, erik.myllym...@gmail.com escribió:

 Add a new field called supplier to you CSV and set it to True and
 import again.



 On Tue, Feb 19, 2013 at 8:26 AM, Andrew Higgs 
 andrew.m.hi...@gmail.com wrote:

 Hi all,

 I have created a csv of supplier invoices. The file imports just fine
 although OpenERP creates Customer Invoices. I do run the import from the
 Suppliers Invoice page (using the imports module).

 What am I doing wrong? Using OpenERP 7.

 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



 ___
 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



 ___
 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




 --
 
 Saludos Cordiales

 Nhomar G. Hernandez M.
 +58-414-4110269
 Skype: nhomar00
 Web-Blog: http://geronimo.com.ve
 Servicios IT: http://vauxoo.com
 Linux-Counter: 467724
 Correos:
 nho...@openerp.com.ve
 nho...@vauxoo.com
 twitter @nhomar





-- 

Saludos Cordiales

Nhomar G. Hernandez M.
+58-414-4110269
Skype: nhomar00
Web-Blog: http://geronimo.com.ve
Servicios IT: http://vauxoo.com
Linux-Counter: 467724
Correos:
nho...@openerp.com.ve
nho...@vauxoo.com
twitter @nhomar
___
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] Supplier Invoice Imports

2013-02-19 Thread Raphael Valyi
On Tue, Feb 19, 2013 at 4:19 PM, Mario Arias the.clone.mas...@gmail.comwrote:

 Google is your friend...  :)

 https://bugs.launchpad.net/openobject-addons/+bug/1086424



Sometimes a plain web Google search is a bit ineffective.
Here is a personal advice on how I manage my personal OpenERP bug
knowledge base: I subscribe to Launchpad OpenERP bugs using GMail with a
filter to move the bug reports into a specific folder. Everyday, as part of
the survey activity I spend at least 30 minutes scanning the dozens of bugs
reports mailed to me (you want to know what you can sell and what you
better not sell, don't you?). Typically a thing I do on mobile phone in the
bus while going to office.
When bugs are important I star them. I also systematically star them when
they touch accounting because I'm heretic enough to think it's the root of
any ERP system. Nah I'm kidding, apps is the key ;-p
After this, a bug search inside GMail proves to be really efficient. Much
more efficient than searching the web via Google, at least for me.

I think using GMail API I could share that exporting it to some website or
using the Launchpad API. Something to think about.

My 0.2 BR$

-- 
Raphaël Valyi
Founder and consultant
http://twitter.com/rvalyi http://twitter.com/#!/rvalyi
+55 21 2516 2954
www.akretion.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] Supplier Invoice Imports

2013-02-19 Thread Serpent Consulting Services

  
  
+1 Rapha!
  On Wednesday 20 February 2013 01:20 AM, Raphael Valyi wrote:

On Tue, Feb 19, 2013 at 4:19 PM, Mario Arias the.clone.mas...@gmail.com
  wrote:
  

  Google is your friend... :)


https://bugs.launchpad.net/openobject-addons/+bug/1086424
  





Sometimes a plain web Google search is a bit ineffective.
Here is a personal advice on how I manage my "personal
  OpenERP bug knowledge base": I subscribe to Launchpad OpenERP
  bugs using GMail with a filter to move the bug reports into a
  specific folder. Everyday, as part of the survey activity I
  spend at least 30 minutes scanning the dozens of bugs reports
  mailed to me (you want to know what you can sell and what you
  better not sell, don't you?). Typically a thing I do on mobile
  phone in the bus while going to office.
When bugs are important I star them. I also systematically
  star them when they touch accounting because I'm heretic
  enough to think it's the root of any ERP system. Nah I'm
  kidding, apps is the key ;-p
After this, a bug search inside GMail proves to be really
  efficient. Much more efficient than searching the web via
  Google, at least for me.


I think using GMail API I could share that exporting it to
  some website or using the Launchpad API. Something to think
  about.


My 0.2 BR$


--
  
  Raphal Valyi
  Founder and consultant
  http://twitter.com/rvalyi

  +55
  21 2516 2954
  www.akretion.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




-- 
  
  Thanks,
  Regards,
  
  Serpent Consulting Services.
  Web : http://www.serpentcs.com
  Twitter: jaynvora, husendaudi
  Skype: jaynvora, husen.daudi
  Blog : http://www.serpentcs.com/blog
  

___
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] Supplier Invoice Imports

2013-02-19 Thread Andrew Higgs
Thank you to everyone for the responses. Looks like this may be the bug
Mario is speaking of. Well investigate further tomorrow morning and let you
know.

Great to see the community at work like this.

Regards
Andrew Higgs
On 19 Feb 2013 21:19, Mario Arias the.clone.mas...@gmail.com wrote:

 Google is your friend...  :)

 https://bugs.launchpad.net/openobject-addons/+bug/1086424

 There is a fix, but as expected it hasn't been merged... AND  is only
 targeting trunk...

 Regards,
 -Mario


 On Tue, Feb 19, 2013 at 12:16 PM, Nhomar Hernández nho...@gmail.comwrote:

 Just write type in the header of your file.


 2013/2/19 Mario Arias the.clone.mas...@gmail.com

 I couldn't find the reference, but this was a reported bug since 6.1...
  I guess it is still not fixed/merged...

 Field Type could not be selected  at import time, so correct import
 file could not be created...

 Regards,
 -Mario


 On Tue, Feb 19, 2013 at 10:47 AM, Jose Antonio Morales 
 j...@vauxoo.comwrote:

 Hi all.

 If you invoices create without type, this will customer type
 by default, you must add the column type with supplier value
 El 19/02/2013 12:01, erik.myllym...@gmail.com escribió:

 Add a new field called supplier to you CSV and set it to True and
 import again.



 On Tue, Feb 19, 2013 at 8:26 AM, Andrew Higgs 
 andrew.m.hi...@gmail.com wrote:

 Hi all,

 I have created a csv of supplier invoices. The file imports just fine
 although OpenERP creates Customer Invoices. I do run the import from the
 Suppliers Invoice page (using the imports module).

 What am I doing wrong? Using OpenERP 7.

 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



 ___
 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



 ___
 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




 --
 
 Saludos Cordiales

 Nhomar G. Hernandez M.
 +58-414-4110269
 Skype: nhomar00
 Web-Blog: http://geronimo.com.ve
 Servicios IT: http://vauxoo.com
 Linux-Counter: 467724
 Correos:
 nho...@openerp.com.ve
 nho...@vauxoo.com
 twitter @nhomar



 ___
 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] Supplier Invoice Imports

2013-02-19 Thread Andrew Higgs
Thanks Raphael. I think I will subscribe tomorrow. Seems like a very good
suggestion.

:-)
On 19 Feb 2013 21:51, Raphael Valyi rva...@gmail.com wrote:

 On Tue, Feb 19, 2013 at 4:19 PM, Mario Arias 
 the.clone.mas...@gmail.comwrote:

 Google is your friend...  :)

 https://bugs.launchpad.net/openobject-addons/+bug/1086424



 Sometimes a plain web Google search is a bit ineffective.
 Here is a personal advice on how I manage my personal OpenERP bug
 knowledge base: I subscribe to Launchpad OpenERP bugs using GMail with a
 filter to move the bug reports into a specific folder. Everyday, as part of
 the survey activity I spend at least 30 minutes scanning the dozens of bugs
 reports mailed to me (you want to know what you can sell and what you
 better not sell, don't you?). Typically a thing I do on mobile phone in the
 bus while going to office.
 When bugs are important I star them. I also systematically star them when
 they touch accounting because I'm heretic enough to think it's the root of
 any ERP system. Nah I'm kidding, apps is the key ;-p
 After this, a bug search inside GMail proves to be really efficient. Much
 more efficient than searching the web via Google, at least for me.

 I think using GMail API I could share that exporting it to some website or
 using the Launchpad API. Something to think about.

 My 0.2 BR$

 --
 Raphaël Valyi
 Founder and consultant
 http://twitter.com/rvalyi http://twitter.com/#!/rvalyi
 +55 21 2516 2954
 www.akretion.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