Re: [Tinyerp-users] Jasper Report

2009-10-20 Thread forum-user
OPENERP_RELATION parameter doesn't help in case if you want select multiple 
records at once and want to print reports for them. Try to select multiple 
partners at once with Jasper Partner Demo report, you will see about what I am 
talking.




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45470#45470

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
Hello,

I have created one report. In that i want to display checkbox. Can anybody 
please tell me how can i do that?
Waiting for the reply.


Sincerely,
Deven
www.4colordesign.com




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45471#45471

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Cyrillic encoding?

2009-10-20 Thread forum-user
So - i have bazaar and have pulled all the addons from all the repositories. 
Couldnt't find it there, but found the base_report_unicode in the openerp site. 
Downloaded it and installed it trought the zip import. It went ok. But when I 
tried to print a report with cyrillic characters the problem was still standing.

Tried to restart the erp server and also a complete server restart. 
Unfortunately none of those worked. 

Can any1 give me an idea what are the base fonts used in the openerp and their 
location. Or if they are automatically pulled form the system fonts how can i 
be sure that the report unicode module is actually working. Both 
base_report_unicode and report_truetype are installed correctly according to 
the module administration of the erp, as well as all the dependacies for the 
truetype fonts (including truetype2 and reportlab)




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45472#45472

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] openoffice

2009-10-20 Thread forum-user
check this link
http://openerp.com/buy/shared-fundings.html


OpenERP=Easier, Adaptable, Affordable, Modular




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45473#45473

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user
@sam23
You have some incorrectly coded module which marks field with first upper case 
character - Char.
Anyway added this as exception.

Kaspars
---
http://kndati.lv




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45475#45475

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] Closing a Fiscal Period

2009-10-20 Thread forum-user
When a close a period I can  still edit my entries of that same period which is 
not suppose to  be  the behavior when I close a period. 

Can anyone help me with my problem. I badly need it. 
Thanks,




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45477#45477

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user
[quote=rvalyi]...@sraps,

Hey that's cool. We will try that for sure. Also, I did a relatively 
sophisticated SQL/ORM API scripts to migrate my previous customers. Basically, 
my script was trying to detect if there are records in ir_model_data that you 
might have modified on purpose and that are likely to be overriden after 
upgrade using --update=all. So it warns you for each records so you can take a 
decision manually record per record.

Let us know what you think about the idea and if we should team more closely to 
make sure we have the smoothest migrations.
[/quote]

Would like to look at your script. It is definitely better to add more 
inteligence to the module, to make it more useful out of the box.

The next step would be to perform meta data analysis on the fly, some sort of 
checks to find possible tar pits.

This could be addressed in two ways:
1) try and error;
2) extensive analysis.

[quote=rvalyi]
On other remark: instead of using a blog for tracking API changes, I suggest 
Tiny could simply tag the branches at each API changes so it would be more all 
in one single place and a filter on tags will help tracking all the API changes 
between versions X and Y.

Regards and thanks for the module.[/quote]

Absolutely agree with you.

Additionally some other way of API documentation should be introduced. For Perl 
language the documentation placed inside code, and displayed/filtered out by a 
tool. Actually all the API documentation on the modules and core is being 
organized this way. So it is easier to update API doc when the changes are 
being done.

As I am not exactly skilled Python programmer, do not know of similar thing for 
it.

Kaspars
--
http://kndati.lv




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45483#45483

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user

 BTW,
 
 Also, just in case, for migrations, it's possible that the 
 base_external_referentials (external ID's + custom mappings for each field in 
 a declarative style), eventually combined with the etl module could help in 
 your module...
 For now, the first on concrete application of base_external_referentials is 
 the new multi instance refactored Magento connector we are shaping here:
 https://code.launchpad.net/magentoerpconnect


We do all the mapping for objects in memory, this is probably better for 
performance but maybe not so good in terms of handling huge data.


 This module provide an abstract common minimal base to add any additional 
 external id columns to some OpenObject table, pointing to some external 
 referential.
 A referential is abstract and minimal at this stage, it's only identified
 by:
 * a name
 * a location (possibly webservice URL, database connection URL...); the 
 connection method will tell it...
 * referential credentials (user name + password)


Probably have to look a bit closer, but I think it is not a good approach to 
place meta data inside the object itself.

Concerns:
1) What would happen if we will try to migrate to next version? We will 
probably have to remove this meta data manually.
2) This process is being done once (maybe several times, doing it partially), 
and there is no need to place mappings side bu side with the data itself. This 
approach is better for systems that should be kept synchronized constantly, so 
the process is being done again and again.

