Community News


Mise en ligne du Site SIMPLEE

ShareThis !
January 23, 2012 11:36 AM
Simplee

Forts de leurs expertises reconnues, Didier DEMANGE (Gérant de la société 5eme Sens & Associé d’Agilia Conseils) consultant en stratégie d’entreprise et performance commerciale, et Nicolas JEUDY (Gérant de la société Tux Services) expert informaticien en management des systèmes d’information ont le plaisir de vous annoncer la création de Simplee. Simplee est une société spécialisée [...]

OpenERP: formation gratuite "découverte" autour des nouvelles fonctionnalités de la v6.1 par Camptocamp

ShareThis !
January 18, 2012 8:33 PM
Helene Michel

Fort d'une expérience acquise depuis de nombreuses années dans le domaine de la gestion d'entreprise, Camptocamp vous propose un accompagnement métier et technique de qualité dans vos projets d'intégration. OpenERP est un ERP entièrement Open Source qui possède à la fois une couverture fonctionnelle complète et un potentiel évolutif parmi les plus impressionnants du marché.Premier Partner Gold en France et en Suisse depuis 2006, nos experts développent des compétences techniques de haut niveau sur le framework OpenObject. Nous fournissons une offre personalisée (projets clés en main), ainsi qu'un programme de formations et du support utilisateur souple spécialement adaptés à OpenERP.

OpenERP: formation gratuite "découverte" autour des nouvelles fonctionnalités de la v6.1 par Camptocamp

 

jeudi 15 mars 2012 de 09:00 à 12:30 (GMT+0100)

Lyon, France



Objectifs

Cette session est destinée aux personnes n'ayant aucune connaissance préalable d'OpenERP et souhaitant avoir un aperçu des différentes fonctionnalités de l'outil en passant en revue un scénario standard de la vente à la comptabilité.
Il ne s'agit pas d'une formation au sens strict du terme, mais d'un aperçu général des différents modules et fonctionnalités offertes par l'outil afin de déterminer dans quelle mesure il peut convenir à un besoin particulier.


Programme indicatif

9h – 9h30 accueil des participants
9h30 – 10h45 présentation générale d'OpenERP v6.1
- L'intérêt du modèle Open Source pour un ERP évolutif, modulaire et personnalisable
- Aperçu des nouveautés entre la v6.0 et la v6.1
- Ergonomie générale et gestion des contacts de la société
10h45 – 11h15 pause café et viennoiseries
11h15 – 12h30 aperçu d'un scénario-type
- CRM, gestion des produits et des commandes client
- Gestion des achats et suivi des stocks
- Facturation et comptabilité générale
- Suivi de projets et ressources humaines (présences, congés, notes de frais...)


Détails pratiques
  • Tarif : gratuit (limité à 30 personnes)
  • Lieu facile d'accès: Tour Part-Dieu (20ème étage) située 129 rue Servient, en face de la gare SNCF Part-Dieu
  • Prévoir une pièce d'identité pour disposer de votre badge à l'accueil de la Tour


Plus d'informations
E-mail: event-fr@camptocamp.com | Web: http://openerp.camptocamp.com
Téléphone: +33 (0)4 79 44 44 94



Nous nous réjouissons de pouvoir compter sur votre présence !
A très bientôt,

Camptocamp, Business Solutions Team

Securing your system

ShareThis !
January 18, 2012 4:42 AM
Gustavo Orrillo

Quick post of a script worth using. If your openerp-server is running on a Linux server, this server should be secured. Linux is a more secure server than Windows, but still is vulnerable to attacks. If you are new to the security field in Linux, there is a tool you should try, Bastille Unix. If [...]

How to debug your OpenERP modules

ShareThis !
January 17, 2012 4:25 PM
Gustavo Orrillo

Debugging your OpenERP modules is quite straightforward, as long as you know basic Python programming. Just insert the following line in your module: import pdb;pdb.set_trace() Then restart your openerp-server with the –debug option # openerp-server –debug Then monitor your server console. You will see your server stop and show you a command line prompt where [...]

Calculating a product cost with OpenERP

ShareThis !
January 15, 2012 2:38 AM
Gustavo Orrillo

Last week I had the opportunity to try a very useful module that, IMHO, should be included in OpenERP core. This module is product_extended and can be found in the extras repository, you can download it with the following command: #  bzr branch lp:openobject-addons/extra-6.0 This module does many things, among them shows the product last [...]

