Commit Graph

26554 Commits

Author SHA1 Message Date
Antony Lesuisse 810bbe1d3f [FIX] purchase_requisition_line merge remove duplicate requisition_id by Quentin THEURET lp:~quentin-theuret/openobject-addons/purchase_requisition_del_requisition_id
bzr revid: al@openerp.com-20110117211722-55rmowubim2ihzlx
2011-01-17 22:17:22 +01:00
Julien Thewys 7e9b439c1c [FIX] socket: avoids interaction between Nagle and delayed ACK algorithm.
By default, ACK delay is 200ms on Windows which terribly slows down
conversations between client and server (when deployed on different machines).

To avoid any slow down, TCP_NODELAY should be enabled on clients' socket too.

More details:
http://developers.slashdot.org/comments.pl?sid=174457&threshold=1&commentsort=0&mode=thread&cid=14515105

bzr revid: jth@openerp.com-20110117205959-8kxaz0of8ta9dmfw
2011-01-17 21:59:59 +01:00
qdp-launchpad@tinyerp.com f2c971b13a [FIX] hr_expense: wrong domain passed
lp bug: https://launchpad.net/bugs/703908 fixed

bzr revid: qdp-launchpad@tinyerp.com-20110117205413-le9d6tzn4g7h0363
2011-01-17 21:54:13 +01:00
Antony Lesuisse f407b2bceb [IMP] wiki_quality_manual merge update to ISO9001:2008 by Maxime Chambreuil openerp-community/openobject-addons/wiki_quality_manual_iso9001_v2008
bzr revid: al@openerp.com-20110117205138-2t9dicetl4896kn7
2011-01-17 21:51:38 +01:00
P. Christeas e29e641514 [MERGE] osv,ir_model: fixes for fnct_search implementations returning [] + ir.model.data passing browse_records to create()
bzr revid: odo@openerp.com-20110117204932-8ldxndduwqsdyofc
2011-01-17 21:49:32 +01:00
Antony Lesuisse c5f3f35cae [FIX] email_template merge fix for sender, by Olivier Ligot openerp-groupes/openobject-addons/fix_email_template
bzr revid: al@openerp.com-20110117204840-6gurujg428q8k4e1
2011-01-17 21:48:40 +01:00
qdp-launchpad@tinyerp.com 948764a7b2 [FIX] base_vat: GB vat number check fixed
lp bug: https://launchpad.net/bugs/700962 fixed

bzr revid: qdp-launchpad@tinyerp.com-20110117204455-tc9cxdat5rig6jg9
2011-01-17 21:44:55 +01:00
qdp-launchpad@tinyerp.com 32dfff9e55 [MERGE] merged the branch of vmt related to upstrem/downstream tracability
bzr revid: qdp-launchpad@tinyerp.com-20110117201934-ud2r4dl7bhfa2kn3
2011-01-17 21:19:34 +01:00
qdp-launchpad@tinyerp.com c95bdec7af [FIX] mrp_operations: fixed error in test yaml
bzr revid: qdp-launchpad@tinyerp.com-20110117201518-n0plefjtiyg5icpv
2011-01-17 21:15:18 +01:00
Anup (OpenERP) 2298231380 [FIX] orm.search: fix ordering when multiple order columns are used
Original refactoring forgot to properly fix the split, 
in revision 3143.1.2 revid:odo@openerp.com-20101221192344-87d7ajnfsn5unm9p

bzr revid: odo@openerp.com-20110117200837-h2ynvbqngp0pb3za
2011-01-17 21:08:37 +01:00
Olivier Dony dd73fb1cac [FIX] debian packaging: removed old Makefile + fixed addons path resolution
bzr revid: odo@openerp.com-20110117195047-a74fb95y524msxty
2011-01-17 20:50:47 +01:00
Christophe Simonis 61bafa269f [FIX] web_livechat: clear cache at create/write/unlink
bzr revid: chs@openerp.com-20110117193234-6ywxa2dcian1l0wl
2011-01-17 20:32:34 +01:00
Olivier Dony 1b7230e2e5 [MERGE] debian packaging history (via xrg)
bzr revid: odo@openerp.com-20110117192620-rnh6jrm1d8j53e5c
2011-01-17 20:26:20 +01:00
Vo Minh Thu 0b3323b1ad [FIX] res_widget_data: corrected facebook widget url and widgets width.
bzr revid: vmt@openerp.com-20110117192313-vk4tibwvk68qmbbi
2011-01-17 20:23:13 +01:00
P. Christeas fa38285cd4 Merge remote branch 'rebzr/official-trunk' into deb-scripts
bzr revid: p_christ@hol.gr-20110117190940-mabdtzjp0y7dyjek
2011-01-17 21:09:40 +02:00
Fabien Pinckaers 3b89031156 [FIX] visibility of journal_period in journal items
bzr revid: fp@tinyerp.com-20110117190910-5roy3ikf4iigww0a
2011-01-17 20:09:10 +01:00
Olivier Dony 1896ef488b [FIX] ir.model.data: ensure cache of known "model data reference ids" is not lost after osv inheritance
By storing this cache in the pool and only referencing it in the instance we ensure that it is not lost
when the osv instance is replaced in the pool, e.g. as soon as on osv object inherits from ir.model.data.
This is now needed, as the module data cleanup is now done globally at the end of all module installation,
while it was done on a smaller scale before (leading to other kinds of issues).