But still it is superficial opinion, and it would be nice to hear your comments 
on this...

Kaspars
--
http://kndati.lv




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45488#45488

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Jasper Report XML File

2009-10-20 Thread forum-user
I had a problem with the format of my fiels when I noticed that in iReport, all 
my xml files exporter from OpenERP are considered as string fields. I then 
opened the factura demo jrxml file to check and there, there are numeric, data 
and string fields.

Does someone know where does this problem come from ?

Thanks




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45490#45490

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Document Management bug with accent é, à ...

2009-10-20 Thread forum-user
Hi,

I am using the document management system to generate ics file from the tasks 
(projects)

When I don't use the field task summary it works. When I add this field it 
doesn'ot works because it contains accents.

How to change this ?

many thanks




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45492#45492

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Cyrillic encoding?

2009-10-20 Thread forum-user
Problem solved.

base_report_unicode worked just fine once i found where te latest version was 
hiding in launcpad. 

Just some info - in order for this to work smoothly i had to actually delete 
the old version from the addons folder and then copy the latest version 
downloaded trough bazaar.




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45495#45495

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] Subscription question + email to user

2009-10-20 Thread forum-user
Hello all,
We planned to use the subscription module for our recurring support invoices.
So, for testing purpose, we created a draft invoice that is used as model for 
our recurring invoices. the problem that we have is that at the intervals, 
there are several invoices created (actually 4). Does someone know what could 
be the reasons of such behaviour ?
The second problem that we have is that we'd like, every time a draft invoice 
is created with the subscription process, to warn a user by sending him en 
email. Is there a way to do that because in the user settings, no email field 
is declared ...

Thanks for your help




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45496#45496

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
This is the tag of reportlab for displaying checkbox on report.
checkBox

It is not omplemented on our report parser yet.
create a blueprint for this on launchpad. we will implement it soon.


OpenERP=Easier, Adaptable, Affordable, Modular




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45500#45500

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
Sorry hda,

I am not aware of blueprint. What is it and how can i use it?


Sincerely,
Deven
www.4colordesign.com




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45502#45502

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
Hi Deven,

you can try our new module report_openoffice. Find it on 
trunk-addons-community.

With that module you can add checkboxes directly from OpenOffice.

Please, have a look at report_openoffice_samples to understand how to create 
proper reports.

Cheers




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45504#45504

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] SOAP vs. XML-RPC

2009-10-20 Thread forum-user
Dear community, 

I wonder why does client communicate with application server via XML-RPC ? In 
another words, why did you decide to use XML-RPC instead of SOAP or REST ? 

Regards,
Nik




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45506#45506

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] crm_profiling

2009-10-20 Thread forum-user
Every time when I schedule a module for installation I am not able to uncheck 
Demo data so demo datas are automatically loaded when I install desired module. 
Since Demo data is not reacting to mouse clicks , how do I uncheck Demo data  
when I am installing modules?

regards,
Nikola




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45507#45507

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] crm_profiling

2009-10-20 Thread forum-user
It is global setting.
While creating new database if you uncheck demo data then it will not install 
demo data for nay module installed in that database.


OpenERP=Easier, Adaptable, Affordable, Modular




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45510#45510

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user
Hi,
 thanks for your response,
No filed has this upercase letter.The error refers to this line on ir_model.py
'ttype': fields.char('Field Type', size=64),
But i do not see any thing wrong in it !

On an other side did you manage to do a complete migration from  4 to 5 servers 
using this approach ?




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45512#45512

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user
Hi,
 thanks for your response,
No filed has this upercase letter.The error refers to this line on ir_model.py
'ttype': fields.char('Field Type', size=64),
But i do not see any thing wrong in it !

On an other side did you manage to do a complete migration from  4 to 5 servers 
using this approach ?




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45513#45513

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
Hi simahawk,

Can you please give me the link from where i can download report_openoffice 
module?
Waiting for your reply


Sincerely,
Deven
www.4colordesign.com




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45515#45515

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] wrong

2009-10-20 Thread forum-user
No, it does not work. Every time when I create blank new database with Demo 
datas unchecked OpenERP still adds many predefined datas. 
It seems that It is not possible to create database and hence install any 
module without 
predefined datas. 
[/b]




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45517#45517

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] crm_profiling

2009-10-20 Thread forum-user
No, it does not work. Every time when I create blank new database with Demo 
datas unchecked OpenERP still adds many predefined datas.
It seems that It is not possible to create database and hence install any 
module without
predefined datas.
[/b]




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45519#45519

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
Hi Deven,

here is it:
http://bazaar.launchpad.net/~openerp-community/openobject-addons/trunk-addons-community/files/head%3A/report_openoffice/




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45521#45521

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] crm_profiling