OpenERP – new web client (6.1) – javascript hooks

ShareThis !
January 12, 2012 12:10 AM
Agile Business Group

I was trying to inject some custom code on logout event. My code was never executed though. Finally I got it working thanks to Xavier Morel (see my question on stackoverflow).

Here is the clue: you can “easily” inject an handler for a given event (openerp-web specific ones) by doing like this:


openerp.yourmodule = function(openerp) {
    openerp.webclient.on_logout.add_first(
        function () {
            alert('thatsme!');
        }
    );
}


You must pay attention to 2 things particularly:

  1. you MUST use “openerp.webclient” and not “openerp.web.WebClient”
  2. you MUST use your module name in order to get the JS loaded

This last point is among the few informations you find in the not-so-official docs contained into the web module (see my previous blogpost on how to get them).

Using “add_first” I’m adding an event handler for the logout event which will be executed before any existing handler.

If you look at the original code of the web module you’ll find other “hooks” like “add_last” which in turns add your handler at the end of the queue.


Formation OpenERP - Magento : 24-25-26 janvier 2012 - Paris

ShareThis !
January 10, 2012 5:30 AM
Akretion


OpenERP – new web client (6.1) documentation

ShareThis !
January 09, 2012 4:37 PM
Agile Business Group

Even if it’s not yet available on the web (don’t ask why…. :S) you can view the new OpenERP web client documentation on your machine. That’s what you have to do in order to get it:

first of all install sphinx if you don’t have it in your system (assuming you are using a linux system):

$ sudo pip install sphinx

or

$ sudo  easy_install sphinx

then you have to compile the docs. Go to the web package doc folder:

$ cd  web/trunk/doc

(if you have downloaded OpenERP trunk following elbati’s how-to you’ll have the web client in this path)

and run

$ make source html

That’s it! Now you can browse the docs by going to the newly generated folder web/trunk/doc/build/html and opening index.html into your favorite web browser.

As any other OpenERP documentation is quite un-finished but it’s a good starting point for skimming trough the new web client capabilities.

UPDATE: docs are now available here: http://planet.domsense.com/docs/openerp-web/en/index.html


OpenERP: fiscal year change

ShareThis !
January 03, 2012 8:24 PM
Camptocamp

To help you open the 2012 fiscal year with OpenERP, Camptocamp just made a video!

Should you need further information on this process, please do not hesitate to contact our team!

Camptocamp: Official Gold partner in Switzerland, France and Austria (localisation of financial accounting for this countries) / Partenaire officiel Gold en Suisse, France et Autriche (localisation de la comptabilité financière pour ces pays) / Offizieller Gold-Partner in der Schweiz, Frankreich und Österreich (Anpassung der Finanzbuchhaltung für diese Länder)

Managing your openerp processes with Supervisor

ShareThis !
January 02, 2012 4:43 PM
Gustavo Orrillo

Reading a book on system administration with Python I found Supervisor, which is a tool that allows you manage your programs. I found it easy to install and learn, and in minutes I had it running in my system. After reading the documentation, which took me minutes, I was able to configure its configuration file, [...]

Automated actions in OpenERP

ShareThis !
December 29, 2011 5:07 AM
Gustavo Orrillo

In OpenERP, as in any other ERP or system, you need to perform certain tasks regularly. Tasks such as performing a backup, calculating ABC categories, running the MRP planner, etc. How do you get this done in OpenERP? It’s quite easy and you don’t need your server administrator to get this done. Scheduling tasks in [...]

Logging from your OpenERP module

ShareThis !
December 27, 2011 9:57 PM
Gustavo Orrillo

I always wondered how to, in the OpenERP web client, show those informational messages in the top of the web client. Messages such as ‘PO/00001 created’. They are very informational for users. Well… reading a presentation on the differences between OpenERP v5 and v6 I found that one of the additions was the self.log function [...]

ABC Analysis in OpenERP

ShareThis !
December 26, 2011 4:50 PM
Gustavo Orrillo

