<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!--
	This feed generated for Anonymous
	More info at http://naklon.info/rss/about.htm
-->
<channel>
<title>Open Object</title>
<link>http://www.openobject.com/forum/</link>
<description>Open Object Forum</description>
<managingEditor>sales@tiny.be</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>RSS Feed 2.2.4</generator>
<language>en</language>
<lastBuildDate>Tue, 09 Feb 2010 09:22:36 GMT</lastBuildDate>
<image>
	<url>http://www.openobject.com/forum/templates/tiny/images/openlogo.jpg</url>
	<title>Open Object</title>
	<link>http://www.openobject.com/forum/</link>
	<width>122</width>
	<height>56</height>
</image>
<item>
<title>General discussion :: RE: Partner filtering</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50935#50935</link>
<pubDate>Tue, 09 Feb 2010 09:15:20 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50935#50935</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6470&quot; target=&quot;_blank&quot;&gt;jacorbacho&lt;/a&gt;&lt;br /&gt;

Posted: Tue Feb 09, 2010 11:15 am (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
SOLVED:
&lt;br /&gt;

&lt;br /&gt;
The solution I've found is not the prettiest but it works (and I'm glad and I like it).
&lt;br /&gt;
As the problem with the many2many fields in record rules seems to persists, I have removed them.
&lt;br /&gt;
Instead, in every object I want to restrict, I have overriden the search method forcing it to take into account the restriction on departments.
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;def search&amp;#40;self, cr, uid, args, offset=0, limit=None, order=None, context=None, count=False&amp;#41;&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;if context is None&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;context = &amp;#123;&amp;#125;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;res = self._get_partner_ids&amp;#40;cr, uid, args, context&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;args.append&amp;#40;&amp;#40;'partner_id','in', res&amp;#41;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;return super&amp;#40;res_partner, self&amp;#41;.search&amp;#40;cr, uid, args, offset, limit, order, context=context, count=count&amp;#41;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp;def _get_partner_ids&amp;#40;self, cr, uid, args, context=None&amp;#41;&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;quot;&amp;quot;&amp;quot;Get a list of partner visible by current user&amp;quot;&amp;quot;&amp;quot;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;cr.execute&amp;#40;'select distinct partner_id from hr_department_partner_rel where department_id in &amp;#40;select department_id from hr_department_user_rel where user_id = %s&amp;#41;', &amp;#40;uid,&amp;#41;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;resultSet = cr.fetchall&amp;#40;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;res = &amp;#91;&amp;#93;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;for result in resultSet&amp;#58;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;res.append&amp;#40;result&amp;#91;0&amp;#93;&amp;#41;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;return res
&lt;br /&gt;
&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Sorry I'm not a Python guy (yet) and the code can be improved but this works for all the views where partners are listed.&lt;br /&gt;_________________&lt;br /&gt;Jose A. Corbacho
&lt;br /&gt;
Trobz (www.trobz.com)&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>jacorbacho</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=49686#49686" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50935</comments>
</item>
<item>
<title>General discussion :: RE: Build setup windows with sources using windows</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50934#50934</link>
<pubDate>Tue, 09 Feb 2010 08:10:58 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50934#50934</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=4035&quot; target=&quot;_blank&quot;&gt;GEM&lt;/a&gt;&lt;br /&gt;

