Commit Graph

36097 Commits

Author SHA1 Message Date
Antony Lesuisse 4d18a8a614 [FIX] crm_installer sale_crm modifier lp:855351
lp bug: https://launchpad.net/bugs/855351 fixed

bzr revid: al@openerp.com-20110922101128-l0rq2yk3sl09h8i2
2011-09-22 12:11:28 +02:00
Mayur Maheshwari (OpenERP) a10570b1ec [IMP]stock: highlight a un-used function
bzr revid: mma@tinyerp.com-20110922100952-w7od697fouowomif
2011-09-22 15:39:52 +05:30
Ujjvala Collins (OpenERP) 9757a3a5ce [FIX] l10n_es, l10n_in, l10n_it: Fixed error of 'Receivable/Payable' accounts when installing different chart of accounts.
lp bug: https://launchpad.net/bugs/855490 fixed

bzr revid: uco@tinyerp.com-20110922100659-73cl0wwin1p9exv1
2011-09-22 15:36:59 +05:30
Antony Lesuisse feca0a787f [MERGE] import_sugarcrm tfr
bzr revid: al@openerp.com-20110922095531-oivmvia4zdnz1rkn
2011-09-22 11:55:31 +02:00
niv-openerp e42256c478 [imp] switched the dates to UTC. I'm so happy.
bzr revid: nicolas.vanhoren@openerp.com-20110922095443-3pzaup9ryb2vb25m
2011-09-22 11:54:43 +02:00
Xavier Morel 01fd5a7fb6 [FIX] onchange call for data import fields
bzr revid: xmo@openerp.com-20110922095409-xxqb0l3mirralwps
2011-09-22 11:54:09 +02:00
Bhumika (OpenERP) c715781258 [MERGE] Merge with lp:openobject-addons
bzr revid: sbh@tinyerp.com-20110922095156-70lgwz99wwg5evxp
2011-09-22 15:21:56 +05:30
Stephane Wirtel e3e5fe5cbe [FIX] account_asset: remove 'x' flag on .xml and .py files
bzr revid: stw@openerp.com-20110922094406-ssrari0nx6i39axw
2011-09-22 11:44:06 +02:00
Xavier Morel 099b18ace6 [REM] redundant call to do_check_req_field: it's already called from on_change_check
bzr revid: xmo@openerp.com-20110922094058-yhy6re1l679fg42m
2011-09-22 11:40:58 +02:00
niv-openerp 2508d7b985 [fix] problem when creating a new user without specifying any groups
bzr revid: nicolas.vanhoren@openerp.com-20110922093819-zzz9y9rt1seklhr1
2011-09-22 11:38:19 +02:00
Kuldeep Joshi (OpenERP) b80c31cf34 [IMP] stock: change tooltip of To Do button
bzr revid: kjo@tinyerp.com-20110922093818-hojcoz8f3bd1kz0u
2011-09-22 15:08:18 +05:30
Mayur Maheshwari (OpenERP) 2f59fdb238 [MERGE]: Merge with lp:openobject-addons
bzr revid: mma@tinyerp.com-20110922093414-45a75c9m1m553d2o
2011-09-22 15:04:14 +05:30
DBR (OpenERP) de2db44b53 [IMP]project_scrum: Improve the default search
bzr revid: dbr@tinyerp.com-20110922092926-ynbhj7n93t3l6d7x
2011-09-22 14:59:26 +05:30
ARA (OpenERP) 61c115dd13 [FIX] cannot install chart template of belgian chart
lp bug: https://launchpad.net/bugs/854697 fixed

bzr revid: ara@tinyerp.com-20110922091919-zc9atxnlwoyromaq
2011-09-22 14:49:19 +05:30
Mayur Maheshwari (OpenERP) 4b7f5b73a6 [MERGE]: Merge with lp:openobject-addons
bzr revid: mma@tinyerp.com-20110922091249-qlx9jubz52izvifr
2011-09-22 14:42:49 +05:30
Mayur Maheshwari (OpenERP) dfdfcf2bac [IMP]stock: improement in invoice after merge
bzr revid: mma@tinyerp.com-20110922090909-wljcxwn3a5of3mgj
2011-09-22 14:39:09 +05:30
DBR (OpenERP) 56b08a3ead [Imp]Improve project_issue search view
bzr revid: dbr@tinyerp.com-20110922090900-e34meuea1cap3edd
2011-09-22 14:39:00 +05:30
Olivier Dony ef4795dbe6 [FIX] mrp: properly apply location chaining rules after exploding set/phantom BoM
The explosion of a kit product typically produces a few
new stock moves, which must go through the normal
location chaining process. This was not the case, only
the kit move was properly chained.