ABC analysis is very well covered in this Wikipedia article. So no point of talking about it again here. Thing is, how do you implement it in OpenERP. Truth is, it is not a great deal. You only need to pull the sale order lines for the past six months (for example, could be a [...]

Checking lead-times in OpenERP

ShareThis !
December 23, 2011 2:51 PM
Gustavo Orrillo

In case you need to check your suppliers’ lead-times in OpenERP, it is quite easy. You need to go to Warehouse > Reporting >  Movement Analysis. You will be able to see a view where you can filter by partner, product, location and other attributes the planned lead-time and execution lead-time. This is a great [...]

Data integrity issues in MRP implementations

ShareThis !
December 22, 2011 4:55 PM
Gustavo Orrillo

A good description of the data integrity issues found in MRP implementations can be found in the article on MRP in Wikipedia. In a nutshell, if the information in your manufacturing system is bad, don’t expect its planning to be any better (or GIGO). While you are implementing the MRP module in OpenERP, you should [...]

Deleted records in OpenERP

ShareThis !
December 21, 2011 4:43 PM
Gustavo Orrillo

Sooner or later you will find yourself with pgAdmin (or any other query tool) querying the OpenERP database in order to pull statistical information. It happens, and it is a healthy sign of your OpenERP implementation. Something you need to keep in mind is how OpenERP “deletes” its records. It does not physically remove them. [...]

Time-outs and the openerp-web client

ShareThis !
December 20, 2011 3:52 PM
Gustavo Orrillo

Sometimes you need to change the time-out setting of your openerp-web client application. There might be many reasons for this, among them the need to submit long  processes or views that take minutes to retrieve the desired data. Doing this is no big deal with the GTK client, but gets tricky  when it comes to [...]

NaN·tic at Tecnocampus

ShareThis !
December 15, 2011 10:15 PM
NaN-tic

On November 24th I had the pleasure to explain our experience in the creation and development of our company at Tecnocampus de Mataró in the production and operations course, invited by Diego Bartolomé from tauyou.

It was an encouraging experience which I hope I can repeat in the future. We must also thank the collaboration of Alex from Planetronic who answered the questions of some students who made an excellent work studying NaN·tic's case. By the way, you can watch their presentation here.

There, I also met Alex Araujo who recorded and edited the talk and a small interview (in Catalan) that you can see below (announcement here). Also you can see the original video that was streamed live!

 

 

 


ERPpeek, a tool for browsing OpenERP data from the command line

ShareThis !
December 14, 2011 1:48 AM
The Open Sourcerer

We have been rather busy implementing OpenERP for a number of our customers and I have been tweaking and customising and extending it all over the place. It is a great fun product to work with, very flexible and Python is a really nice language to use. One thing I have been finding is that as a developer I really want to know more about the fieldnames and field values that are stored behind the scenes on an object, I want a command line utility to allow me to inspect a particular document and figure out why it displays what it displays etc. There might be one out there somewhere, but I figured it would be more fun to write my own, so I did. The best way to show how it works is with an example

./erppeek.py -d testdb -u admin -p admin -m res.users 1

in it’s simplist form that will connect to an openerp server running on localhost, (port 8069) with username admin and password admin to a database called testdb. It will then return all fields for the model res.users with id 1 (which will be the admin user)

./erppeek.py --server 'http://myserver.com:8069' -d testdb -u admin -p admin -m res.partner 1 3 5

This connects to a remote server called myserver.com and returns all fields from partners 1, 3 and 5

./erppeek.py --server 'http://myserver.com:8069' -d testdb -u admin -p admin -m res.partner -f name -f city 1 3 5

and now we are using the -f field parameter to return just the name and city (and it always returns the id as well) of those partners

./erppeek.py --server 'http://myserver.com:8069' -d testdb -u admin -p admin -m res.partner -f name -f city -s "name like School" -s "city = Southampton"

This time it is not relying on us passing in a list of object IDs, but it is doing a search of the res.partner objects where the name field contains ‘School’ and the city field is equal to Southampton.

To grab a copy of this small but handy little utility please download it from launchpad and make it executable. It works fine on Ubuntu, and should work on most platforms with Python. Do let me know in the comments what you think of it and what else you would like it to do.

Security note – this does at the moment get you to enter a password on the command line, which means the password will be available in your bash history and other users on your computer looking at processes you are running. This doesn’t bother me much as I am only using it on local development databases with trivial passwords anyway, but you have been warned. If someone wants to help fix that then great.


Aeroo Reports – Instalación Windows 1ra Parte

ShareThis !
December 12, 2011 10:35 AM
Ecuador

Bien, antes que nada quiero agradecer a Ezequiel Fernandez en Argentina por compartir con la comunidad Hispana, sobre el uso de Aeroo Reports

http://openerpargentina.com.ar/EzequielFernandez/Report_aeroo

Y Sobre todo a el increíble trabajo de Allistek(http://www.alistek.com), ya que gracias a ellos tenemos una alternativa mas sencilla de configurar nuestros reportes que el motor de reportes RML.

En el foro en ingles se indica como compilar el instalador de OpenERP para Windows con la versión 2.6 de Python, para ser sincero tuve que escarbar unos cuantos días para lograr hacerlo, con algunos tropiezos y frustraciones…, pero bueno voy a tratar de dar una guía de como habilitar aeroo reports para los usuarios de Windows

Básicamente el problema de la instalación en Windows, es que el instalador all-in-one o el del server que encontramos en la pagina de openerp esta compilado con Python 2.5, para poder conectarse con la librería de PyUNO(Necesario por el Aeroo Reports), es necesario que las versión sobre la que corre el Open sea las misma que la de la libreria y ademas debemos agregar en las librerias necesarias para el modulo(https://launchpad.net/aeroolib, Genshi, entre otras)

Primero para poder lograr compilar el instalador de openerp necesitan instalar las siguientes dependencias, que las pueden encontrar en este link

https://code.launchpad.net/~openerp-groupes/openerp/win-installer-trunk

Pueden bajarlo por medio del Bazaar, o descargar cada una de las dependencias en la carpeta 2.6.

Les recomiendo usar windows XP SP3 para este procedimiento.

Instalan Todas las librerías

  • Primero se intala python2.6.X.msi
  • Despues se instalan todos los demás ejecutables(.exe), el orden en realidad no es demasiado importante
  • Los archivos que son de extensión .egg deben copiarlas en C:\Python26\Lib\site-packages
  • Los archivos compresos de extensión .gz lo descomprimen completamente, luego desde el interprete de comandos(cmd.exe) ejecutan dentro de la ruta de los archivos descompresos “C:\Python26\python.exe setup.py install”, luego se mostrara la secuencia de instalación e indicara que se instalo correctamente el con sus dependencias, esto debe hacerse por cada archivo que esta compreso
  • Hay una librería que no se encuentra dentro de las dependencias de la página que es PyXML, aqui les dejo un link http://somethinkodd.com/PyXML/PyXML-0.8.4.win32-py2.6.exe en donde puede encontrar el instalador
  • Otra librería que hace falta es PyParsing, de esta no encontré un instalador, pero podemos instalarla con el siguiente comando “c:\Python26\Scripts\easy_install.exe pyparsing”, esto descargara la última versión
  • Librerías que también falta es la de vobject, http://vobject.skyhouseconsulting.com/vobject-0.8.1c.tar.gz, hacemos el mismo procedimiento de los archivos comprimidos
  • Por ultimo hay la libreria para el uso de CalDAV, que se llama Pywebdav, que la pueden instalar con el comando “c:\Python26\Scripts\easy_install.exe pywebdav”
  • Librerias de Aeroo Reports

Ahora, hay que corregir un error en la libreria PyXML que fue escrita antes de la aparición de python26, que usa un nombre de variable que es una palabra reservada en python26, asi que deben corregir dos archivos, que se encuentran en esta ruta

C:\Python26\Lib\site-packages\_xmlplus\xpath\ParsedAbbreviatedAbsoluteLocationPath.py -> en la linea 27 y 28 es necesario reemplazar la palabra “as” por cualquier otro nombre, en mi caso solo coloque un 1 adelante de la palabra

C:\Python26\Lib\site-packages\_xmlplus\xpath\ParsedAbbreviatedRelativeLocationPath.py -> en este archivo esta en la linea 31,32

Algo que también cabe recalcar antes de compilar, es que la libreria nativa de Python26 de xml tiene unas clases en una carpeta que se llama etree, el PyXML no usa esta librería por defecto así que debemos copiarla en la carpeta para poder tener la librería al momento de ejecutar openerp

En esta carpeta C:\Python26\Lib\site-packages\_xmlplus, debemos pegar la carpte “etree” que esta en la ruta C:\Python26\Lib\xml, asi no tendremos problemas con nuestra instalación

Descargamos los Fuentes, desde el sitio de openerp o pueden realizarlo a través del bazaar

http://www.openerp.com/download/stable/source/openerp-server-6.0.3.tar.gz

Descomprimimos los fuentes, preferiblemente en la raiz(C:\).

Luego desde la consola, entramos a la carpeta donde esta descompreso los fuentes del open-erp ejecutamos este comando “c:\Python26\python.exe setup.py py2exe”

Despues dentro de la carpeta win32 ejecutamos el mismo comando

Debido a que el el script de open procesa las dependencias de sus librerías, no incluye a genshi ni a aeroolib, así que tenemos que agregarlas manualmente. Luego de ejecutar los comandos de arriba, en nuestra carpeta se debe haber creado una llamada “dist”, dentro esta lo que son los ejecutables como tal del openerp para windows, existe un archivo library.zip que es donde estan algunas librerias, debemos agregar a este zip las carpetas de nuestras librerías que para mi ejemplo estan en:

  •  C:\Python26\Lib\site-packages\aeroolib-1.0.0.RC4-py2.6.egg\aeroolib
  • C:\Python26\Lib\site-packages\Genshi-0.6-py2.6\genshi

Luego de esto, ya estamos listos para generar el instalador para el server, esto lo hace el programa NSIS, lo abrimos y damos clic en “Compile Script”, luego de esto el software se encargara de crear el programa instalador para windows

 

Bueno después de esto tenemos que copiar nuestros módulos dentro de la carpeta addons en windows, o la podemos agregar a nuestro instalador, como sea, ya podemos usar los módulos en https://launchpad.net/aeroo.

En una segunda entrega espero poder hacer una guia de como conectarse con PyUNO para convertir en PDF y otros formatos los reportes de Aeroo Reports

Y para los que no quieren pasar por todo este tramite, les dejo es link donde pueden encontrar el instalador del ejercicio https://rapidshare.com/files/2332288264/openerp-server-setup-6.0.3.exe(Corregido)

Saludos

Christopher Ormaza

Ecuadorenlinea.net


Quickly get and run OpenERP 6.1 (trunk)

ShareThis !
December 11, 2011 4:43 PM
Agile Business Group

Thanks to Olivier Dony (and lep who indicated it to me), here you have a quick way to setup a development environment with the current trunk version of OpenERP (6.1).

Download the script:

 $ bzr cat -d lp:~openerp-dev/openerp-tools/trunk setup.sh | sh

Run the script:

 $ make init-trunk

Wait…

Run:

$ make server

Go to http://localhost:8069

Or to localhost:8069/mobile if you want to try the mobile interface (or even to localhost:8069/?kitten=1…)


Partners getting leverage by selling Open ERP Enterprise

ShareThis !
December 09, 2011 4:21 PM
OpenERP 5.0


There are few partners of Open ERP in Asia who all ready started selling Open ERP Enterprise (in short-Open ERP's AMC-Annual Maintenance Contract) and focusing on acquiring of new first time clients for an Open ERP implementation. By doing this, they can get more customers and ultimately more profit out of Open ERP implementation.
Very soon we'll provide you details of those partners who have all ready sold Open ERP Enterprise service and got excellent response from their end client .


Asian market is doing great pertaining to its growth engine story and Open ERP is design for SME segment. Thus, there is undefined expansion and earning potential available for those who wanted to grow in this turbulent time period.  


To know how it's possible please, contact dtr [at] openerp.com 


New module to choose the fiscal position from the country

ShareThis !
December 09, 2011 3:10 PM
Agile Business Group

In standard OpenERP, you can choose a fiscal position for every partner, and your choice will be used when you select a Partner in an Invoice or Sale Order. In many situations it’s convenient to set a default position for all partners belonging to a specific country.

The module we developed is called account_fiscal_position_country, and can be found on apps.openerp.com.

Configuration

Go to Sales > Configuration > Address Book > Localisation > Countries.

Choose a country, and enter the default Fiscal Position for that country.

Usage

Done that, when you create a Sale or Purchase Invoice and select a Partner, the Fiscal Position you defined for the country of the Partner will be selected. Note that the standard OpenERP behaviour is still defined: if you set a specific Fiscal Position for that Partner, that one (and not the one from the Country) will be used.

Sale Orders

To get the same functionality in Sale Orders, install the module account_fiscal_position_country_sale as well. The modules are kept separate to minimize dependencies.

Of course, feedback is welcome! You can use the bug tracker in launchpad for that:

https://bugs.launchpad.net/domsense-agilebg-addons


master your OpenERP data integration with Akretion TerminatOOOR!

ShareThis !
December 09, 2011 5:30 AM
Akretion

OpenERP is all the rage among open source ERP’s but its native import/export have limitations when it comes to data integration. Server side OpenERP import/export is powerful but not so easy to get started and get interfaced. On the contrary, the famous Kettle open source ETL from Pentaho connects to almost anything, any SGBD thanks to the JDBC connectors, any CSV, Excell files…

With TerminatOOOR you have all the power of the full OpenERP API right inside your ETL data in/out flow. You can do any Create Read Update Delete operation enforcing the access rights of OpenERP. But you are absolutely not imited to that, in fact you can just do anything you would do with your OpenERP client: click buttons, perform workflow actions, trigger on_change events… This is because OOOR gives you the full access to OpenERP API.

We created TerminatOOOR back in late 2009 for a customer doing ecommerce sales on several different channels: Magento, OSCommerce, Amazon, Ebay, using several payments gateways and bank interfaces. Later we continued to use it in similar projects where integration with other systems would make the difference. It’s also used a lot for loading your data into OpenERP when you migrate to it. But those are just a few possibilities… We finally got the time to package TerminatOOOR for an easier installation and we also documented it extensively.

All right, so don’t wait any longer and read the detailed documentation You might also be interested in downloading it or looking at its source code

We would also here thank all the great people who made this possible: the Kettle guys, Slawomir Chodnicki who revolutionized the Ruby Kettle plugin, all the JRuby team and specially people like Charles Headius Nutter, Yannick Buron for helping in the first doc version a year ago, CampToCamp and Ting.es for their testing and patches on OOOR and all the people who tested and helped in a way or another.

Enjoy!


This blog is not updated

ShareThis !
December 08, 2011 10:07 PM
Fabien Pinckaers

I do not blog anymore. I prefer focusing on building the OpenERP company and product.

If you want to be kept informed about OpenERP or my activities, I suggest you to follow me on twitter:
http://twitter.com/fpopenerp

OpenERP - Magento Training

ShareThis !
December 06, 2011 5:30 AM
Akretion


New Follow-Up module for OpenERP

ShareThis !
December 05, 2011 4:06 PM
Agile Business Group

We developed a new module to better handle the follow-ups. Its name is account_followup_choose_payment and it is configurable through account_followup but, unlike account_followup, it allows to send follow-ups selecting the single (overdue) payments you want to notify to customers.

The module provides two main macro-functionalities:

  • Print follow-ups (increasing the follow-up level associated to payment)
  • Re-print sent follow-ups

Let’s see how to configure and use the module.

Configuration

First of all, you have to configure the follow-up levels. Going to

Accounting > Configuration > Miscellaneous > Follow-Ups

you open the follow-ups list and can create a new one.

For instance, my follow-up has three levels. This is one of them:

Also, I configured the following two payment terms

 Use

I issued four invoices:

For Thomas Winteler, I used the first payment term (’25% at 14 net days, remaining 30 days end of month’). For Domsense Srl, the ’30 Days End of Month’.

Thanks to account_due_list, you can see the list of payments with their due date, if any. You can find the list at

Accounting > Journal Entries > Payments

Now we can follow-up some payment. Go to

Accounting > Periodical Processing > Billing > Open Follow-Ups

If you print the follow-up at 30 November 2011, you’ll find the following situation:

We developed a new module to better handle the follow-ups. Its name is account_followup_choose_payment and it is configurable through account_followup but, unlike account_followup, it allows to send follow-ups selecting the single (overdue) payments you want to notify to customers.

The module provides two main macro-functionalities:

  • Print follow-ups (increasing the follow-up level associated to payment)
  • Re-print sent follow-ups

Let’s see how to configure and use the module.

Configuration

First of all, you have to configure the follow-up levels. Going to

Accounting > Configuration > Miscellaneous > Follow-Ups

you open the follow-ups list and can create a new one.

For instance, my follow-up has three levels. This is one of them:

Also, I configured the following two payment terms

 Use

I issued four invoices:

For Thomas Winteler, I used the first payment term (’25% at 14 net days, remaining 30 days end of month’). For Domsense Srl, the ’30 Days End of Month’.

Thanks to account_due_list, you can see the list of payments with their due date, if any. You can find the list at

Accounting > Journal Entries > Payments

Now we can follow-up some payment. Go to

Accounting > Periodical Processing > Billing > Open Follow-Ups

If you print the follow-up at 30 November 2011, you’ll find the following situation:

Now, you can select which payment to follow-up. I select them all, and run the wizard Follow-UP. Here is the result.

Moreover, opening Sent Follow-Ups, you can see the list of previously sent follow-ups, with date and level. By that list, at any time, you can select and re-print the follow-ups, through the Sent Follow-Up wizard.


[TIP] OpenERP - Making searching easier

ShareThis !
November 30, 2011 8:16 PM
Credativ

OpenERP is increasingly becoming a serious contender in the ERP market, as its features and usability improve. This tip explains how its flexible views provide ways to save time retrieving the data you want. You can search for the exact... Irenie White http://www.credativ.co.uk

Noviat - OpenERP Introduction Seminar (NL)

ShareThis !
November 23, 2011 2:41 PM
Helene Michel

Date: 
Thursday, February 23, 2012 - 16:00 - 18:30

In the past couple of years, we have realised several succesful implementations for well-known organisations in various sectors and functional domains such as field services, green energy, non-profit, travel, transport, financial software and cash management.

On a regular basis, we organise seminars for interested customers in order to keep them up-to-date with the latest OpenERP evolutions as well as to highlight business and technical aspects of our implementations. We are convinced that also your organisation can take advantage of the business functionality available in the 800+ OpenERP modules.

It is therefore our pleasure to invite you for our next customer event on Thursday February 23th, 2012 16:00 at our offices in Zellik.
This seminar will be given in Dutch.

The participation to the seminar is free and includes refreshments.

Participants will also receive a special pack of 3 OpenERP Books:
  • Drive your Sales & Marketing Activities with OpenERP
  • Streamline your Manafacturing Processes with OpenERP
  • Integrate your Logistic Processes with OpenERP

If you prefer a meeting at your premises, please contact us. 

Program and Registration:


From 15:30
Arrival and Coffee

16:00
Welcome by Luc De Meyer, Managing Partner, Noviat nv/sa

16:15
OpenERP Business Model presentation by Marnix Coenaerts, OpenERP

16:30
Introduction OpenERP V6 by Marnix Coenaerts, OpenERP

17:00
Coffee Break

17:20
OpenERP Customer Cases by Luc De Meyer

17:40
Business Case ecoworks by Sander De Kegel, CFO ecoworks

18:00
Questions and Answers

18:30
Networking & Refreshments


You can register by calling Noviat on number 02/481.60.18, by sending an email with your contact data (name, company) to info@noviat.be or via the following registration form. 

Location: 
Noviat nv/sa
Z.1 Researchpark 310
B-1731 Zellik

Noviat - OpenERP Introduction Seminar (FR)

ShareThis !
November 23, 2011 2:36 PM
Helene Michel

Date: 
Thursday, January 26, 2012 - 16:00 - 18:30

In the past couple of years, we have realised several succesful implementations for well-known organisations in various sectors and functional domains such as field services, green energy, non-profit, travel, transport, financial software and cash management.

On a regular basis, we organise seminars for interested customers in order to keep them up-to-date with the latest OpenERP evolutions as well as to highlight business and technical aspects of our implementations. We are convinced that also your organisation can take advantage of the business functionality available in the 800+ OpenERP modules.

It is therefore our pleasure to invite you for our next customer event on Thursday January 26th, 2012 16:00 at our offices in Zellik.
This seminar will be given in French.

The participation to the seminar is free and includes refreshments.

Participants will also receive a special pack of 3 OpenERP Books:
  • Drive your Sales & Marketing Activities with OpenERP
  • Streamline your Manufacturing Processes with OpenERP
  • Integrate your Logistic Processes with OpenERP

If you prefer a meeting at your premises, please contact us. 

Program and Registration:


From 15:30
Arrival and Coffee

16:00
Welcome by Marc Pirenne, Managing Partner, Noviat nv/sa

16:15
OpenERP Business Model presentation

16:30
Introduction OpenERP V6

17:00
Coffee Break

17:20
OpenERP Customer Cases by Luc De Meyer

17:40
Cash Management with OpenERP

18:00
Questions and Answers

18:30
Networking & Refreshments


You can register by calling Noviat on number 02/481.60.18, by sending an email with your contact data (name, company) to info@noviat.be or via the following registration form. 

Location: 
Noviat nv/sa
Z.1 Researchpark 310
B-1731 Zellik