jeudi 27 août 2009

Faster Developent With Open ERP Gedit Plugin

In continuation to make development and customization for Open ERP easy and fast with tools like Object designer, Workflow designer, Report designer, View editor,we are happy to announce to you all launch of Open ERP Gedit (Text Editor) plugin. To build or customize business applications in very less time for Open ERP.

Now no need to remember syntax of source code, Geditor will give you freedom and make coding easy for Open ERP. For more detail please visit this link : Open ERP – Gedit . Here in this screen cast we have shown, how with Gedit one can develop a class for Partner module in Open ERP and can create a wizard for mailing. Also it will help coder by selecting different theme they can change color code to highlight syntax of Open ERP.

To download Gedit plugin kindly click on
1. Gedit plugin for Open ERP
2. Change theme in Gedit plugin

mardi 25 août 2009

Opportunity for ERP Enthusiasts With Open ERP

Hello Everybody,

Open ERP, is one of the most appreciated Open Source management software, with more than 700 downloads per day. It's available today in 18 languages and has a world network of partners and contributors with more than 90 partners and 1000 contributors. Such software has arisen from the blend of high code quality, well-judged architecture and use of free technologies. In fact, you may be surprised (if you're an IT person) to find that the size of whole Open ERP setup is less than 90 MB when you've installed the software.

Open ERP has released its new service offer - Odoo, the Ondemand ERP solution with minimal costs involved for end user. Its a SaaS (Software As A Service) offer from Open ERP, which provides access to end user without any investments or any infrastructural cost. It is mainly dedicated to small and/or medium enterprises and budding enterprises with limited IT budgets. With Odoo, you can get a ready-to-use and complete enterprise management software in a few clicks. Odoo is based on the latest stable version of Open ERP. It's a self-service and low-cost offer with a unique price that includes:

* Open ERP Hosting with high bandwidth and servers,
* Incremental backups servers,
* Software + Infrastructure as a Service,
* Maintenance with bugfixes and automated migrations,
* Open ERP control centre, etc.

The subscription to Odoo is free, one need to pay at the end of the month, only if he is satisfied. With Odoo, one pay only what he really use @ 0,60€ per hour. Also the 60 hours of use per month is for free. Get more informations under the website: http://www.odoo.com. This solution offers the possibility to get Open ERP in three clicks and use it anywhere at any time. You can subscribe to this solution here http://www.odoo.com/subscribe.html.

Recently Open ERP released its latest version 5.0.2 with new improvements and is full of user friendly new features like,

Better error messages for end users
Attributes for barcode
Improved reporting for accounts, logistics, sales, taxation, production, sales etc... for better IMS reporting.

You will find the Windows installers and the sources on Open ERP download page (http://www.openerp.com/downloads.html). This is the opportunity for any ERP enthusiast or business person to have on hand experience of world class ERP without incuring cost.

For more information contact sales@openerp.com or sales@odoo.com

lundi 24 août 2009

Open ERP Server With MySQL

SAServer will be Enhanced Version Open ERP-Server which will support all Major Databases.
Its main aim is to make Open ERP database independent. So end user can make their existing application as it and able to implement Open ERP easily on the same dababase.

How to get branches?

You need to checkout branch of sa-server :
bzr branch lp:~openerp-commiter/openobject-server/server-sa

For this server you need to get addons from this branch:
bzr branch lp:~openerp-commiter/openobject-addons/addons-sa

Use stable5.0 client for this server:

bzr branch lp:openobject-client/5.0

How to install SQLAlchemy?

Install newer version of sqlalchemy from 0.5.x series,
Download SQLAlchemy from this link:

http://sourceforge.net/projects/sqlalchemy/files/sqlalchemy/SQLAlchemy-0.5.3.tar.gz/download

Configure Mysql

In mysql you need to create new user named tiny:

CREATE USER ‘tiny’@'localhost’ IDENTIFIED BY ‘password’;

Grant privileges to this user by:

GRANT ALL PRIVILEGES ON *.* TO ‘tiny’@'localhost’

How to start server?

You can start sa-server using –engine option,

–engine=’database://USER:PASSWORD@HOSTNAME:PORT’

Where,

USER : mysql user (Super User)
PASSWORD : Password of USER
HOSTNAME : Host on which mysql server is running (By Default : localhost)
PORT : Port on which mysql server is running (By Default : 3306)

Ex: python openerp-server.py –engine=’mysql:tiny@//localhost’ –addons-path=../../addons-sa/

Now OpenERP server is ready to work with mysql database,