odoo/odoo.git
11 years ago[FIX] Inject user context in all domain and context evaluation
Xavier Morel [Mon, 28 Jan 2013 13:06:40 +0000 (14:06 +0100)]
[FIX] Inject user context in all domain and context evaluation

Custom keys from user context may be used in action contexts (not just
e.g. searchview filters). For instance, have a custom key
context_salesteam (in the user model) and an action defining some
search default as a function of the salesteam.

In that case, the action's context evaluation (view.js:~275) will blow
up.

Ensure that does not happen.

Note: eval_contexts already injects user_context in the reduction of
contexts to evaluate. It should be possible to alter the reduction
function to avoid having to inject instance.session.user_context
through pyeval.context(), maybe by _.extend-ing ``result_context``
into ``evaluation_context`` at the *top* of the reduction function
rather than at its bottom?

bzr revid: xmo@openerp.com-20130128130640-ksyvxvx6rlc4820n

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Sun, 27 Jan 2013 05:10:12 +0000 (05:10 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130126053743-gvzlf7q6x7t1epw7
bzr revid: launchpad_translations_on_behalf_of_openerp-20130127051012-oel2zn0owk19akxk

11 years ago[IMP] res.partner missing group by country
Antony Lesuisse [Fri, 25 Jan 2013 21:40:27 +0000 (22:40 +0100)]
[IMP] res.partner missing group by country

bzr revid: al@openerp.com-20130125214027-usu1y7eho9gm9uld

11 years ago[FIX] avoid storing new admin password in browser history on database creation, court...
Xavier Morel [Fri, 25 Jan 2013 11:43:31 +0000 (12:43 +0100)]
[FIX] avoid storing new admin password in browser history on database creation, courtesy of Holger Brunn

bzr revid: xmo@openerp.com-20130125114331-yabvigl2qjscnzv5

11 years ago[IMP] set _push_me: false to fix lp:1091759
Holger Brunn [Fri, 25 Jan 2013 11:01:59 +0000 (12:01 +0100)]
[IMP] set _push_me: false to fix lp:1091759

bzr revid: hbrunn@therp.nl-20130125110159-b43murb3dzbp9oib

11 years ago[IMP] set_content_full_screen code, avoid duplications
Xavier Morel [Fri, 25 Jan 2013 10:05:47 +0000 (11:05 +0100)]
[IMP] set_content_full_screen code, avoid duplications

bzr revid: xmo@openerp.com-20130125100547-ujawyg4ohnrofl3u

11 years ago[FIX] aggregates not being displayed in list o2ms
Xavier Morel [Fri, 25 Jan 2013 08:57:39 +0000 (09:57 +0100)]
[FIX] aggregates not being displayed in list o2ms

A template alteration previously used to remove the bottom pager of
listviews in o2ms now matches aggregate field displays.

bzr revid: xmo@openerp.com-20130125085739-isro8w216gpa038a

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Fri, 25 Jan 2013 06:05:30 +0000 (06:05 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130125060530-mvl0r5jn2ysf7amp

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Fri, 25 Jan 2013 06:04:37 +0000 (06:04 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130124053457-8qf8k6eb4ukdig0k
bzr revid: launchpad_translations_on_behalf_of_openerp-20130125060437-nlhqe2dilssuf70x

11 years ago[FIX] Can't open records in form view from grouped kanban
Fabien Meghazi [Thu, 24 Jan 2013 17:02:30 +0000 (18:02 +0100)]
[FIX] Can't open records in form view from grouped kanban

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

bzr revid: fme@openerp.com-20130124170230-99g7tcb1c6yh8e0o

11 years ago[FIX] domain returned by onchange
Xavier Morel [Thu, 24 Jan 2013 14:40:18 +0000 (15:40 +0100)]
[FIX] domain returned by onchange

The "new" form engine performs a bunch of conversions on the form arch
from json to xml to text to json again (or something), thus the
``node`` attribute on form fields might be json but it's got no more
relation to the form's own arch (and the fields defined therein).

Meanwhile the domains processing for onchange recursively traversed
the *form*'s arch trying to find a node matching the key it had to set
its @domain to what it was given. It long predates the "new" form
engine, and since it alters the *original* arch not a copy the "new"
form engine broke it. And since that's untested, it's been broken for
a bunch of months (probably).

Fix by looking up the field according to the domain key (in
form.fields), and setting the domain in the node of the field, rather
than the node of the form's arch.

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

bzr revid: xmo@openerp.com-20130124144018-0g3sl2nej2aj6syp

11 years ago[FIX] session: properly handle exceptions with unicode messages during dispatching
Olivier Dony [Thu, 24 Jan 2013 14:05:38 +0000 (15:05 +0100)]
[FIX] session: properly handle exceptions with unicode messages during dispatching

String formatting with an Exception param will use
str(Exception), raising an error if the exception
has non-ascii characters in the message.

bzr revid: odo@openerp.com-20130124140538-1wjjl4a12xnwn38o

11 years ago[REM] noise key in web manifest
Xavier Morel [Thu, 24 Jan 2013 13:11:02 +0000 (14:11 +0100)]
[REM] noise key in web manifest

bzr revid: xmo@openerp.com-20130124131102-s3342pppi2nhyk9g

11 years ago[FIX] web_analytics: missing explicit empty value for WebClient.subscribe_deferred
Olivier Dony [Thu, 24 Jan 2013 12:41:32 +0000 (13:41 +0100)]
[FIX] web_analytics: missing explicit empty value for WebClient.subscribe_deferred

bzr revid: odo@openerp.com-20130124124132-6xgqf9qy22kkxasn

11 years ago[FIX] account: tree drill-down action bindings were removed by error for Chart of...
Olivier Dony [Thu, 24 Jan 2013 12:38:27 +0000 (13:38 +0100)]
[FIX] account: tree drill-down action bindings were removed by error for Chart of Accounts/Taxes

Was done by mistake as a side-effect of rev. 8086.1.28 revid:dle@openerp.com-20121128150525-zh27h78v8dd6dkwm

bzr revid: odo@openerp.com-20130124123827-2pv2nhzjdt9r2li4

11 years ago[FIX]Fixed the issue of sum aggregates not displayed on one2many footer.
Mohammed Shekha [Thu, 24 Jan 2013 12:07:27 +0000 (17:37 +0530)]
[FIX]Fixed the issue of sum aggregates not displayed on one2many footer.

bzr revid: msh@openerp.com-20130124120727-hhlrzr7qzk242lw0

11 years ago[FIX] note: stages should not block user deletion + incomplete fields.function declar...
Olivier Dony [Thu, 24 Jan 2013 10:46:25 +0000 (11:46 +0100)]
[FIX] note: stages should not block user deletion + incomplete fields.function declaration for current_partner_id

bzr revid: odo@openerp.com-20130124104625-5aqn1ch5kdz9cgak

11 years ago[Fix]can't open form of data out of kanban
Vishmita [Thu, 24 Jan 2013 10:24:11 +0000 (15:54 +0530)]
[Fix]can't open form of data out of kanban

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

bzr revid: vja@tinyerp.com-20130124102411-rt3nyp5s4xgbio2t

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Thu, 24 Jan 2013 05:35:15 +0000 (05:35 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130124053511-cxfjeh7rfwridjv1
bzr revid: launchpad_translations_on_behalf_of_openerp-20130124053515-bl01lm43wsqnoenv

11 years ago[FIX] signal registry change when install modules from config wizards
Christophe Simonis [Wed, 23 Jan 2013 17:47:24 +0000 (18:47 +0100)]
[FIX] signal registry change when install modules from config wizards

bzr revid: chs@openerp.com-20130123174724-bqonj3d4dufof2vw

11 years ago[FIX] signal registry change when uninstall modules
Christophe Simonis [Wed, 23 Jan 2013 15:33:45 +0000 (16:33 +0100)]
[FIX] signal registry change when uninstall modules

bzr revid: chs@openerp.com-20130123153345-x7jm13eieqgeg5i7

11 years ago[FIX] base, res.company: fixed overlapping in company header when display_address...
Quentin (OpenERP) [Wed, 23 Jan 2013 14:38:02 +0000 (15:38 +0100)]
[FIX] base, res.company: fixed overlapping in company header when display_address() returns a 5 lines text (UK for example)

bzr revid: qdp-launchpad@openerp.com-20130123143802-n9nbwm18xn6xh7z3

11 years ago[FIX] account: added the ir.values to add the partner_ledger report as report on...
Quentin (OpenERP) [Wed, 23 Jan 2013 11:32:53 +0000 (12:32 +0100)]
[FIX] account: added the ir.values to add the partner_ledger report as report on the res.partner object + fixed that part of the code

bzr revid: qdp-launchpad@openerp.com-20130123113253-0gs8idcha0qbem9s

11 years ago[IMP] add confirmation message when removing a global custom filter
Xavier Morel [Wed, 23 Jan 2013 10:53:20 +0000 (11:53 +0100)]
[IMP] add confirmation message when removing a global custom filter

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

bzr revid: xmo@openerp.com-20130123105320-pbmeqoudpb48s87m

11 years ago[FIX] rounding of float_time to the next hour should bump the hour, nor display 60mn
Xavier Morel [Wed, 23 Jan 2013 10:15:57 +0000 (11:15 +0100)]
[FIX] rounding of float_time to the next hour should bump the hour, nor display 60mn

bzr revid: xmo@openerp.com-20130123101557-v63oxes2emrwcz19

11 years ago[IMP] Added some test cases for the float_time
Anand Patel (OpenERP) [Wed, 23 Jan 2013 09:31:55 +0000 (15:01 +0530)]
[IMP] Added some test cases for the float_time

bzr revid: pan@tinyerp.com-20130123093155-v9rrnb38hxugv1bt

11 years ago[IMP] IE9 supports window.getSelection
Xavier Morel [Wed, 23 Jan 2013 09:29:46 +0000 (10:29 +0100)]
[IMP] IE9 supports window.getSelection

remove IE <9 usage of document.selection as we don't support these browsers anyway

bzr revid: xmo@openerp.com-20130123092946-wgtvfz3493l7p7cw

11 years ago[FIX] pasting HTML content into the text box, then trying to navigate/alter it
Xavier Morel [Wed, 23 Jan 2013 09:16:00 +0000 (10:16 +0100)]
[FIX] pasting HTML content into the text box, then trying to navigate/alter it

Navigation implementation can only deal with straight text (and
asserts that), if HTML is pasted in a search input
InputView#getSelection will throw errors and refuse to act.

Clean up input content after a paste event, to ensure only plain text
is present so it can be navigated.

Don't forget to correctly re-set the cursor at the end of the input
data, otherwise the user will face various deep DOM errors when trying
to move around the input with the arrow keys (which he would usually
be able to do after a paste).

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

bzr revid: xmo@openerp.com-20130123091600-nd4rwqpin6qj8ult

11 years ago[FIX] move filter added at xmo@openerp.com-20130122135139-s3ui9hb44xd7afba to after map
Xavier Morel [Wed, 23 Jan 2013 08:44:22 +0000 (09:44 +0100)]
[FIX] move filter added at xmo@openerp.com-20130122135139-s3ui9hb44xd7afba to after map

If the filter is executed first, the "iteratee" is transformed to an
array (from an object) and the "key" is lost, replaced by the indices
to the array (and thus the name of the fields end up as "0", "1", "2",
... instead of their actual logical names)

bzr revid: xmo@openerp.com-20130123084422-tbl05l5j72sx528n

11 years ago[FIX] fixed a bug preventing the de-anonymization of the database
olt@tinyerp.com [Wed, 23 Jan 2013 07:30:05 +0000 (08:30 +0100)]
[FIX] fixed a bug preventing the de-anonymization of the database

bzr revid: olt@tinyerp.com-20130123073005-398u252n7082k0qy

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Wed, 23 Jan 2013 06:03:28 +0000 (06:03 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130123060246-kt475gbzoz4f1703
bzr revid: launchpad_translations_on_behalf_of_openerp-20130123060324-z9zt3oif6p20i6mp
bzr revid: launchpad_translations_on_behalf_of_openerp-20130123060328-e0rnct2yu9lh23vp

11 years ago[FIX]Set password mail on user create (auth_signup)
dle@openerp.com [Tue, 22 Jan 2013 14:59:25 +0000 (15:59 +0100)]
[FIX]Set password mail on user create (auth_signup)

bzr revid: dle@openerp.com-20130122145925-xmf04tevib4fj4lc

11 years ago[FIX] correctly remove existing needaction counter on reload
Vishmita [Tue, 22 Jan 2013 14:38:42 +0000 (15:38 +0100)]
[FIX] correctly remove existing needaction counter on reload

bzr revid: xmo@openerp.com-20130122143842-zv3tpd36glphrutu

11 years ago[FIX] correctly pass context to fields_get of advanced search so fields are correctly...
Xavier Morel [Tue, 22 Jan 2013 14:16:57 +0000 (15:16 +0100)]
[FIX] correctly pass context to fields_get of advanced search so fields are correctly translated & localized

bzr revid: xmo@openerp.com-20130122141657-sabov4ht6xp3so1a

11 years ago[IMP] search view: don't list deprecated fields in advanced search
Xavier Morel [Tue, 22 Jan 2013 13:51:39 +0000 (14:51 +0100)]
[IMP] search view: don't list deprecated fields in advanced search

bzr revid: xmo@openerp.com-20130122135139-s3ui9hb44xd7afba

11 years ago[FIX] Advanced search does not support local language.--fixes:lp1099833
Bhumi Thakkar (Open ERP) [Tue, 22 Jan 2013 12:13:32 +0000 (17:43 +0530)]
[FIX] Advanced search does not support local language.--fixes:lp1099833

bzr revid: bth@tinyerp.com-20130122121332-9iw75g5ddunzam58

11 years ago[FIX] menu items spilling out of secondary menu and into content area
Xavier Morel [Tue, 22 Jan 2013 11:20:40 +0000 (12:20 +0100)]
[FIX] menu items spilling out of secondary menu and into content area

bzr revid: xmo@openerp.com-20130122112040-4xnqzsz5c61upmji

11 years ago[FIX] account.invoice.report: search view should not OR the filters Invoice/Refund...
Olivier Dony [Tue, 22 Jan 2013 10:52:27 +0000 (11:52 +0100)]
[FIX] account.invoice.report: search view should not OR the filters Invoice/Refund filters with the Customer/Supplier ones

These filters are typically checked alternatively to obtain the
Customer Invoices or Customer Refunds or Supplier Invoices or
Supplier Refunds, so these 2 series of filters must be combined
with AND. This requires an extra separator in the search view.

bzr revid: odo@openerp.com-20130122105227-dbhltam9alfr8i9q

11 years ago[FIX] Add filter for deprecated in ExtendedSearchProposition.
Bhumi Thakkar (Open ERP) [Tue, 22 Jan 2013 10:28:57 +0000 (15:58 +0530)]
[FIX] Add filter for deprecated in ExtendedSearchProposition.

bzr revid: bth@tinyerp.com-20130122102857-86sbqqvlldxb2zhc

11 years ago[IMP] Allow to pass an initial url to the tracker
vta vta@openerp.com [Tue, 22 Jan 2013 09:40:04 +0000 (10:40 +0100)]
[IMP] Allow to pass an initial url to the tracker

bzr revid: vta@openerp.com-20130122094004-495mnx971rwia6vb

11 years ago[FIX] mail: js error to format author_id
Christophe Matthieu [Tue, 22 Jan 2013 08:12:10 +0000 (09:12 +0100)]
[FIX] mail: js error to format author_id

bzr revid: chm@openerp.com-20130122081210-r90809pxjpyggv7p

11 years ago[FIX][7.0]Fixed float_time widget show wrong format of time.
Anand Patel (OpenERP) [Tue, 22 Jan 2013 06:04:20 +0000 (11:34 +0530)]
[FIX][7.0]Fixed float_time widget show wrong format of time.

bzr revid: pan@tinyerp.com-20130122060420-7cho7hewmj80mb16

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Tue, 22 Jan 2013 05:31:31 +0000 (05:31 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130122053126-83zqktwur95krpav
bzr revid: launchpad_translations_on_behalf_of_openerp-20130118071115-y2843mxyuler6hek
bzr revid: launchpad_translations_on_behalf_of_openerp-20130121052757-d35pqy1p2am5fh9m
bzr revid: launchpad_translations_on_behalf_of_openerp-20130122053131-v8w8ndi4bzy750yj

11 years ago[FIX]Autovacuum force true
dle@openerp.com [Mon, 21 Jan 2013 15:03:18 +0000 (16:03 +0100)]
[FIX]Autovacuum force true

bzr revid: dle@openerp.com-20130121150318-o12a9o1y8olulz04

11 years ago[FIX]Uninstall : Savepoint before unlink
dle@openerp.com [Mon, 21 Jan 2013 10:22:45 +0000 (11:22 +0100)]
[FIX]Uninstall : Savepoint before unlink

bzr revid: dle@openerp.com-20130121102245-dkha32uistm3hgca

11 years ago[IMP] lunch filter and group_by
Arnaud Pineux [Mon, 21 Jan 2013 09:47:04 +0000 (10:47 +0100)]
[IMP] lunch filter and group_by

bzr revid: api@openerp.com-20130121094704-vorslpx9xlmdlzzf

11 years ago[IMP] Your lunch account is group_by user (+additional filter)
Arnaud Pineux [Mon, 21 Jan 2013 09:31:40 +0000 (10:31 +0100)]
[IMP] Your lunch account is group_by user (+additional filter)

bzr revid: api@openerp.com-20130121093140-m6dhv6kqlrocn9t6

11 years ago[IMP] Your lunch account is group_by user
Arnaud Pineux [Mon, 21 Jan 2013 09:16:32 +0000 (10:16 +0100)]
[IMP] Your lunch account is group_by user

bzr revid: api@openerp.com-20130121091632-jp8cqsoy35o61rwd

11 years ago[FIX] mail_followers: bug-1100691
Christophe Matthieu [Mon, 21 Jan 2013 08:53:11 +0000 (09:53 +0100)]
[FIX] mail_followers: bug-1100691

bzr revid: chm@openerp.com-20130121085311-n1nwcmviykdp7u0o

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Mon, 21 Jan 2013 05:27:54 +0000 (05:27 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130119063657-x4n6e50dn5dapwl3
bzr revid: launchpad_translations_on_behalf_of_openerp-20130120051711-l7ov76fat5jy5zzi
bzr revid: launchpad_translations_on_behalf_of_openerp-20130121052717-y8me1m61e5jawj09
bzr revid: launchpad_translations_on_behalf_of_openerp-20130119063730-1qb2f0t3ja3lfcp9
bzr revid: launchpad_translations_on_behalf_of_openerp-20130120051738-sa4uc0kj70qwxxw7
bzr revid: launchpad_translations_on_behalf_of_openerp-20130121052754-7hplv5713jf1mzh1

11 years ago[FIX] rst in mail
Xavier Morel [Fri, 18 Jan 2013 16:55:24 +0000 (17:55 +0100)]
[FIX] rst in mail

bzr revid: xmo@openerp.com-20130118165524-8vtor05ummjny24m

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Fri, 18 Jan 2013 07:10:51 +0000 (07:10 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130118071051-e8wytix67wlb17yd

11 years ago[FIX] web_analytics, better url and events
Antony Lesuisse [Thu, 17 Jan 2013 22:28:54 +0000 (23:28 +0100)]
[FIX] web_analytics, better url and events

bzr revid: al@openerp.com-20130117222854-3qgslzgn43kamr6l

11 years ago[REL] OpenERP 7.0 7.0-web
Olivier Dony [Thu, 17 Jan 2013 18:05:42 +0000 (19:05 +0100)]
[REL] OpenERP 7.0

Tag corresponding to the first 7.0 packages, published
on openerp.com on 2013/01/17

bzr revid: odo@openerp.com-20130117180542-gkrszxu9y5d9i5pj

11 years ago[FIX] hit box of menu items is large and can sometimes overflow the page content...
Bhumi Thakkar (Open ERP) [Tue, 15 Jan 2013 10:21:41 +0000 (15:51 +0530)]
[FIX] hit box of menu items is large and can sometimes overflow the page content on its right.--fixes:lp1098574

bzr revid: bth@tinyerp.com-20130115102141-wnu6rd323laxwhco

11 years ago[MERGE] Custom filters always overrides default searches
Fabien Meghazi [Mon, 14 Jan 2013 13:56:51 +0000 (14:56 +0100)]
[MERGE] Custom filters always overrides default searches

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

bzr revid: fme@openerp.com-20130114135651-38tzt8vit3ho1b8d

11 years ago[ADD] Backward compatibility layer for 7.0
Fabien Meghazi [Mon, 14 Jan 2013 13:51:45 +0000 (14:51 +0100)]
[ADD] Backward compatibility layer for 7.0

bzr revid: fme@openerp.com-20130114135145-z51tp204vybz0dr3

11 years ago[MERGE] tools.translate: fix extraction of translation terms from mako source files...
Olivier Dony [Mon, 14 Jan 2013 11:28:31 +0000 (12:28 +0100)]
[MERGE] tools.translate: fix extraction of translation terms from mako source files, courtesy of Niels Huylebroeck (Agaplan)

bzr revid: odo@openerp.com-20130114112831-87gmdtqzaa55zssf

11 years ago[FIX] Fix one custom filter bug (only scratch the surface of this problem)
Fabien Meghazi [Mon, 14 Jan 2013 09:30:14 +0000 (10:30 +0100)]
[FIX] Fix one custom filter bug (only scratch the surface of this problem)

bzr revid: fme@openerp.com-20130114093014-5sv1sfk5u2uemwlr

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Sun, 13 Jan 2013 05:27:54 +0000 (05:27 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130112054101-c5eckujyiswinr8d
bzr revid: launchpad_translations_on_behalf_of_openerp-20130113052754-t9fjhcoa1ug7g2ww

11 years ago[FIX] lunch: everyday alerts were never displayed
Olivier Dony [Fri, 11 Jan 2013 18:45:24 +0000 (19:45 +0100)]
[FIX] lunch: everyday alerts were never displayed

bzr revid: odo@openerp.com-20130111184524-izvjoiwwnir7kro7

11 years ago[FIX] account_followup: fix incorrect parameters passed to context_today()
Olivier Dony [Fri, 11 Jan 2013 18:42:26 +0000 (19:42 +0100)]
[FIX] account_followup: fix incorrect parameters passed to context_today()

bzr revid: odo@openerp.com-20130111184226-q4w133x1i7cjsthr

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Mon, 14 Jan 2013 05:18:17 +0000 (05:18 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130112054058-8axv6o0qb0xnmx0w
bzr revid: launchpad_translations_on_behalf_of_openerp-20130113052752-ek3mq7hoe2mj4zyt
bzr revid: launchpad_translations_on_behalf_of_openerp-20130114051817-ltnyu6jl4nxctf8t

11 years ago[FIX] apps: make warning messages translatable
Olivier Dony [Fri, 11 Jan 2013 17:59:05 +0000 (06:59 +1300)]
[FIX] apps: make warning messages translatable

bzr revid: odo@openerp.com-20130111175905-a50b1adne55dekrt

11 years ago[FIX] fields.date[time]: context_today()/context_timestamp() should fallback to user...
Olivier Dony [Fri, 11 Jan 2013 17:57:17 +0000 (06:57 +1300)]
[FIX] fields.date[time]: context_today()/context_timestamp() should fallback to user TZ if context TZ is missing

This takes care of cases where the context is missing,
e.g. for workflow-based operations, and is similar
to the way tools.translate._() falls back to the user
language.

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

bzr revid: odo@openerp.com-20130111175717-u8r1t7s8872bz2rx

11 years ago[FIX] ir.mail_server: correct fallback to smtp parameters provided in server config...
Olivier Dony [Fri, 11 Jan 2013 16:12:01 +0000 (05:12 +1300)]
[FIX] ir.mail_server: correct fallback to smtp parameters provided in server config/command-line

bzr revid: odo@openerp.com-20130111161201-3w8o2voiauxyvxzz

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Mon, 14 Jan 2013 05:17:37 +0000 (05:17 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130112054022-r3v2m3r8ftr373kl
bzr revid: launchpad_translations_on_behalf_of_openerp-20130113052739-ol5rj9c4s6r9u6gh
bzr revid: launchpad_translations_on_behalf_of_openerp-20130114051737-tqxmwkgixvl7dxd8

11 years ago[FIX] res_partner: kanban view : update contact avatar on edit mode (for company...
Christophe Matthieu [Fri, 11 Jan 2013 14:54:59 +0000 (15:54 +0100)]
[FIX] res_partner: kanban view : update contact avatar on edit mode (for company partner)

bzr revid: chm@openerp.com-20130111145459-e2rp9o3bmh2p679i

11 years ago[MERGE] point_of_sale: console.log removals and comments update
Frédéric van der Essen [Fri, 11 Jan 2013 14:47:59 +0000 (15:47 +0100)]
[MERGE] point_of_sale: console.log removals and comments update

bzr revid: fva@openerp.com-20130111144759-k1qpnhqpylwc1l20

11 years ago[MERGE] from upstream
Frédéric van der Essen [Fri, 11 Jan 2013 14:47:13 +0000 (15:47 +0100)]
[MERGE] from upstream

bzr revid: fva@openerp.com-20130111144713-w8xh4nilg049c834

11 years ago[FIX] point_of_sale: removed console.logs
Frédéric van der Essen [Fri, 11 Jan 2013 14:42:55 +0000 (15:42 +0100)]
[FIX] point_of_sale: removed console.logs

bzr revid: fva@openerp.com-20130111144255-cgs85ue7hsp5ces7

11 years ago[FIX] point_of_sale: removed console.logs
Frédéric van der Essen [Fri, 11 Jan 2013 14:42:19 +0000 (15:42 +0100)]
[FIX] point_of_sale: removed console.logs

bzr revid: fva@openerp.com-20130111144219-eg0xr5kzwewq5ygf

11 years ago[IMP] point_of_sale: added some comments about the localstorage db implementation...
Frédéric van der Essen [Fri, 11 Jan 2013 14:41:08 +0000 (15:41 +0100)]
[IMP] point_of_sale: added some comments about the localstorage db implementation and performance

bzr revid: fva@openerp.com-20130111144108-5u4ie3p9ueoj6ulm

11 years ago[FIX] account: when editing an account.move, don't crash at the creation of account...
Quentin (OpenERP) [Fri, 11 Jan 2013 13:54:26 +0000 (14:54 +0100)]
[FIX] account: when editing an account.move, don't crash at the creation of account.move.line because the date isn't given, if it already exists in the parent move

bzr revid: qdp-launchpad@openerp.com-20130111135426-f68wteyccd3nqani

11 years ago[FIX] sale: in config wizard, do not assume the 'service' product hasn't been deleted...
Quentin (OpenERP) [Fri, 11 Jan 2013 13:25:31 +0000 (14:25 +0100)]
[FIX] sale: in config wizard, do not assume the 'service' product hasn't been deleted by the user

bzr revid: qdp-launchpad@openerp.com-20130111132531-z7rapvvuk2kaqw8a

11 years ago[IMP] Change custom variable initialization in web_analytics
vta vta@openerp.com [Fri, 11 Jan 2013 13:29:44 +0000 (14:29 +0100)]
[IMP] Change custom variable initialization in web_analytics

bzr revid: vta@openerp.com-20130111132944-1q171v9fjtei5b36

11 years ago[FIX] base: GBP currency symbol should be before the amount
Quentin (OpenERP) [Fri, 11 Jan 2013 11:40:12 +0000 (12:40 +0100)]
[FIX] base: GBP currency symbol should be before the amount

bzr revid: qdp-launchpad@openerp.com-20130111114012-xm19xp9glbn3qnn2

11 years ago[FIX] project: the gantt view of tasks was not usable because of missing fields....
Quentin (OpenERP) [Fri, 11 Jan 2013 09:47:24 +0000 (10:47 +0100)]
[FIX] project: the gantt view of tasks was not usable because of missing fields. Some refactoring in the view definition

bzr revid: qdp-launchpad@openerp.com-20130111094724-ae06x08viklkqvch

11 years ago[FIX] Fixed issue with testing context in eval.js, due to a previous change in get_se...
vta vta@openerp.com [Fri, 11 Jan 2013 09:43:14 +0000 (10:43 +0100)]
[FIX] Fixed issue with testing context in eval.js, due to a previous change in get_session_info (context -> user_context)

bzr revid: vta@openerp.com-20130111094314-odrm9enzrmcrtcu6

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Fri, 11 Jan 2013 05:22:08 +0000 (05:22 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130108060408-8nb3941v15q9ybdf
bzr revid: launchpad_translations_on_behalf_of_openerp-20130109055200-8b1ngo68e9purey3
bzr revid: launchpad_translations_on_behalf_of_openerp-20130110053544-j7oyp5nohajb0nj8
bzr revid: launchpad_translations_on_behalf_of_openerp-20130111052135-l323k3ttzdy0o9km
bzr revid: launchpad_translations_on_behalf_of_openerp-20130111052208-h19znnqin0y82wvx

11 years ago[FIX] mail_thread subclasses: message_new must not override the explicitly provided...
Olivier Dony [Thu, 10 Jan 2013 17:27:23 +0000 (18:27 +0100)]
[FIX] mail_thread subclasses: message_new must not override the explicitly provided ``custom_values``

This was the case before, but was broken involuntarily during the
big mail refactoring for v7. The default values provided by
custom message_new methods should only be used as defaults.

bzr revid: odo@openerp.com-20130110172723-ym7mcmdllcucj0j3

11 years ago[FIX] contracts: use correct quantity field to avoid mismatching values
Olivier Dony [Thu, 10 Jan 2013 17:11:00 +0000 (18:11 +0100)]
[FIX] contracts: use correct quantity field to avoid mismatching values

`quantity` is a recursive sum of quantities of all types, including child accounts,
while `hours_quantity` is the local sum of quantities in `general` analytic journals.
The latter is what corresponds to the `Units consumed` value for contracts, and what
is used to compute the `remaining_hours`, so we must used that.

bzr revid: odo@openerp.com-20130110171100-el2g1i3ou89p2yjc

11 years ago[FIX]Add ondelete casacde to alias_model_id for mail_alias, otherwise impossible...
dle@openerp.com [Thu, 10 Jan 2013 17:09:06 +0000 (18:09 +0100)]
[FIX]Add ondelete casacde to alias_model_id for mail_alias, otherwise impossible to uninstall project properly

bzr revid: dle@openerp.com-20130110170906-mw0u5d92rv4j2f88

11 years ago[MERGE] mail: fix UnboundLocalError in message_create_partners_from_emails() if partn...
Xavier ALT [Thu, 10 Jan 2013 14:55:09 +0000 (15:55 +0100)]
[MERGE] mail: fix UnboundLocalError in message_create_partners_from_emails() if partners with requested emails already exists

bzr revid: xal@openerp.com-20130110145509-p346qphqk67emd3r

11 years ago[FIX] partner_id was only present in an else clause and not in the corresponding...
Chris Biersbach [Thu, 10 Jan 2013 13:42:40 +0000 (14:42 +0100)]
[FIX] partner_id was only present in an else clause and not in the corresponding if. This caused a traceback when the if was executed.

bzr revid: cbi@openerp.com-20130110134240-0jveuv3pnmn75nu1

11 years ago[FIX] Handle correctly webclient's show_application execution in web_analytics
vta vta@openerp.com [Thu, 10 Jan 2013 08:47:00 +0000 (09:47 +0100)]
[FIX] Handle correctly webclient's show_application execution in web_analytics

bzr revid: vta@openerp.com-20130110084700-curkkezb5333edai

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Thu, 10 Jan 2013 05:36:32 +0000 (05:36 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130110053628-en17csgzy8b6qhla
bzr revid: launchpad_translations_on_behalf_of_openerp-20130110053632-tqct04tynt3d52ok

11 years ago[FIX] html widget: fix cleditor width when the field was invisible before becoming...
Fabien Meghazi [Wed, 9 Jan 2013 16:46:26 +0000 (17:46 +0100)]
[FIX] html widget: fix cleditor width when the field was invisible before becoming editable

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

bzr revid: odo@openerp.com-20130109164626-1a16vqmwc366n0xf

11 years ago[IMP] css: made the fallback color for gradients a mix of the endcolors instead of...
Frédéric van der Essen [Wed, 9 Jan 2013 13:18:48 +0000 (14:18 +0100)]
[IMP] css: made the fallback color for gradients a mix of the endcolors instead of simply the start. Why? Because it's a better fallback of course.

bzr revid: fva@openerp.com-20130109131848-z3t8ad2qadypcduv

11 years ago[IMP] Merged bzr+ssh://bazaar.launchpad.net/~openerp-dev/openobject-addons/7.0-improv...
vta vta@openerp.com [Wed, 9 Jan 2013 11:15:08 +0000 (12:15 +0100)]
[IMP] Merged bzr+ssh://bazaar.launchpad.net/~openerp-dev/openobject-addons/7.0-improve_web_analytics-vta containing several improvements on web_analytics module

bzr revid: vta@openerp.com-20130109111508-o0s4ocpu0q4236b9

11 years ago[FIX] web_analytics auto_install=False, again
vta vta@openerp.com [Wed, 9 Jan 2013 11:00:43 +0000 (12:00 +0100)]
[FIX] web_analytics auto_install=False, again

bzr revid: vta@openerp.com-20130109110043-fxndrl90l0cl4rua

11 years ago[FIX] Pass the right object when binding to 'state_pushed'
vta vta@openerp.com [Wed, 9 Jan 2013 10:24:29 +0000 (11:24 +0100)]
[FIX] Pass the right object when binding to 'state_pushed'

bzr revid: vta@openerp.com-20130109102429-2k33nl3nwg3p0cna

11 years ago[FIX] Forgotten ',' and issue on calling _push_event
vta vta@openerp.com [Wed, 9 Jan 2013 09:50:49 +0000 (10:50 +0100)]
[FIX] Forgotten ',' and issue on calling _push_event

bzr revid: vta@openerp.com-20130109095049-4gb392x20iius6pj

11 years ago[FIX] kanban view: css change for title elipsis
Christophe Matthieu [Wed, 9 Jan 2013 09:44:51 +0000 (10:44 +0100)]
[FIX] kanban view: css change for title elipsis

bzr revid: chm@openerp.com-20130109094451-0exhihw3f91o466s

11 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Wed, 9 Jan 2013 05:52:50 +0000 (05:52 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20130109055250-wxy0mw21gmbainhu

11 years ago[MERGE] css improvements for etherpad and notes
Frédéric van der Essen [Tue, 8 Jan 2013 17:53:25 +0000 (18:53 +0100)]
[MERGE] css improvements for etherpad and notes

bzr revid: fva@openerp.com-20130108175325-4d4kw7i6t18oox5b

11 years ago[MERGE] from upstream
Frédéric van der Essen [Tue, 8 Jan 2013 17:52:16 +0000 (18:52 +0100)]
[MERGE] from upstream

bzr revid: fva@openerp.com-20130108175216-qsvgflz81jur21vu

11 years ago[IMP] css: made the styling of the note's content constistant with the styling of...
Frédéric van der Essen [Tue, 8 Jan 2013 17:20:57 +0000 (18:20 +0100)]
[IMP] css: made the styling of the note's content constistant with the styling of the etherpad editor

bzr revid: fva@openerp.com-20130108172057-8xmwdhfg3izkqbdf

11 years ago[FIX] OpenChatter: unknown emails becoming followers was not taken into account when...
Thibault Delavallée [Tue, 8 Jan 2013 16:50:10 +0000 (17:50 +0100)]
[FIX] OpenChatter: unknown emails becoming followers was not taken into account when using the mail.compose.message wizard.
When having emails not related to a partner in a discussion thread, checkboxes appear that allow to create a partner that will be added as follower to the related document, if any. This now works either in the quik reply box, or the full composer.

bzr revid: tde@openerp.com-20130108165010-hkhd45ube5s081i5

11 years ago[FIX] problem when multiple instances of the web client run in tabs and we disconnect...
niv-openerp [Tue, 8 Jan 2013 16:41:04 +0000 (17:41 +0100)]
[FIX] problem when multiple instances of the web client run in tabs and we disconnect from one tab, now displays a better error message

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

bzr revid: nicolas.vanhoren@openerp.com-20130108164104-7wv2yxlrczqmicvb