Posted: Tue Feb 09, 2010 10:10 am (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
bug error timezone with client gtk is fixed.
&lt;br /&gt;
don't use or modify the part of configuration :
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Do this if there is an error pytz timezone in client gtk(bug fixed)
&lt;br /&gt;

&lt;br /&gt;
search name of your local timezone in your windows :
&lt;br /&gt;
start-&amp;gt;execute type regedit
&lt;br /&gt;
go to HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows NT/CurrentVersion/Time Zones/
&lt;br /&gt;
search your timezone
&lt;br /&gt;
by example for me &amp;quot;Romance Standard Time&amp;quot; -&amp;gt; subkey on the right &amp;quot;std&amp;quot; value &amp;quot;Paris, Madrid&amp;quot;
&lt;br /&gt;
copy python25\Lib\site-packages\pytz\zoneinfo\Europe\Paris in python25\Lib\site-packages\pytz\zoneinfo\Paris, Madrid
&lt;br /&gt;
in python25\Lib\site-packages\pytz\__init__.py at the end of the script in all_timezones list add the line :
&lt;br /&gt;
'Paris, Madrid',
&lt;br /&gt;
you must do this with your own timezone installed on your computer. &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>GEM</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=39926#39926" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50934</comments>
</item>
<item>
<title>Reporting development :: RE: Please help: How to convert sxw to rml</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50933#50933</link>
<pubDate>Tue, 09 Feb 2010 07:39:16 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50933#50933</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6226&quot; target=&quot;_blank&quot;&gt;jmollers&lt;/a&gt;&lt;br /&gt;

Posted: Tue Feb 09, 2010 9:39 am (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
Try to invoke the conversion from the windows (DOS) command prompt, something like:
&lt;br /&gt;

&lt;br /&gt;
Python25.exe tiny_sxw2rml.py C:\test_report.sxw &amp;gt; C:\test_report.rml&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>jmollers</dc:creator>
<dc:subject>Reporting development</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50912#50912" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50933</comments>
</item>
<item>
<title>Stock &amp; Manufacturing :: stock_location how does it works</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50932#50932</link>
<pubDate>Tue, 09 Feb 2010 02:07:55 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50932#50932</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6759&quot; target=&quot;_blank&quot;&gt;grizzly&lt;/a&gt;&lt;br /&gt;
Subject: stock_location how does it works&lt;br /&gt;
Posted: Tue Feb 09, 2010 4:07 am (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
hi people...
&lt;br /&gt;

&lt;br /&gt;
i have a problem about stock_location for rentable product. how does it works? how the product deliver to customer (by outgoing product or stock moves)?? because the product cannot be sent.
&lt;br /&gt;
i've been tried such instructions in the book:
&lt;br /&gt;
&lt;a href=&quot;http://doc.openerp.com/book/5/5_14_Stock/5_14_Stock_advanced.html#example-1-a-rentable-product&quot; target=&quot;_blank&quot;&gt;http://doc.openerp.com/book/5/5_14_Stock/5_14_Stock_advanced.html#example-1-a-rentable-product&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
but it doesnt work. there is no form which indicates that the product will be back. whereas openerp say good receipts will raise in the state draft.
&lt;br /&gt;

&lt;br /&gt;
thnx...&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>grizzly</dc:creator>
<dc:subject>Stock &amp; Manufacturing</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50932#50932" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50932</comments>
</item>
<item>
<title>French Forum :: ereur chanp many2one</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50931#50931</link>
<pubDate>Mon, 08 Feb 2010 21:32:04 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50931#50931</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6668&quot; target=&quot;_blank&quot;&gt;tariklallouch&lt;/a&gt;&lt;br /&gt;
Subject: ereur chanp many2one&lt;br /&gt;
Posted: Mon Feb 08, 2010 11:32 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Environment Information : 
&lt;br /&gt;
System : Linux-2.6.31-17-generic-i686-with-Ubuntu-9.10-karmic
&lt;br /&gt;
OS Name : posix
&lt;br /&gt;
Distributor ID:	Ubuntu
&lt;br /&gt;
Description:	Ubuntu 9.10
&lt;br /&gt;
Release:	9.10
&lt;br /&gt;
Codename:	karmic
&lt;br /&gt;
Operating System Release : 2.6.31-17-generic
&lt;br /&gt;
Operating System Version : #54-Ubuntu SMP Thu Dec 10 16:20:31 UTC 2009
&lt;br /&gt;
Operating System Architecture : 32bit
&lt;br /&gt;
Operating System Locale : fr_FR.UTF8
&lt;br /&gt;
Python Version : 2.6.4
&lt;br /&gt;
OpenERP-Client Version : 5.0.3
&lt;br /&gt;
Last revision No. &amp;amp; ID :Bazaar Package not Found !Traceback (most recent call last):
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/netsvc.py&amp;quot;, line 244, in dispatch
&lt;br /&gt;
    result = LocalService(service_name)(method, *params)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/netsvc.py&amp;quot;, line 73, in __call__
&lt;br /&gt;
    return getattr(self, method)(*params)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/addons/base_module_record/base_module_record.py&amp;quot;, line 38, in execute
&lt;br /&gt;
    res = super(recording_objects_proxy, self).execute(*args, **argv)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/service/web_services.py&amp;quot;, line 583, in execute
&lt;br /&gt;
    res = service.execute(db, uid, object, method, *args)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/osv/osv.py&amp;quot;, line 59, in wrapper
&lt;br /&gt;
    return f(self, dbname, *args, **kwargs)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/osv/osv.py&amp;quot;, line 118, in execute
&lt;br /&gt;
    res = pool.execute_cr(cr, uid, obj, method, *args, **kw)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/osv/osv.py&amp;quot;, line 110, in execute_cr
&lt;br /&gt;
    return getattr(object, method)(cr, uid, *args, **kw)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/osv/orm.py&amp;quot;, line 2888, in name_search
&lt;br /&gt;
    res = self.name_get(cr, user, ids, context)
&lt;br /&gt;
  File &amp;quot;/usr/lib/python2.5/site-packages/openerp-server/osv/orm.py&amp;quot;, line 2877, in name_get
&lt;br /&gt;
    [self._rec_name], context, load='_classic_write')]
&lt;br /&gt;
KeyError: 'x_name'
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
merci&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>tariklallouch</dc:creator>
<dc:subject>French Forum</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50931#50931" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50931</comments>
</item>
<item>
<title>OpenERP Client :: RE: OEPL restrictions</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50930#50930</link>
<pubDate>Mon, 08 Feb 2010 21:15:15 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50930#50930</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=258&quot; target=&quot;_blank&quot;&gt;pheller&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 11:15 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
...and still no response.&lt;br /&gt;_________________&lt;br /&gt;--phil&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>pheller</dc:creator>
<dc:subject>OpenERP Client</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=33128#33128" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50930</comments>
</item>
<item>
<title>General discussion :: RE: price_accuracy not loading from conf file on windows service</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50929#50929</link>
<pubDate>Mon, 08 Feb 2010 21:15:08 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50929#50929</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=3245&quot; target=&quot;_blank&quot;&gt;Christophe Chauvet&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 11:15 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi
&lt;br /&gt;

&lt;br /&gt;
This is a bugs, i report it many month ago
&lt;br /&gt;

&lt;br /&gt;
see &lt;a href=&quot;https://bugs.launchpad.net/openobject-server/5.0/+bug/392114&quot; target=&quot;_blank&quot;&gt;https://bugs.launchpad.net/openobject-server/5.0/+bug/392114&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Leave a comment with your issue
&lt;br /&gt;

&lt;br /&gt;
Regards,&lt;br /&gt;_________________&lt;br /&gt;Christophe Chauvet
&lt;br /&gt;
Directeur Technique/Technical Manager
&lt;br /&gt;
Sylëam Info Services
&lt;br /&gt;
&lt;a href=&quot;http://www.syleam.fr&quot; target=&quot;_blank&quot;&gt;www.syleam.fr&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Christophe Chauvet</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50927#50927" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50929</comments>
</item>
<item>
<title>General discussion :: RE: Problem with file tutorial on OpenERP.tv</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50928#50928</link>
<pubDate>Mon, 08 Feb 2010 20:40:43 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50928#50928</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=4343&quot; target=&quot;_blank&quot;&gt;bertoo&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 10:40 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
hello,
&lt;br /&gt;

&lt;br /&gt;
Did you see :
&lt;br /&gt;
&lt;a href=&quot;http://openobject.com/forum/topic14846.html&quot; target=&quot;_blank&quot;&gt;http://openobject.com/forum/topic14846.html&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
IMHO you should try this report builder If you don't want to waste time and money&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>bertoo</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=49470#49470" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50928</comments>
</item>
<item>
<title>General discussion :: price_accuracy not loading from conf file on windows service</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50927#50927</link>
<pubDate>Mon, 08 Feb 2010 19:57:01 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50927#50927</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6765&quot; target=&quot;_blank&quot;&gt;StealthM&lt;/a&gt;&lt;br /&gt;
Subject: price_accuracy not loading from conf file on windows service&lt;br /&gt;
Posted: Mon Feb 08, 2010 9:57 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
I was attempting to utilize price_accuracy = 6 from my openerp-server.conf file however it seems that it still uses the default value of 2 every time I try it as a service.
&lt;br /&gt;

&lt;br /&gt;
However, when I run the &amp;quot;openerp-server --price_accuracy 6&amp;quot; without running it as a service the correct setting for price_accuracy is used.
&lt;br /&gt;

&lt;br /&gt;
Has anyone experienced this issue besides me?
&lt;br /&gt;

&lt;br /&gt;
Thanks!&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>StealthM</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50927#50927" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50927</comments>
</item>
<item>
<title>Accounting and finance :: RE: Financial Journals for multicurrency bank accounts</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50926#50926</link>
<pubDate>Mon, 08 Feb 2010 19:44:26 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50926#50926</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=4015&quot; target=&quot;_blank&quot;&gt;pjkersten&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 9:44 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
+1 for me.
&lt;br /&gt;

&lt;br /&gt;
The development of the Account Banking Framework has now touched this area too. Apparently there are multi currency bank accounts which allow amounts in different currencies to co-exist. There is no clear understanding of how OpenERP should deal with this.
&lt;br /&gt;

&lt;br /&gt;
In lots of places, OpenERP coerces moves in different currencies to the companies default or some defined secondary currency. This is done using one of two coercion methods: average or current. The problem is that both methods only compute once. The multiple currency scenario calls for a third option: dynamic. Every calculation should be recalculated on review using the latest exchange rates.
&lt;br /&gt;

&lt;br /&gt;
On top of that there are is the challenge of reporting: how do you show the real amounts in the various currencies hidden in the system?
&lt;br /&gt;

&lt;br /&gt;
At first sight, adapting OpenERP for this looks like domino day - every correction triggers the need for new corrections. Right now I can't oversee the full scope of this.
&lt;br /&gt;

&lt;br /&gt;
As multiple currency accounts seem to become the new standard, action is needed. At least 5 member states of the EU are already affected by this.&lt;br /&gt;_________________&lt;br /&gt;Pieter J. Kersten
&lt;br /&gt;
EduSense BV
&lt;br /&gt;
&lt;a href=&quot;http://www.edusense.nl&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://www.edusense.nl&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>pjkersten</dc:creator>
<dc:subject>Accounting and finance</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=46074#46074" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50926</comments>
</item>
<item>
<title>General discussion :: RE: [Patch] Little improvement on printing with the GTK-client</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50925#50925</link>
<pubDate>Mon, 08 Feb 2010 18:50:03 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50925#50925</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=4015&quot; target=&quot;_blank&quot;&gt;pjkersten&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 8:50 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Actually, there is no need to change the client. Just extend the extensions part of the .openerprc file:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;#91;extensions&amp;#93;
&lt;br /&gt;
filetype = &amp;#123;'odt'&amp;#58; &amp;#40;'/usr/bin/ooffice', '/usr/bin/ooffice'&amp;#41;, 'ps'&amp;#58; &amp;#40;'/usr/bin/evince', '/usr/bin/gtklp'&amp;#41;, 'pdf'&amp;#58; &amp;#40;'/usr/bin/evince', '&amp;lt;some script that combines pdf2ps and gtklp&amp;gt;'&amp;#41;&amp;#125;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
The pattern is: filetype: (previewcommand, printcommand)
&lt;br /&gt;

&lt;br /&gt;
Make sure it is one single line!&lt;br /&gt;_________________&lt;br /&gt;Pieter J. Kersten
&lt;br /&gt;
EduSense BV
&lt;br /&gt;
&lt;a href=&quot;http://www.edusense.nl&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;http://www.edusense.nl&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>pjkersten</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=22465#22465" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50925</comments>
</item>
<item>
<title>Espanol Forum :: RE: Error de impresion en todos los modulos too large on page2</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50924#50924</link>
<pubDate>Mon, 08 Feb 2010 16:25:45 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50924#50924</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6705&quot; target=&quot;_blank&quot;&gt;percevaq&lt;/a&gt;&lt;br /&gt;
Subject: Como arreglar esto&lt;br /&gt;
Posted: Mon Feb 08, 2010 6:25 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Para resumir tienes que bajarte los ficheros contenidos aqui
&lt;br /&gt;
&lt;a href=&quot;http://bazaar.launchpad.net/~openerp/openobject-server/trunk/files/head%3A/bin/report/render/rml2pdf/&quot; target=&quot;_blank&quot;&gt;http://bazaar.launchpad.net/~openerp/openobject-server/trunk/files/head%3A/bin/report/render/rml2pdf/&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
y ponerlos en Server\library.zip\report\render\rml2pdf
&lt;br /&gt;

&lt;br /&gt;
Si no tienes la carpeta library.zip simplemente descomprime el zip que esta en Server\library.zip y renombra la carpeta library a library.zip
&lt;br /&gt;

&lt;br /&gt;
Todo esto para windows.
&lt;br /&gt;

&lt;br /&gt;
Ciao&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>percevaq</dc:creator>
<dc:subject>Espanol Forum</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50554#50554" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50924</comments>
</item>
<item>
<title>General Questions :: RE: stmpclient</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50923#50923</link>
<pubDate>Mon, 08 Feb 2010 16:20:23 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50923#50923</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6763&quot; target=&quot;_blank&quot;&gt;nicoblut&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 6:20 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I have the same message..&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>nicoblut</dc:creator>
<dc:subject>General Questions</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50860#50860" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50923</comments>
</item>
<item>
<title>General discussion :: RE: Cannot enter US State address in company data</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50922#50922</link>
<pubDate>Mon, 08 Feb 2010 15:59:51 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50922#50922</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6740&quot; target=&quot;_blank&quot;&gt;joel-jbe&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 5:59 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Greetings everyone,
&lt;br /&gt;

&lt;br /&gt;
I briefly tried to enter the US State data in the drop down box. It didn't take, and I moved on. I will try that again.
&lt;br /&gt;

&lt;br /&gt;
As of now, I don't see too much trouble, if any, resulting from this and maybe that is why it is somewhat loose. I expect to create any documents that will leave our office in reports where I can enter any address info we need. There is even a great looking module with the ability to connect to Open Office for simple documents and reports.
&lt;br /&gt;

&lt;br /&gt;
I will try to get the data entered and let you know if I have any success.
&lt;br /&gt;

&lt;br /&gt;
Thanks, this isn't major but seeing the response is. It's the community that makes a project like this work
&lt;br /&gt;

&lt;br /&gt;
Joel&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>joel-jbe</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50844#50844" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50922</comments>
</item>
<item>
<title>General discussion :: initial Balance in account</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50921#50921</link>
<pubDate>Mon, 08 Feb 2010 15:54:02 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50921#50921</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=4892&quot; target=&quot;_blank&quot;&gt;kgenot&lt;/a&gt;&lt;br /&gt;
Subject: initial Balance in account&lt;br /&gt;
Posted: Mon Feb 08, 2010 5:54 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello,
&lt;br /&gt;

&lt;br /&gt;
I want to write the initial balance in my account but without counterparty?
&lt;br /&gt;
Does someone how to do that? I've created a journal with type Situation, and centralized. But it'snt seem to work...
&lt;br /&gt;

&lt;br /&gt;
Thank for help.
&lt;br /&gt;

&lt;br /&gt;
K.G&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>kgenot</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50921#50921" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50921</comments>
</item>
<item>
<title>General Questions :: remove changes in SaleOrder lines</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50920#50920</link>
<pubDate>Mon, 08 Feb 2010 15:45:01 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50920#50920</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=5491&quot; target=&quot;_blank&quot;&gt;59590&lt;/a&gt;&lt;br /&gt;
Subject: remove changes in SaleOrder lines&lt;br /&gt;
Posted: Mon Feb 08, 2010 5:45 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
how can i remove changes in SaleOrder lines when i press the cancel button in
&lt;br /&gt;
orderlineform with the gtk-client.
&lt;br /&gt;

&lt;br /&gt;
These function was Ok with web-client.
&lt;br /&gt;

&lt;br /&gt;
Any help!
&lt;br /&gt;

&lt;br /&gt;
Thanks
&lt;br /&gt;
Manfred&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>59590</dc:creator>
<dc:subject>General Questions</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50920#50920" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50920</comments>
</item>
<item>
<title>French Forum :: RE: ERREUR RECHERCHE FACTURE</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50919#50919</link>
<pubDate>Mon, 08 Feb 2010 15:14:06 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50919#50919</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=5462&quot; target=&quot;_blank&quot;&gt;pelucre&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 5:14 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
merci,
&lt;br /&gt;

&lt;br /&gt;
je vais signaler mon bug&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>pelucre</dc:creator>
<dc:subject>French Forum</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50800#50800" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50919</comments>
</item>
<item>
<title>General discussion :: RE: Problem with file tutorial on OpenERP.tv</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50918#50918</link>
<pubDate>Mon, 08 Feb 2010 15:05:59 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50918#50918</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6555&quot; target=&quot;_blank&quot;&gt;howtolearn&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 5:05 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Thanks bertoo, your video is about &amp;quot;Report Designer&amp;quot; which is very powerful tool to make or change a OpenERP's report.
&lt;br /&gt;
However, this tool is not free, and I can't afford to purchase it. If you know other free tools that help to  make or customize a report, please tell me.
&lt;br /&gt;
Now I'm using OpenOffice to make file *.sxw then convert to *.rml, but I also got a problem. By the way, if you know how to convert sxw to rml show me the detail. I'll appreciate
&lt;br /&gt;
Anyway, thank you for your reply ^_^&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>howtolearn</dc:creator>
<dc:subject>General discussion</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=49470#49470" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50918</comments>
</item>
<item>
<title>French Forum :: RE: Champs url ne fonctionne pas</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50917#50917</link>
<pubDate>Mon, 08 Feb 2010 14:55:53 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50917#50917</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=4035&quot; target=&quot;_blank&quot;&gt;GEM&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 4:55 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
eventuellement,
&lt;br /&gt;
telecharger openerp-client build last rev-1045 individual package (08/02/2010) :
&lt;br /&gt;
&lt;a href=&quot;http://dl.free.fr/teqIxyM7E&quot; target=&quot;_blank&quot;&gt;http://dl.free.fr/teqIxyM7E&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>GEM</dc:creator>
<dc:subject>French Forum</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50226#50226" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50917</comments>
</item>
<item>
<title>General Questions :: RE: XML-RPC on Windows Mobile?</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50916#50916</link>
<pubDate>Mon, 08 Feb 2010 14:36:20 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50916#50916</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=3595&quot; target=&quot;_blank&quot;&gt;iguanoman&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 4:36 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
[quote=&amp;quot;larscwallin&amp;quot;]I am glad to hear this &lt;img src=&quot;http://www.openobject.com/forum/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
Is this project of yours open source as well?
&lt;br /&gt;

&lt;br /&gt;
Ciao[/quote]
&lt;br /&gt;

&lt;br /&gt;
I think that won't be open source. The company where I'm working is developing a project for driving school that uses OpenERP for manage the classes, students and professors. And in the mobile part, the professor can see his classes, evaluate the student, ...
&lt;br /&gt;

&lt;br /&gt;
I think that my boss don't want to do it open source... sorry!&lt;br /&gt;_________________&lt;br /&gt;buscando...&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>iguanoman</dc:creator>
<dc:subject>General Questions</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=48603#48603" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50916</comments>
</item>
<item>
<title>General Questions :: Using the calendar view</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50915#50915</link>
<pubDate>Mon, 08 Feb 2010 14:35:57 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50915#50915</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6560&quot; target=&quot;_blank&quot;&gt;larscwallin&lt;/a&gt;&lt;br /&gt;
Subject: Using the calendar view&lt;br /&gt;
Posted: Mon Feb 08, 2010 4:35 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;
I am making a resource booking system and would like to use the calendar view to check availability of items. 
&lt;br /&gt;

&lt;br /&gt;
Is the calendar a generalized GUI component like the other view types?
&lt;br /&gt;

&lt;br /&gt;
If not, any suggestions how to implement/reuse the calendar?
&lt;br /&gt;

&lt;br /&gt;
Ciao,
&lt;br /&gt;
Lars&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>larscwallin</dc:creator>
<dc:subject>General Questions</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50915#50915" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50915</comments>
</item>
<item>
<title>French Forum :: RE: ERREUR RECHERCHE FACTURE</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50914#50914</link>
<pubDate>Mon, 08 Feb 2010 14:35:55 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50914#50914</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=4035&quot; target=&quot;_blank&quot;&gt;GEM&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 4:35 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
une correction de bug peut en amener un autre :
&lt;br /&gt;
&lt;a href=&quot;https://bugs.launchpad.net/openobject-addons/+bug/510293&quot; target=&quot;_blank&quot;&gt;https://bugs.launchpad.net/openobject-addons/+bug/510293&lt;/a&gt;
&lt;br /&gt;
ce qui a change et provoque une autre erreur chez toi :
&lt;br /&gt;
&lt;a href=&quot;http://bazaar.launchpad.net/~openerp-commiter/openobject-addons/stable_5.0-extra-addons/revision/4190&quot; target=&quot;_blank&quot;&gt;http://bazaar.launchpad.net/~openerp-commiter/openobject-addons/stable_5.0-extra-addons/revision/4190&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
peut etre ajouter ton bug sur ce meme report en precisant que la modif qui corrige deja un bug provoque un autre bug, donner le message d'erreur complet.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>GEM</dc:creator>
<dc:subject>French Forum</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50800#50800" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50914</comments>
</item>
<item>
<title>French Forum :: RE: ACCOUNT_ASSET</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50913#50913</link>
<pubDate>Mon, 08 Feb 2010 14:30:54 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50913#50913</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6730&quot; target=&quot;_blank&quot;&gt;Mlle&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 4:30 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
bonjour,
&lt;br /&gt;

&lt;br /&gt;
&amp;quot;après j'ai créer une nlle facture fournisseur dans laquelle j'ai intégrer dans la ligne de produit cette asset avec...&amp;quot;
&lt;br /&gt;

&lt;br /&gt;
sur l'onglet &amp;quot;factures fournisseur&amp;quot;&amp;gt; &amp;quot;lignes de facture&amp;quot;&amp;gt; dans la colonne produit, cette asset vous l'avez créé ou bien...? 
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
sanâa&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Mlle</dc:creator>
<dc:subject>French Forum</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=31760#31760" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50913</comments>
</item>
<item>
<title>Reporting development :: Please help: How to convert sxw to rml</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50912#50912</link>
<pubDate>Mon, 08 Feb 2010 14:28:45 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50912#50912</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6555&quot; target=&quot;_blank&quot;&gt;howtolearn&lt;/a&gt;&lt;br /&gt;
Subject: Please help: How to convert sxw to rml&lt;br /&gt;
Posted: Mon Feb 08, 2010 4:28 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi, everybody
&lt;br /&gt;
I begin to customize new report but I have got the problem when I converted file *.sxw to *.rml
&lt;br /&gt;
At first, I followed the instruction from Openerp books and forums that means I have installed {python25.exe, reportlab and libxml}, then typed the command in Python25.exe
&lt;br /&gt;
C:\Python25\Lib\site-packages&amp;gt;tiny_sxw2rml.py  &amp;quot;C:\test_report.sxw&amp;quot; &amp;gt; &amp;quot;C:\test_report.rml&amp;quot;
&lt;br /&gt;
but it annonced that &amp;quot;&lt;span style=&quot;font-weight: bold&quot;&gt;invalid syntax&amp;quot;&lt;/span&gt; so how could I fix it??
&lt;br /&gt;
By the way, am I right when I typed that command in python25.exe? if I am wrong so where should we type this command??
&lt;br /&gt;
I really need this part. I know maybe someone can do this successfully so I hope I will receive the instruction and the advice from everybody.
&lt;br /&gt;
 I really appreciate this and thanks anyway!&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>howtolearn</dc:creator>
<dc:subject>Reporting development</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=50912#50912" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50912</comments>
</item>
<item>
<title>General Questions :: RE: XML-RPC on Windows Mobile?</title>
<link>http://www.openobject.com/forum/viewtopic.php?p=50911#50911</link>
<pubDate>Mon, 08 Feb 2010 14:25:07 GMT</pubDate>
<guid isPermaLink="true">http://www.openobject.com/forum/viewtopic.php?p=50911#50911</guid>
<description>Author: &lt;a href=&quot;http://www.openobject.com/forum/profile.php?mode=viewprofile&amp;u=6560&quot; target=&quot;_blank&quot;&gt;larscwallin&lt;/a&gt;&lt;br /&gt;

Posted: Mon Feb 08, 2010 4:25 pm (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
I am glad to hear this &lt;img src=&quot;http://www.openobject.com/forum/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
Is this project of yours open source as well?
&lt;br /&gt;

&lt;br /&gt;
Ciao&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>larscwallin</dc:creator>
<dc:subject>General Questions</dc:subject>
<annotate:reference rdf:resource="http://www.openobject.com/forum/viewtopic.php?p=48603#48603" />
<comments>http://www.openobject.com/forum/posting.php?mode=quote&amp;p=50911</comments>
</item>
</channel>
</rss>

<!-- Page generation time: 0.4909s  - Memory Usage: 6.105 Mb  - GZIP disabled -->