2009-10-20 Thread forum-user
My new database without Load demonstration datas contains predefined partners 
and many other predefined features like on the picture below. 

[img][/img]




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45522#45522

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user
Try to look for field that has Field Type Char instead of char in 4.x 
database...
Menu:
Administration-Custom-Low Level-Base-Database Structure-Fields

About migration from 4.2 to 5.0, yes, we have done that. Still, you have to 
make analysis on all the enterprise processes, as this is almost the same as 
implementing new ERP. TinyERP slightly differs from OpenERP.

The tool is to automate reentering the data and do some analysis on data 
structures.

With the tool we can do migration for the customer a lot cheaper. There are 
cases when reentering the data is not an option at all, so this is the only 
option to do a migration.

We can provide partial or full migration services for customers.
This can be as simple as ready made model mappings, or complete process 
analysis and modification services.


Kaspars

http://kndati.lv




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45523#45523

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
Thanks,

i will work on your solution.


Sincerely,
Deven
www.4colordesign.com




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45525#45525

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] Full database

2009-10-20 Thread forum-user
Dear community,

Please check the screenshots. 
I tried to create empty database with minimal profile 



but when I click on Partners -  Partners



the database is still full with predefined datas. 



How to create empty database  which is also a condition for adding new modules 
without predefined demo datas? 

Regards,
Nik




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45529#45529

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Full database

2009-10-20 Thread forum-user
Seems all correct.
Check for some trivial errors, like connecting to wrong database and so on.
Or try to delete all postgres databases




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45534#45534

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Full database

2009-10-20 Thread forum-user
I recall. 
There was exactly similar situation with me.
You (by mistake) populated postgresql template1 database with demo data.
If you create empty database from any client (psql) you will get exactly the 
same - openerp database with demo data.

So, delete template1 database and recreate it by initdb command




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45536#45536

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] new view using inheritance

2009-10-20 Thread forum-user
Hi,

Is it possible to create new view using inheritance without changing the base 
one.

E.g. 

I need to create a new partner view with changes to some fileds (make them 
readonly).

I create new view using inherit_id and arch tags.

This new view modifies the old one. 

I would like to keep the old one and create a new one without copying entire 
partner view code.

Thanks in advance,

szczytt




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45533#45533

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] :(

2009-10-20 Thread forum-user
Seems nobody work in shifts.
 [Question]




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45537#45537

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Two shifts mode production

2009-10-20 Thread forum-user
Seems nobody work in shifts.
 [Question]




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45538#45538

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user
@sraps,



 Probably have to look a bit closer, but I think it is not a good approach to 
 place meta data inside the object itself. 
 
 Concerns: 
 1) What would happen if we will try to migrate to next version? We will 
 probably have to remove this meta data manually. 
 2) This process is being done once (maybe several times, doing it partially), 
 and there is no need to place mappings side bu side with the data itself. 
 This approach is better for systems that should be kept synchronized 
 constantly, so the process is being done again and again. 
 
 But still it is superficial opinion, and it would be nice to hear your 
 comments on this...


Actually we now using the ir_model_data for bookeepng external ids. This has 
been debated long with Fabien Pinckaers and Sharoon Thomas over #openobject IRC 
those last days. This isn't going to impact visible perf due to the fact that 
external synch as other bottlenecks such as webservices.

Object mappings metadata is not inside the business objects either.

We will let you know soon about our migration script.


Raphaël Valyi

CEO and OpenERP consultant at
http://www.akretion.com




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45539#45539

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Full database

2009-10-20 Thread forum-user
:D thnx, I will try it




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45540#45540

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] SOAP vs. XML-RPC

2009-10-20 Thread forum-user
@Niki600,


I guess REST would be a good fit. Probably Tiny team was unaware of it when it 
created the WS layer back around 2003.
Nevertheless, the XML/RPC is not too far from being Restful, and you can even 
have REST read mode for free in several formats using things such as OOOR:
http://code.google.com/p/ooor/

Now, Python has bad support for SOAP (especially namespaces, auth methods, 
complex nested types...) Which seem to work well only with Java/.Net. Still 
SOAP was often overkill too.My feeling is that it's now being abandonned. New 
projects tend to use REST with eventually defined data formats, which is closer 
to what OpenERP does.

So I hope migration from RPC/RPC to REST will slowly be made (depends on you 
all folks). Meanwhile, we are happy with OOOR.


Raphaël Valyi

CEO and OpenERP consultant at
http://www.akretion.com




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45542#45542

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] New Modules setup validateerror