bzr revid: odo@openerp.com-20110922090759-ukxz7eu8q388jk38
2011-09-22 11:07:59 +02:00
Purnendu Singh (OpenERP) 42d7d43704 [FIX] account:Profit and Loss and Balance Sheet Report Problem
lp bug: https://launchpad.net/bugs/856128 fixed

bzr revid: psi@tinyerp.com-20110922085847-9i6hhsqu7f1r5i2g
2011-09-22 14:28:47 +05:30
Xavier Morel 51dbb70b8d [FIX] mitigate horrendous performance issues inserting options in Webkit
In some cases, at least with complex-enough views, inserting many
options in a document in a row will get progressively slower.

In import, this issue is hit on trying to import partners: partners
have a humongous number of fields (direct and on their o2m), ~940,
which yields a correspondingly huge number of options in the
selection.

A basic partner export also has quite high a number of columns (~50
without exporting o2m fields), so this list of 940 options is inserted
50 times in a row (literally too, they're all in the same table row)..

While not all that fast, Firefox 5/6 has no significant issue with
this (~18ms/insertion, where an insertion is a full select with all
its options). Webkit browsers (Chrome and Safari) on the other hand
start out fair (~10ms/insertion), but get slower and slower until they
end up at 3~5 *seconds* for each insertion (3s if inserting a
DocumentFragment, 5s if inserting text via innerHTML). This means the
preview table takes up to *two minutes* to display, even the best
cases (pre-generating everything that can be and optimizing everything
I could think of) take 75 *seconds* for the insertions (the
pregeneration of a given select and its options is ~100ms, the base
template rendering is ~20ms).

rendering divs or inputs does not have this issue, I did not manage to
reduce or fix the issue directly so I replaced the options by
jQuery-ui's autocomplete widget. This is not issues-free: when tabbing
through the fields lists, when reaching the edge of the popup the
browser will automatically scroll the field back into view. However,
this is done *after* autocomplete's popup has opened, and as a result
the popup opens in the wrong place (at the popup's edge, instead of
under the now-moved field).

bzr revid: xmo@openerp.com-20110922085812-3u1esk6czraskm01
2011-09-22 10:58:12 +02:00
Olivier Dony b8fc49476d [FIX] mrp: kit explosion with correct locations for all moves
The kit moves initially from Stock -> Output after the 
initial sale order. The components are exploded and
use the same Stock -> Output source and destination.
After the explosion, the kit's destination must change
back to Stock, so that this move does not alter
the stock levels once confirmed.
The kit's move is chained after the component's moves,
so that it becomes Done at the same time, which in
turn will mark the sale order as Delivered. 
OPW Case #17431

bzr revid: odo@openerp.com-20110922084345-8nxant22mmiv5mdd
2011-09-22 10:43:45 +02:00
Stephane Wirtel 0aa394f708 [IMP] fetchmail_project_issue: Add a link between the fetchmail and project_issue modules
bzr revid: stw@openerp.com-20110922073613-f19p2n8k2o955c0t
2011-09-22 09:36:13 +02:00
Stephane Wirtel 34feb63d6e [IMP] fetchmail_hr_recruitment: Add a link between the fetchmail and hr_recruitment modules
bzr revid: stw@openerp.com-20110922073526-uo0t6kvihkgh3lqy
2011-09-22 09:35:26 +02:00
Stephane Wirtel c6569e97b9 [IMP] fetchmail_crm_claim: Add a link between the fetchmail and crm_claim modules
bzr revid: stw@openerp.com-20110922073447-sflr4n5v3tuaf6tz
2011-09-22 09:34:47 +02:00
Stephane Wirtel 03e588d3c1 [IMP] fetchmail_crm: Add a link between the fetchmail and crm modules
bzr revid: stw@openerp.com-20110922073357-c8igqv5hbc98jpg1
2011-09-22 09:33:57 +02:00
DBR (OpenERP) f1cf24bc8e [Imp]Improve code of registration search view
bzr revid: dbr@tinyerp.com-20110922071611-juobodb1sk7f96m5
2011-09-22 12:46:11 +05:30
Olivier Dony 0e55cc6cce [MERGE] sync with latest trunk
bzr revid: odo@openerp.com-20110922071006-axaf12qvvw486z3e
2011-09-22 09:10:06 +02:00
Kuldeep Joshi (OpenERP) 0df705f087 [IMP] set ready button as search_default in stock.move action
bzr revid: kjo@tinyerp.com-20110922070017-y2vnrro8r08ee4ps
2011-09-22 12:30:17 +05:30
Rucha (Open ERP) 0e861ae34a [MERGE]: Merge with latest trunk-addons and resolved conflicts in bank statement as new state was added in statement
bzr revid: rpa@tinyerp.com-20110922061419-cvaza3f5050o0b85
2011-09-22 11:44:19 +05:30
Mayur Maheshwari (OpenERP) 4a3d8067ef [MERGE]: Merge with lp:openobject-addons
bzr revid: mma@tinyerp.com-20110922053525-8nm03eief90e88cn
2011-09-22 11:05:25 +05:30
DBR (OpenERP) a00d78c141 [Merge]with: lp:openobject-addons
bzr revid: dbr@tinyerp.com-20110922050623-hd02vq705erx69qq
2011-09-22 10:36:23 +05:30
DBR (OpenERP) 7caa661c37 [Merge]with: lp:openobject-addons
bzr revid: dbr@tinyerp.com-20110922050459-m2d8yv9h795q2twx
2011-09-22 10:34:59 +05:30
Launchpad Translations on behalf of openerp a000c1d3e6 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110922044812-g8kielinq08b1khw
2011-09-22 04:48:12 +00:00
tfr@openerp.com 2f7006896f [MERGE] trunk
bzr revid: tfr@openerp.com-20110922030201-e3skbi1cbp5iv1bl
2011-09-22 05:02:01 +02:00
tfr@openerp.com 66f6e85d64 [MERGE]
bzr revid: tfr@openerp.com-20110922005624-khwu3t0ghhudei5l
2011-09-22 02:56:24 +02:00
Olivier Dony 9497814729 [IMP] expression: fix [(o2m,not in,...)] domains, re-enable tests, cleanup
bzr revid: odo@openerp.com-20110922005431-gnym5pormtjkfu8q
2011-09-22 02:54:31 +02:00
Antony Lesuisse 3b64352133 [MERGE] account financial report type=account_type, honor user_type sign
bzr revid: al@openerp.com-20110922002113-1t1qutvu9mntmcd8
2011-09-22 02:21:13 +02:00
Antony Lesuisse b845e523ca [IMP] more consistent naming
bzr revid: al@openerp.com-20110922001301-75782ppl28nv213e
2011-09-22 02:13:01 +02:00
Antony Lesuisse 57e3414483 [MERGE] currency symbol position update reports dsh
bzr revid: al@openerp.com-20110922000741-nq8zocapix1zpymd
2011-09-22 02:07:41 +02:00
Antony Lesuisse 9a0c6ce1a0 [IMP] account.financial.report account_type mode remove debug
bzr revid: al@openerp.com-20110921235803-p5fcdtsf0m7e6eci
2011-09-22 01:58:03 +02:00
Antony Lesuisse f18c91c9a1 [IMP] account.financial.report account_type mode
bzr revid: al@openerp.com-20110921235324-fgo9v1g3omppe3h1
2011-09-22 01:53:24 +02:00
Dhara (OpenERP) 74499975fa Merge from Trunk
bzr revid: dhara_openerp-20110921234612-1swwcyvfst3vi1hw
2011-09-21 16:46:12 -07:00
Antony Lesuisse c1026977ab [MERGE] currency position dsh
bzr revid: al@openerp.com-20110921232150-c1rpri2650363fkd
2011-09-22 01:21:50 +02:00
Olivier Dony c856d70bf5 [MERGE] sync latest trunk, including fixes for =like/=ilike
bzr revid: odo@openerp.com-20110921225225-zk98p2w1asoi2csl
2011-09-22 00:52:25 +02:00
Olivier Dony 6652943cd2 [IMP] minor cosmetic changes to improve readability and ease reviewing process
bzr revid: odo@openerp.com-20110921224423-h5hjnqrqgrp5hhau
2011-09-22 00:44:23 +02:00
Olivier Dony 886b7407de [FIX] osv.expression: fix =like/=ilike operators, broken by r.3631
Revision 3631 = vmt@openerp.com-20110920124252-l5snbvb7ywfogw1o

bzr revid: odo@openerp.com-20110921224208-mji81to3g4kpmkuq
2011-09-22 00:42:08 +02:00
Antony Lesuisse b117f5dc75 [MERGE] account balance sign on usertype in reports dsh
bzr revid: al@openerp.com-20110921224125-88aim4xiz89x5mth
2011-09-22 00:41:25 +02:00
Antony Lesuisse 7080c6cde5 [MERGE] res_currency add search view qdp
bzr revid: al@openerp.com-20110921213910-r96iwmc4bkcqoahs
2011-09-21 23:39:10 +02:00
Olivier Dony 6e4a93cd22 [MERGE] sync w/ latest trunk
bzr revid: odo@openerp.com-20110921162128-22sp59cn4xv983q5
2011-09-21 18:21:28 +02:00
niv-openerp 60d9065ff1 [fix] problem with context and default_get
bzr revid: nicolas.vanhoren@openerp.com-20110921160825-6o1ggc0tar1i18j6
2011-09-21 18:08:25 +02:00