lp bug: https://launchpad.net/bugs/704051 fixed
lp bug: https://launchpad.net/bugs/701644 fixed

bzr revid: odo@openerp.com-20110117184453-kxvbuzmuge6u1mh4
2011-01-17 19:44:53 +01:00
Olivier Dony 3d4d87b718 [FIX] report.interface: toxml() should return unicode to avoid any encoding issue propagation
It used to return utf-8 data but was brittle in the conversion, and would fail downstream
if the calling code did not pay attention to handle utf-8 data properly.
Returning unicode forces callers to auto-cast to unicode for any string operation, saving
potential trouble later. 
From the addons that currently call toxml(), none use it in a manner that would fail in case
unicode data is returned, so we should be on the safe side there too.

lp bug: https://launchpad.net/bugs/695960 fixed

bzr revid: odo@openerp.com-20110117184444-mxjeneuoa0r5a85n
2011-01-17 19:44:44 +01:00
qdp-launchpad@tinyerp.com 6cd9f64973 [MERGE] merged the dev2 branch
bzr revid: qdp-launchpad@tinyerp.com-20110117180333-9h6p7e1lwxk1mmz3
2011-01-17 19:03:33 +01:00
qdp-launchpad@tinyerp.com 717ea6f930 [MERGE] merged the dev3 branch
bzr revid: qdp-launchpad@tinyerp.com-20110117180222-rvby5kh871sxfoyh
2011-01-17 19:02:22 +01:00
Vo Minh Thu cad83b0703 [IMP] crm_partner_assign: added partner_assigned_id after partner_id in the opportunity tree view.
bzr revid: vmt@openerp.com-20110117175430-u00ca94z5j1r2f4t
2011-01-17 18:54:30 +01:00
Vo Minh Thu c16b72387a [FIX] translate: make sure we don't insert null values in ir_translation for missing ir_data_models.
bzr revid: vmt@openerp.com-20110117171608-08a0u7wpc8cx8uu1
2011-01-17 18:16:08 +01:00
Yogesh (OpenERP) ba2ee50c84 [MERGE] workflow: correctly pass ids as list when printing workflows with subflows
lp bug: https://launchpad.net/bugs/701058 fixed

bzr revid: odo@openerp.com-20110117170525-bbqh6k584k6ssa0g
2011-01-17 18:05:25 +01:00
qdp-launchpad@tinyerp.com e183f98ad1 [FIX] stock: fixed the type of account on valuation_in_account_id and valuation_out_account_id and fixed its label too. Also, improved the form view of stock.location for these 2 fields
bzr revid: qdp-launchpad@tinyerp.com-20110117165944-g50z4f6trn3qfit3
2011-01-17 17:59:44 +01:00
Yogesh (OpenERP) cd8515c8b4 [MERGE] base data: make default shortcuts non-updatable, to avoid possible conflicts at update
lp bug: https://launchpad.net/bugs/699866 fixed

bzr revid: odo@openerp.com-20110117165840-1d5cwsxf24lwflw3
2011-01-17 17:58:40 +01:00
Christophe Simonis 41530916db [FIX] web_livechat
bzr revid: chs@openerp.com-20110117164505-3m0ith3fa6dc54w1
2011-01-17 17:45:05 +01:00
qdp-launchpad@tinyerp.com 3a92d799a0 [MERGE] merged the c2c branch about l10n_ch upgrade
bzr revid: qdp-launchpad@tinyerp.com-20110117160821-gzq49wpf3mqq1uc2
2011-01-17 17:08:21 +01:00
Olivier Dony eac572cb0f [FIX] base: rename config wizard menu to Reconfigure (now that shortcuts are translatable)
bzr revid: odo@openerp.com-20110117153202-860gfbo2qgyiz05u
2011-01-17 16:32:02 +01:00
Olivier Dony 3419837535 [FIX] mrp_operations: better debugging messages during yaml tests (via xrg)
bzr revid: odo@openerp.com-20110117152938-mwgnx6sk8w2uy24a
2011-01-17 16:29:38 +01:00
P. Christeas 3586ae34c6 debian: use the standard conf file, adapt init and copyright
bzr revid: p_christ@hol.gr-20110117152605-qtifgtoydws7ox8q
2011-01-17 17:26:05 +02:00
Christophe Simonis 2476ecd6da [FIX] web_livechat: change check of contract
bzr revid: chs@openerp.com-20110117152435-ddsrmmkhqeldid30
2011-01-17 16:24:35 +01:00
P. Christeas 2bc1ef6c31 openerp-server.conf: adapt sample config to 6.0 options.
bzr revid: p_christ@hol.gr-20110117152232-2o5957d6euvn4cba
2011-01-17 17:22:32 +02:00
qdp-launchpad@tinyerp.com 97b7f9251e [IMP] res.partner.address: changed the _order from 'name' to 'type, name'
bzr revid: qdp-launchpad@tinyerp.com-20110117151757-uk8m60upj1lc71sv
2011-01-17 16:17:57 +01:00
P. Christeas e6f1b9717b debian: some preparation for the 6.0.0 package
bzr revid: xrg@openerp.com-20110117151145-er0n9ojajspv2w7d
2011-01-17 16:11:45 +01:00
Olivier Dony 5e01feb283 [FIX] stock.partial.picking: more robust fields_view_get() if no active_ids in context (via xrg)
bzr revid: odo@openerp.com-20110117150832-2k90u8xk12xiokgb
2011-01-17 16:08:32 +01:00
Olivier Dony 2785a909f2 [FIX] sale: sale printout had one column too much when lines had notes
lp bug: https://launchpad.net/bugs/702847 fixed