2009-10-20 Thread forum-user
Hi everyone,

Excuse me for my bad english  [Wink] 
I want to setup a new module that i download it from openerp.com, but when i 
import it into my openerp, it didn't accept it and the felow error apears :
ValidateError

The value GPL-2 or later for the field license is not in the selection

Please help me it's very important for my openerp integration

Thanks




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45545#45545

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] BUG? Downloading the calendar ics files via ftp - 0 byte?

2009-10-20 Thread forum-user
[quote=tchiboo]Hi,

Did you check your logs ?

I had this before installing vobject

Best regards[/quote]

I did! Nothing special in there. I have vobject installed... The strange thing 
is that if i download the file via firefox everything is ok! But if i want to 
open it through normal ftp clients it wont work?!? So i think it has to do 
something with ftp implementation (perhaps passive mode?) and not with ical 
implementation itself?!? But i am just guessing...

I am VERY! thankfull for any Hint/Help!




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45553#45553

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] ALL Sales Orders are always In Progress (OpenERP 5.0.6)

2009-10-20 Thread forum-user
Nearly all of my sales orders are in the state In Progress and i cant fix 
it...

What i do:

1.) Creat a new sales order with a single product line (Procure Method is On 
Order) 

2.) Check Procurement Orders and Check the auto generated Purchase Order 
under Purchase Management

3.) Confirm the Purchase Order and the Supplier

4.) In Stock management - Incoming Products confirm that the goods have 
shipped

!!! NOW the Sales Order changes to the state DONE !!! GREAT BUT:

5.) After this i go back to the Sales Order and Press the Action button and 
select Make invoices - The draft Customer Invoice for this Sales Order 
is automatically created but

THE STATE OF THE SALES ORDER CHANGES BACK TO IN PROGRESS ?!?  [Shocked] 

From now on the sales order is always in the state in progress even if i 
confirm and pay the newly generated Customer Invoice?!? WHY?!?

Is this a Bug or am i totally on the wrong road?!? Is there a way to set the 
state of Sales Orders to Done?!? I dont want all my Sales Orders in the 
state In Progress just because i generated a Customer Invoice from them?!?

Please Help!




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45556#45556

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] ALL Sales Orders are always In Progress (OpenERP 5.0.6)

2009-10-20 Thread Albert Cervera i Areny
A Dimarts, 20 d'octubre de 2009, forum-u...@tinyerp.org va escriure:
 Nearly all of my sales orders are in the state In Progress and i cant
  fix it...
 
 What i do:
 
 1.) Creat a new sales order with a single product line (Procure Method is
  On Order)
 
 2.) Check Procurement Orders and Check the auto generated Purchase
  Order under Purchase Management
 
 3.) Confirm the Purchase Order and the Supplier
 
 4.) In Stock management - Incoming Products confirm that the goods
  have shipped
 
 !!! NOW the Sales Order changes to the state DONE !!! GREAT BUT:
 
 5.) After this i go back to the Sales Order and Press the Action button
  and select Make invoices - The draft Customer Invoice for this Sales
  Order is automatically created but
 
 THE STATE OF THE SALES ORDER CHANGES BACK TO IN PROGRESS ?!?  [Shocked]
 
 From now on the sales order is always in the state in progress even if
  i confirm and pay the newly generated Customer Invoice?!? WHY?!?
 
 Is this a Bug or am i totally on the wrong road?!? Is there a way to set
  the state of Sales Orders to Done?!? I dont want all my Sales Orders
  in the state In Progress just because i generated a Customer Invoice
  from them?!?

Well, you don't mention your outgoing products. Do you send the goods to the 
customer? You should assign the stock to the customer and notify OpenERP that 
you have sent them...

 
 Please Help!
 
 
 
 
  m2f 
 
 --
 http://www.openobject.com/forum/viewtopic.php?p=45556#45556
 
  m2f 
 
 
 ___
 Tinyerp-users mailing list
 http://tiny.be/mailman2/listinfo/tinyerp-users
 


-- 
Albert Cervera i Areny
http://www.NaN-tic.com
Mòbil: +34 669 40 40 18
___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] SOAP vs. XML-RPC

2009-10-20 Thread forum-user
very descriptive answer :) .. 
SOAP is overkill but using BPEL with SOAP Web Services is good for removing 
business logic from EIS tier.




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45559#45559

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Server Data Migration module released

2009-10-20 Thread forum-user
@sraps, 
After testing, It seems good, the idea behind is very good it allows to do a 
lot of types of migrations from partail to complete ones  in a controlled 
manner. It is a kind of high level integrated ETL.
So congratulations you have done a nice Job




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45566#45566

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