bzr revid: odo@openerp.com-20110117144503-qrwzj2adzo0u21oh
2011-01-17 15:45:03 +01:00
Vo Minh Thu (OpenERP) fbd89ab1e6 [MERGE] translate: avoid false positives during resolution of translation links
bzr revid: odo@openerp.com-20110117141803-st4zolrp5h6egpqw
2011-01-17 15:18:03 +01:00
Vo Minh Thu b640d02a60 [FIX] translation: corrected search on loading translation.
bzr revid: vmt@openerp.com-20110117140504-ha3nilfa7csxh3bs
2011-01-17 15:05:04 +01:00
UCO(OpenERP) 758f918bc8 [Fix] crm : fix the log message
bzr revid: sbh@tinyerp.com-20110117135706-mgwjddzdtoqkl8mi
2011-01-17 19:27:06 +05:30
rpa (Open ERP) c687a3386d [MERGE]: Merge with lp:~openerp-dev/openobject-addons/ron-dev-addons2
bzr revid: rpa@tinyerp.com-20110117135522-1rtuua1ykog5q1m2
2011-01-17 19:25:22 +05:30
rpa (Open ERP) c62b9e9020 [MERGE]: Merge with lp:~openerp-commiter/openobject-addons/trunk-addons-aag
bzr revid: rpa@tinyerp.com-20110117135359-y8lzj4cpebe6nu0t
2011-01-17 19:23:59 +05:30
rpa (Open ERP) 64660233a3 [MERGE]: Merge with lp:~openerp-dev/openobject-addons/ksa-addons2
bzr revid: rpa@tinyerp.com-20110117135136-4xtzqi6y6sr8nfxe
2011-01-17 19:21:36 +05:30
P. Christeas a228e192a5 setup.py: bring back the block that installs addons
Was removed in d6fc9237a62a4, but is necessary for the creation of distro
packages.

bzr revid: xrg@openerp.com-20110117134841-gcrbv699anl9jcho
2011-01-17 14:48:41 +01:00
rpa (Open ERP) c94af99435 [MREGE]: Merge with lp:~openerp-commiter/openobject-addons/dev-addons2-rha1
bzr revid: rpa@tinyerp.com-20110117134325-z2ruhpf22jjkp8oe
2011-01-17 19:13:25 +05:30
Sbh (OpenERP) a7f4b3c3d1 [MERGE]: Merged with lp:~openerp-dev/openobject-addons/jam-dev-addons
bzr revid: sbh@tinyerp.com-20110117133719-xt91gitw5ipr5q0c
2011-01-17 19:07:19 +05:30
jam-openerp 0b22866de5 [FIX] Performance Issue : fixes the dates field for analysis reports
lp bug: https://launchpad.net/bugs/693833 fixed

bzr revid: jam@tinyerp.com-20110117132654-frq1v6jmuflx8iks
2011-01-17 18:56:54 +05:30
ksa (Open ERP) da1ea6e05f [FIX]:regression - cannot specify dedicated inventory accounts for periodical inventory or production
lp bug: https://launchpad.net/bugs/697273 fixed

bzr revid: ksa@tinyerp.co.in-20110117131339-i57z5w9plal1vw9c
2011-01-17 18:43:39 +05:30
Stephane Wirtel ad37ea0a5e [FIX] Review the __openerp__.py of thunderbird
bzr revid: stephane@openerp.com-20110117131258-ltw9fjsfi2ayvk9y
2011-01-17 14:12:58 +01:00
Sbh (OpenERP) 61a4141a78 [IMP] project: performance issues
bzr revid: sbh@tinyerp.com-20110117131257-bfkuwnme3rwnlfew
2011-01-17 18:42:57 +05:30
Mustufa Rangwala 125cff6efb [MERGE] hr_attendance, holidays => use tools.ustr for ascii char in xsl reports
bzr revid: mra@mra-laptop-20110117124710-5n6wm3rnubtqnntw
2011-01-17 18:17:10 +05:30