Re: [Tinyerp-users] Display checkbox in a report

2009-10-20 Thread forum-user
Hello simahawk,

I am trying to work on your solution but when i installing it, its generate 
below error.

Environment Information #58; 
System #58; Linux-2.6.28-15-generic-i686-with-Ubuntu-9.04-jaunty
OS Name #58; posix
Distributor ID#58;nbsp; nbsp;Ubuntu
Description#58;nbsp; nbsp;Ubuntu 9.04
Release#58;nbsp; nbsp;9.04
Codename#58;nbsp; nbsp;jaunty
Operating System Release #58; 2.6.28-15-generic
Operating System Version #58; #52-Ubuntu SMP Wed Sep 9 10#58;49#58;34 UTC 
2009
Operating System Architecture #58; 32bit
Operating System Locale #58; en_IN.ISO8859-1
Python Version #58; 2.6.2
OpenERP-Client Version #58; 5.0.6
Last revision No.  ID #58;1006 
j...@tinyerp.com-20091009120208-fv4hvzpjcb7bcxfc
Traceback #40;most recent call last#41;#58;
nbsp; File /home/deven/workspace/server/bin/netsvc.py, line 244, in dispatch
nbsp; nbsp; result = LocalService#40;service_name#41;#40;method, 
*params#41;
nbsp; File /home/deven/workspace/server/bin/netsvc.py, line 73, in __call__
nbsp; nbsp; return getattr#40;self, method#41;#40;*params#41;
nbsp; File /home/deven/workspace/server/bin/service/web_services.py, line 
639, in execute
nbsp; nbsp; return self._execute#40;db, uid, wiz_id, datas, action, 
context#41;
nbsp; File /home/deven/workspace/server/bin/service/web_services.py, line 
619, in _execute
nbsp; nbsp; return wiz.execute#40;db, uid, self.wiz_datas#91;wiz_id#93;, 
action, context#41;
nbsp; File /home/deven/workspace/server/bin/wizard/__init__.py, line 178, in 
execute
nbsp; nbsp; res = self.execute_cr#40;cr, uid, data, state, context#41;
nbsp; File /home/deven/workspace/server/bin/wizard/__init__.py, line 74, in 
execute_cr
nbsp; nbsp; action_res = action#40;self, cr, uid, data, context#41;
nbsp; File 
/home/deven/workspace/server/bin/addons/base/module/wizard/wizard_module_upgrade.py,
 line 92, in _upgrade_module
nbsp; nbsp; db, pool = pooler.restart_pool#40;cr.dbname, 
update_module=True#41;
nbsp; File /home/deven/workspace/server/bin/pooler.py, line 62, in 
restart_pool
nbsp; nbsp; return get_db_and_pool#40;db_name, force_demo, status, 
update_module=update_module#41;
nbsp; File /home/deven/workspace/server/bin/pooler.py, line 40, in 
get_db_and_pool
nbsp; nbsp; addons.load_modules#40;db, force_demo, status, update_module#41;
nbsp; File /home/deven/workspace/server/bin/addons/__init__.py, line 728, in 
load_modules
nbsp; nbsp; r = load_module_graph#40;cr, graph, status, report=report#41;
nbsp; File /home/deven/workspace/server/bin/addons/__init__.py, line 578, in 
load_module_graph
nbsp; nbsp; register_class#40;package.name#41;
nbsp; File /home/deven/workspace/server/bin/addons/__init__.py, line 400, in 
register_class
nbsp; nbsp; imp.load_module#40;m, *fm#41;
nbsp; File 
/home/deven/workspace/server/bin/addons/report_openoffice/__init__.py, line 
1, in module
nbsp; nbsp; import report_openoffice
nbsp; File 
/home/deven/workspace/server/bin/addons/report_openoffice/report_openoffice.py,
 line 30, in module
nbsp; nbsp; from relatorio.templates.opendocument import Template
ImportError#58; No module named relatorio.templates.opendocument


So can you please tell me where is the problem and how can i overcome it?
Waiting for your reply.


Sincerely,
Deven
www.4colordesign.com




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45567#45567

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users


[Tinyerp-users] Attrib an email addres to a user ?

2009-10-20 Thread forum-user
Hello all,
I'm trying to send an email to a specific user when he's responsible for a new 
support request (module crm). The problem that I've is that I can't attrib an 
email to a user so noway, for the while, to send to him an email.

I've seen that I can join an employee (who has an email address)  to a user but 
I can't send him an email ..

If anybody has a solution  

Thanks




 m2f 

--
http://www.openobject.com/forum/viewtopic.php?p=45571#45571

 m2f 


___
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users