Commit Graph

51557 Commits

Author SHA1 Message Date
Thibault Delavallée 2a61424ddb [FIX] mail, crm demo data: back to noupdate.
bzr revid: tde@openerp.com-20121116081657-kyua3pggy84awx4p
2012-11-16 09:16:57 +01:00
Thibault Delavallée 760da18368 [MERGE] Sync with trunk.
bzr revid: tde@openerp.com-20121116081533-k18e3rnl3u5mng06
2012-11-16 09:15:33 +01:00
Xavier Morel 09037e8a42 [REM] failing test code
committed by mistake

bzr revid: xmo@openerp.com-20121116073738-9f43bm0q6eojns3v
2012-11-16 08:37:38 +01:00
Xavier Morel d632471f64 [IMP] web test runner: pass execute's arguments to the function to avoid duplication
bzr revid: xmo@openerp.com-20121116072906-0di2j83p602a2l9i
2012-11-16 08:29:06 +01:00
Xavier Morel a9645151b6 [IMP] setup & teardown of test runner
simplify code and make setup & teardown processes more reliable

add testing.Stack tools which stacks promise-returning functions
around the actual promise-returning function to execute (the test case
itself).

testing.Stack returns an object with 3 methods, ``push([setup][,
teardown])``, ``unshift([setup][, teardown])`` and ``execute(fn,
*args)``. ``push`` and ``unshift`` create a new stack with the
provided setup and teardown added respectively at the top and bottom
of the stack.

``execute`` will walk the stack from bottom to top executing ``setup``
handlers (and waiting on their result), if all setup handlers execute
without failure the ``fn`` callback gets executed (and waited on) then
*all* ``teardown`` handlers are executed from top to bottom:

 |  setup
 |    setup
 |      setup
 |        setup
 |          fn
 |        teardown
 |      teardown
 |    teardown
 V  teardown

If a ``setup`` handler fails (the promise is rejected), teardowns will
start executing *from the previous level* (so the ``teardown``
matching the failed ``setup`` will *not* be run), but all
``teardowns`` below that will be run regardless, even if one fails the
next one will still be executed.

The stack will either ultimately return a promise rejection using the
*first* rejection it got (a rejection may be cascading, so the
rejection of a setup may also lead to or be linked to a teardown being
rejected later), or will return the resolution from ``fn``.

If ``execute`` is passed further arguments, those arguments will in
turn be forwarded to ``fn`` as well as all ``setup`` and ``teardown``
handlers.

bzr revid: xmo@openerp.com-20121116071712-zuld957icellezum
2012-11-16 08:17:12 +01:00
Launchpad Translations on behalf of openerp 3c8626efbb Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20121116043620-snye1y94q79vggx4
2012-11-16 04:36:20 +00:00
Fabien Pinckaers fa93a1d65e [IMP] demo data
bzr revid: fp@openerp.com-20121115222751-y25pkf50caeajwg1
2012-11-15 23:27:51 +01:00
Fabien Pinckaers 3a8353a302 [IMP] demo data
bzr revid: fp@openerp.com-20121115220945-fws0ue11f9d05ttj
2012-11-15 23:09:45 +01:00
Fabien Pinckaers ae5f46af63 [IMP] dmeo data mail
bzr revid: fp@openerp.com-20121115204322-w4ry0ky4cna5t96c
2012-11-15 21:43:22 +01:00
Fabien Pinckaers 86be41b250 imp
bzr revid: fp@openerp.com-20121115195103-1b3v4quw0dllyyh1
2012-11-15 20:51:03 +01:00
Fabien Pinckaers f6ee56a083 [IMP] better demo data
bzr revid: fp@openerp.com-20121115194817-7c8sbmqymczovcra
2012-11-15 20:48:17 +01:00
Thibault Delavallée 8539249bdb [IMP] mail, crm: demo data largely updated.
bzr revid: tde@openerp.com-20121115182641-99ndilbr5m4x1oft
2012-11-15 19:26:41 +01:00
Fabien Meghazi 8c2764115f [FIX?] Probably fix something... ? See previous revision.
bzr revid: fme@openerp.com-20121115182331-0vz3beb6x2od9xhs
2012-11-15 19:23:31 +01:00
Thibault Delavallée 99c1145d81 [MERGE] Sync with trunk.
bzr revid: tde@openerp.com-20121115131824-60tl5f9hvxpca827
bzr revid: tde@openerp.com-20121115181930-ypj3zbdhg9bvcdf5
2012-11-15 19:19:30 +01:00
Fabien Meghazi cf2d4581be [FIX] Broken kanban images
bzr revid: fme@openerp.com-20121115181730-plfvy8ok9uykvu97
2012-11-15 19:17:30 +01:00
Thibault Delavallée 1201be06d0 [FIX] fetchmail: incoming emails on res.users does not lead to a crash anymore, due to missing mail.thread methods in res.users. The partner is also correctly added in recipients.
bzr revid: tde@openerp.com-20121115175404-pflf7lf5s5spalbu
2012-11-15 18:54:04 +01:00
Fabien Meghazi 2b7bfe4ecd [IMP] openerp logo img border 0 for IE
Can't merge nwi's branch right now so I do the bare minimum that hurts eyes

bzr revid: fme@openerp.com-20121115175146-5zn97xz8w3m5l5rx
2012-11-15 18:51:46 +01:00
Fabien Meghazi 79e1118c16 [IMP] Clean base.sass folding sections
bzr revid: fme@openerp.com-20121115173614-o5pchmm889yxz5cy
2012-11-15 18:36:14 +01:00
Thibault Delavallée 54090e8d92 [FIX] incomign email on a partner: fixed auto-inclusion of destination partner in recipients.
bzr revid: tde@openerp.com-20121115171830-0el4jrt1gjmtrts1
2012-11-15 18:18:30 +01:00
Denis Ledoux dle@openerp.com a7c62c72ee [MERGE]trunk-bug-1077138-dle fix web shortcut
bzr revid: dle@openerp.com-20121115171413-18n22483nungxqda
2012-11-15 18:14:13 +01:00
Christophe Simonis 801927cb14 [FIX] make root menu links works
bzr revid: chs@openerp.com-20121115171201-76y7ul1jhjyi2e78
2012-11-15 18:12:01 +01:00
Fabien Meghazi cace9f7887 [IMP] Centralized 'openerp' class on top level elements. Also add openerp_ie class for MSIE
bzr revid: fme@openerp.com-20121115164132-i6a0u8zk3knm1zkv
2012-11-15 17:41:32 +01:00
Vo Minh Thu 071de66193 [FIX] base_import: added security csv file in __openerp__.py.
bzr revid: vmt@openerp.com-20121115163756-vfocdshvwo524dya
2012-11-15 17:37:56 +01:00
Vo Minh Thu 724f452f1e [IMP] fleet/porta/account_budget: removed some initialization warnings.
bzr revid: vmt@openerp.com-20121115160643-lc0b07n6xiaq1rl3
2012-11-15 17:06:43 +01:00
Denis Ledoux dle@openerp.com e72542b6ec [FIX]Reload whole favorites (by rpc call) instead of adding the new one, otherwise the name of the new starred item is not structured like the other ones
lp bug: https://launchpad.net/bugs/1077138 fixed

bzr revid: dle@openerp.com-20121115160550-p5kc3j8swxu3lfv0
2012-11-15 17:05:50 +01:00
Thibault Delavallée 0cde689fa9 [FIX] fetchmail: fixed sending email on res.users aliases. This is done by using the message_update method of the related partner.
bzr revid: tde@openerp.com-20121115160008-gpz50ryhdw7h3f8b
2012-11-15 17:00:08 +01:00
Denis Ledoux dle@openerp.com bba12d9e95 [FIX]wrong out id when adding shortcut to system tray list
lp bug: https://launchpad.net/bugs/1077138 fixed

bzr revid: dle@openerp.com-20121115155708-vbz1djvtp15dit78
2012-11-15 16:57:08 +01:00
Arnaud Pineux 15281138ea [FIX] crypt and openid
lp bug: https://launchpad.net/bugs/1026784 fixed

bzr revid: api@openerp.com-20121115153056-ayj1do22pllon9ud
2012-11-15 16:30:56 +01:00
Vo Minh Thu d05a945fc5 [IMP] lunch: removed a few initialization warnings.
bzr revid: vmt@openerp.com-20121115152557-3lroffi0dtar3rs4
2012-11-15 16:25:57 +01:00
Arnaud Pineux 87899acfa8 [FIX] openID and Crypt
lp bug: https://launchpad.net/bugs/1026784 fixed

bzr revid: api@openerp.com-20121115151410-b2mey3wystp5zha0
2012-11-15 16:14:10 +01:00
Christophe Simonis 69f385414a [FIX] manifest_glob return path with / for web part
bzr revid: chs@openerp.com-20121115151228-xzrlpjxwkspf5fgz
2012-11-15 16:12:28 +01:00
Fabien Meghazi 8a3d2c4744 [FIX] For act window target new, always use a new dialog object
Buttons footer hack in dialogs makes reusability of dialog impossible

bzr revid: fme@openerp.com-20121115151046-0r8xz85racjta7p3
2012-11-15 16:10:46 +01:00
Arnaud Pineux 27c672b1fc [FIX]
bzr revid: api@openerp.com-20121115150945-6zf30o1hk56bv5sf
2012-11-15 16:09:45 +01:00
Vo Minh Thu d2bb377b61 [FIX] fleet: removed unexisting field.
bzr revid: vmt@openerp.com-20121115145547-9f2y8nvh2d1qhjpn
2012-11-15 15:55:47 +01:00
Denis Ledoux dle@openerp.com 3dae59cabd [FIX]7.0 bookmark module - not working correctly
lp bug: https://launchpad.net/bugs/1077138 fixed

bzr revid: dle@openerp.com-20121115144455-gdpss6sp4ul5zut3
2012-11-15 15:44:55 +01:00
Christophe Matthieu dec6ad872a [FIX] kanban view: Change css (float => inline-block) to avoid holes in the kanban view
bzr revid: chm@openerp.com-20121115143059-13992jd2sxn9tr74
2012-11-15 15:30:59 +01:00
Frédéric van der Essen b7bb7e6246 [IMP] added a .ie class on <html> when using ie <= 9
bzr revid: fva@openerp.com-20121115143047-utonsnq0iadbvmyt
2012-11-15 15:30:47 +01:00
Christophe Matthieu 6fd4765e07 [FIX] web form: one2many_binary accept the values like one2many field (ids, objects, tuple)
bzr revid: chm@openerp.com-20121115142249-jd3x25lmrtq6cf3f
2012-11-15 15:22:49 +01:00
Arnaud Pineux bc35c05961 [FIX] compatibility between auth_openid and base_crypt
lp bug: https://launchpad.net/bugs/1026784 fixed

bzr revid: api@openerp.com-20121115142203-13s6zw6yxpfkfzmj
2012-11-15 15:22:03 +01:00
Arnaud Pineux 374daa28b5 [FIX] compatibility between auth_openid and base_crypt
lp bug: https://launchpad.net/bugs/1026784 fixed

bzr revid: api@openerp.com-20121115141954-axiv3hq7tg5jozox
2012-11-15 15:19:54 +01:00
Vo Minh Thu 1fcdb5adbe [FIX]
Original location of the field has been changed. Maximum sales, events, and
fields. If not specified the Aformentioned fields runbot 'still doesn' t ' t
like it.

bzr revid: vmt@openerp.com-20121115140337-4tqplv17th4hs0l5
2012-11-15 15:03:37 +01:00
Christophe Matthieu 48fc5bb6ef [MERGE] from trunk
bzr revid: chm@openerp.com-20121115140009-s4uj0saecwtq19nx
2012-11-15 15:00:09 +01:00
Christophe Matthieu 6807a2e07c [IMP] web form: FieldOne2ManyBinaryMultiFiles no delete file on set value
bzr revid: chm@openerp.com-20121115135904-17rg7j5g8xu4rjvn
2012-11-15 14:59:04 +01:00
Olivier Dony e5921325bd [REM] mail.compose.wizard: remove unused body_text and content_subtype fields
These fields were used in pre-7.0 to manage the plaintext variant of the 
mail being composed, but as of 7.0 the composition wizard will always
use the HTML/Rich text mode, so they can be dropped.

bzr revid: odo@openerp.com-20121115135634-fcy6mexnctwg0nxb
2012-11-15 14:56:34 +01:00
Olivier Dony c558ac6272 [MERGE] Sync with trunk
bzr revid: odo@openerp.com-20121114172252-q1xj3hdugqhky532
bzr revid: odo@openerp.com-20121115135141-ia8uf5649rapj0v7
2012-11-15 14:51:41 +01:00
Fabien Meghazi f842d8dba1 [FIX] When action returns other value than an action, close current dialog if any
bzr revid: fme@openerp.com-20121115134207-n0q1vae1wuga5jc7
2012-11-15 14:42:07 +01:00
Thibault Delavallée 3571ad2a70 [MERGE] Fixes some posting/email_template issues. Also cleans an old hack about res.users view redirected to its related res.partner.
Addons-side:
- res.users wraps the 2 posting methods, because mailboxes are still related to the user, not the partner, due to some technical issues
- mail.compose.message using email_template: _reopen is back, as the spec of a wizard should be that hitting a button close it. Therefore _reopen is necessaru to reopen the wizard with its previous value, to continue working on it.

bzr revid: tde@openerp.com-20121115125113-oxn2vwunsvkinxkd
2012-11-15 13:51:13 +01:00
Thibault Delavallée da9951baf9 [CLEAN] removed a commented statement, fixed a var name in js.é
bzr revid: tde@openerp.com-20121115124931-w20igi8qk66uvnj0
2012-11-15 13:49:31 +01:00
Arnaud Pineux fd38df4da5 [test]
bzr revid: api@openerp.com-20121115123851-sza4b5u0bwxlvdct
2012-11-15 13:38:51 +01:00
Arnaud Pineux c196424dca [TEST]
bzr revid: api@openerp.com-20121115123005-0cwt6402sj1hbecm
2012-11-15 13:30:05 +01:00
Christophe Matthieu 64e46a1e0e [IMP] web form: one2many_binary accept all values one2any and default values
bzr revid: chm@openerp.com-20121115122834-5vo00jagzvysti1a
2012-11-15 13:28:34 +01:00
Thibault Delavallée 81d4467c8f [REV] mail.compose.message using email_template: _reopen is back, as the spec of a wizard should be that hitting a button close it. Therefore _reopen is necessaru to reopen the wizard with its previous value, to continue working on it.
bzr revid: tde@openerp.com-20121115122406-d88ozw5iclsqdyff
2012-11-15 13:24:06 +01:00
Christophe Simonis 6227e4b5c0 [FIX] CrashManager do not have destroy() method
bzr revid: chs@openerp.com-20121115120331-ltujwzobh19muygl
2012-11-15 13:03:31 +01:00
Vo Minh Thu d1f49ab27a [IMP] removing some warnings (those one are generated by tests).
bzr revid: vmt@openerp.com-20121115115916-6i2ljxn7s9qz4rlv
2012-11-15 12:59:16 +01:00
Cedric Snauwaert 6fe34606ad [FIX]account_asset: fix problem when we validate the last depreciation line it was closing the asset without checking if all depreciation lines was validated
lp bug: https://launchpad.net/bugs/939390 fixed

bzr revid: csn@openerp.com-20121115110448-y0csyrbgpexam0kt
2012-11-15 12:04:48 +01:00
Fabien Pinckaers c2667f13ad [IMP] Inverting personnal tasks and notes importancies
bzr revid: fp@tinyerp.com-20121115104345-1dkpg3rrk2j84wnj
2012-11-15 11:43:45 +01:00
Cedric Snauwaert 5f8a80b6ed [MERGE]merge with latest trunk
bzr revid: csn@openerp.com-20121114150444-ln31zd8xviertuix
bzr revid: csn@openerp.com-20121114154440-v1bvkcv8e200pzk6
bzr revid: csn@openerp.com-20121115082548-2cglduje937vv96t
bzr revid: csn@openerp.com-20121115104106-4oop97qp93fcz47b
2012-11-15 11:41:06 +01:00
Fabien Pinckaers c6b5ca0a07 [FIX] typo in a message
bzr revid: fp@tinyerp.com-20121115103947-zre3ja8ghnojesd1
2012-11-15 11:39:47 +01:00
Thibault Delavallée dfa48f425d [MERGE] Sync with trunk, because of the last fixes to have a green runbot.
bzr revid: tde@openerp.com-20121115103816-8m7f0zxujczjwx2a
2012-11-15 11:38:16 +01:00
Christophe Matthieu cd5490aec2 [IMP] mail: merge the sent menu and the archives menu
bzr revid: chm@openerp.com-20121115103624-ilkh0ys3w6a0t8f2
2012-11-15 11:36:24 +01:00
Thibault Delavallée 15b23a76ae [REM] Chatter: removed unused template in xml.
bzr revid: tde@openerp.com-20121115103501-wt837acx8kj1ycht
2012-11-15 11:35:01 +01:00
niv-openerp d3cf004bae [IMP] web_linkedin: adapted to new linkedin api
bzr revid: nicolas.vanhoren@openerp.com-20121115102741-9vzb8qprvrh1lsmz
2012-11-15 11:27:41 +01:00
Christophe Matthieu f3bba6c77b [FIX] mail: do not convert text on html when the user post a message with the widget to message_post_api
bzr revid: chm@openerp.com-20121115102522-sicesckcupbh1nnc
2012-11-15 11:25:22 +01:00
Fabien Pinckaers 8fe036423c [FIX] show of image groups
bzr revid: fp@tinyerp.com-20121115102522-jquurlypugesxu1e
2012-11-15 11:25:22 +01:00
Fabien Pinckaers d530905b93 [IMP] Add default filter on groups
bzr revid: fp@tinyerp.com-20121115102223-i2jgjkgqf9pxez08
2012-11-15 11:22:23 +01:00
Olivier Dony bd494ad7f4 [FIX] project_issue: missing module prefix when updating project demo data
Fixes test breakage by FP - commit 8045
revision-id: fp@openerp.com-20121114224452-4djljq2ny7f1lumx

bzr revid: odo@openerp.com-20121115101329-3d2epoctqwkq9mlq
2012-11-15 11:13:29 +01:00
Christophe Matthieu 3918c05a37 [MERGE] from trunk
bzr revid: chm@openerp.com-20121115101056-m96xojis7lky8xcn
2012-11-15 11:10:56 +01:00
Fabien Pinckaers 2cfef36846 [MERGE] improved welcome messages and mail css
bzr revid: fp@tinyerp.com-20121115100740-3pbot8zfu64s4ods
2012-11-15 11:07:40 +01:00
Christophe Matthieu 3f655858d8 [IMP] mail: the placeholder of textarea on compose message can be custom with an attribute placeholder on the field
bzr revid: chm@openerp.com-20121115100542-7gigxjnxjloqt8ue
2012-11-15 11:05:42 +01:00
Thibault Delavallée 9aec899257 [FIX] Chatter: fixed rpely to a lonely message, that was badly indented.
bzr revid: tde@openerp.com-20121115100533-ly99op6fpfrzp9jw
2012-11-15 11:05:33 +01:00
Thibault Delavallée 25c684b171 [FIX] Chatter: fixed posting on user/partner. Cleaned a bit default options of mail.js.
bzr revid: tde@openerp.com-20121115095400-u7h6rw8ltp0xprtt
2012-11-15 10:54:00 +01:00
Thibault Delavallée 71c2be227c [IMP] mail: updated tests to fit the new composer behavior.
bzr revid: tde@openerp.com-20121115095329-whh6z7ckto87yven
2012-11-15 10:53:29 +01:00
Thibault Delavallée edb1e07948 [FIX] composer: default content subtype is html (note that plaintext management will be removed asap), name_get is now using an id list instead of a single id.
bzr revid: tde@openerp.com-20121115095309-zu4m6nzndlpmfe5b
2012-11-15 10:53:09 +01:00
Christophe Matthieu 739775253f [FIX] web: FieldOne2ManyBinaryMultiFiles fix the loading for default ids files list
bzr revid: chm@openerp.com-20121115092149-lsbxb9ougxwkkktn
2012-11-15 10:21:49 +01:00
Xavier Morel 8e85f4e0bd [IMP] timeout discipline
* Global timeout significantly increased to correctly handle e.g. db creation and teardown
* Per-test timeout brought back down to 2s

bzr revid: xmo@openerp.com-20121115091501-ys8opo0ccr3dq29h
2012-11-15 10:15:01 +01:00
Cedric Snauwaert 9c5a9af603 [FIX]fix logo of fleet
bzr revid: csn@openerp.com-20121115085250-c3pkhoyli2jc2xbc
2012-11-15 09:52:50 +01:00
Fabien Pinckaers 0cca84f1f7 [IMP] views
bzr revid: fp@tinyerp.com-20121115083400-i18b1yxfkq6j7y70
2012-11-15 09:34:00 +01:00
Launchpad Translations on behalf of openerp 9460e71cbe Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20121115044251-4ql7e59s542i5lu5
bzr revid: launchpad_translations_on_behalf_of_openerp-20121115050925-civsadyc1h0n4oew
2012-11-15 05:09:25 +00:00
Antony Lesuisse 9bf94f677d [IMP] http session cleanup with gc
bzr revid: al@openerp.com-20121115011853-238vzfca9ssbiyi7
2012-11-15 02:18:53 +01:00
Antony Lesuisse 7629191431 [MERGE] manual merge parts of chs owp
bzr revid: al@openerp.com-20121114233743-u9499fa3eugw94zi
2012-11-15 00:37:43 +01:00
Antony Lesuisse ba22c50e12 doc remove dev_ internal_ dichotomy tutorial will replace dev_
bzr revid: al@openerp.com-20121114230042-ojzn4hr3fp0k15dz
2012-11-15 00:00:42 +01:00
Fabien Pinckaers 72f991f631 [IMP] demo data: project issues
bzr revid: fp@openerp.com-20121114224452-4djljq2ny7f1lumx
2012-11-14 23:44:52 +01:00
Fabien Pinckaers 7e8ea7b351 [IMP] better demo data for projects
bzr revid: fp@openerp.com-20121114223920-ps1j47ca5h8z3jtd
2012-11-14 23:39:20 +01:00
Fabien Pinckaers 511ddde903 [MERGE]
bzr revid: fp@openerp.com-20121114223547-oprwc2wo3d5e62uw
2012-11-14 23:35:47 +01:00
Fabien Pinckaers 97cd288f65 [IMP] removed unused demod data
bzr revid: fp@openerp.com-20121114223233-62upcr24xbm7r5cg
2012-11-14 23:32:33 +01:00
Christophe Simonis fa8463f804 [FIX] use session.url()
bzr revid: chs@openerp.com-20121114174258-ly0dniub0k383045
2012-11-14 18:42:58 +01:00
Christophe Simonis eb5a5bf838 [IMP] add method session.url() to generate correct url
bzr revid: chs@openerp.com-20121114174150-9nhj50vftt4lrf0k
2012-11-14 18:41:50 +01:00
Fabien Pinckaers e6586d1631 [FIX] wording
bzr revid: fp@tinyerp.com-20121114171920-pxyq9qp5vcjm79yc
2012-11-14 18:19:20 +01:00
Fabien Pinckaers 9e7f6b3e83 [MERGE] fix bank statement lines
bzr revid: fp@tinyerp.com-20121114171610-gfnqzosyoaaolcy8
2012-11-14 18:16:10 +01:00
Antony Lesuisse 17c426870f [FIX] analytic account delete when lines exist
bzr revid: al@openerp.com-20121114170758-dgg378sgwx96w4av
2012-11-14 18:07:58 +01:00
Frédéric van der Essen 8c820330a5 [FIX] point_of_sale: removed the gif loader, replaced it by niv's js one
bzr revid: fva@openerp.com-20121114170006-gkx6ezikiw86po7u
2012-11-14 18:00:06 +01:00
Fabien Meghazi 1b2f4baede [FIX] Calendar tabs disapear when clicking next/previous
lp bug: https://launchpad.net/bugs/1075550 fixed

bzr revid: fme@openerp.com-20121114165902-zizcpaemtq3mc21x
2012-11-14 17:59:02 +01:00
Fabien Pinckaers 828dbc853a [MERGE] fix tracking colors
bzr revid: fp@tinyerp.com-20121114165631-w7l55tewiumzl3le
2012-11-14 17:56:31 +01:00
Thibault Delavallée 47ec33ab15 [MERGE] [REV] [FIX] Revert demo data introduced by the famous (and sexy) tde at rev 8007 (revid tde@openerp.com-20121112155148-ktljqs3w58cvsk6r). Also fixed a wrong function name introduced at rev 8037 (revid tde@openerp.com-20121114150500-pzj8zhyt5e29aekb), still by this famous tde. What a man.
bzr revid: tde@openerp.com-20121114165610-bhj5id1xbfvml90s
2012-11-14 17:56:10 +01:00
Fabien Pinckaers 53ba452796 [MERGE] fix audit trail
bzr revid: fp@tinyerp.com-20121114165543-e27q12sdehcwel18
2012-11-14 17:55:43 +01:00
Christophe Simonis 1274993540 [FIX] auth_signup + auth_anonymous: update to new api
bzr revid: chs@openerp.com-20121114165446-7f4xv1yb11pu50ya
2012-11-14 17:54:46 +01:00
Frédéric van der Essen 107e579ecd [IMP] point_of_sale: auto focus on paymentlines
bzr revid: fva@openerp.com-20121114165043-vbfj1r93ww3es9qt
2012-11-14 17:50:43 +01:00
Fabien Meghazi 4fb15efb59 [FIX] IE does not accept custom button@type attribute
Added one more step in views serialization historic hell

bzr revid: fme@openerp.com-20121114164413-wrnxlbuh9zj924yk
2012-11-14 17:44:13 +01:00
Xavier Morel 5fb303f12f [FIX] style issues: notes should be actual, correct phrases
bzr revid: xmo@openerp.com-20121114163735-th0oocohmepzg822
2012-11-14 17:37:35 +01:00
Xavier Morel e9839a517d [IMP] test case options were introduced before where it was said they were
bzr revid: xmo@openerp.com-20121114163559-jwi9ua3ny9utsdbo
2012-11-14 17:35:59 +01:00
Thibault Delavallée 53e1a01ee1 [FIX] mail_thread: fixed function name from tools, text2html is plaintext2html.
bzr revid: tde@openerp.com-20121114163252-s0eqvjvdy953yyq2
2012-11-14 17:32:52 +01:00
Thibault Delavallée b387836284 [IMP] mail.group: updating the descrpition, also update the description in the params of the client action related to the mail group.
bzr revid: tde@openerp.com-20121114163007-91z50xmkepnc436l
2012-11-14 17:30:07 +01:00
Thibault Delavallée 9f0f87f82b [FIX] mail: removed demo data that should not have been merged at rev 8004.
bzr revid: tde@openerp.com-20121114161607-n14fzx8jxygyfy8g
2012-11-14 17:16:07 +01:00
Thibault Delavallée 3c8f8915b2 [FIX] mail: expandables: expandable was placed at a wrong place in the message list.
bzr revid: tde@openerp.com-20121114155810-q284caaual2sk8ka
2012-11-14 16:58:10 +01:00
Frédéric van der Essen 58ec91eb79 [FIX] point_of_sale: bad indentation
bzr revid: fva@openerp.com-20121114155540-dvkat6on42koims3
2012-11-14 16:55:40 +01:00
Christophe Matthieu b581043859 [FIX] mail: expandable insert after
bzr revid: chm@openerp.com-20121114155325-kuqyke9hcfmb0yyb
2012-11-14 16:53:25 +01:00
Thibault Delavallée 9c7951c84d [FIX] Fixed last merge... forgot a tag in mail_demo;
bzr revid: tde@openerp.com-20121114154739-ls35o0zfx8ckdlgk
2012-11-14 16:47:39 +01:00
Thibault Delavallée 48ce331544 [MERGE] Sync with trunk.
bzr revid: tde@openerp.com-20121114154021-vsllo3keszi9732d
2012-11-14 16:40:21 +01:00
Christophe Matthieu 7885518850 [FIX] mail: insert new message on the wall and indented the reply of this message
bzr revid: chm@openerp.com-20121114153022-i6xv4v2jqxx8w39r
2012-11-14 16:30:22 +01:00
niv-openerp 303b6108a4 [FIX] problem with datepicker
bzr revid: nicolas.vanhoren@openerp.com-20121114151923-p8okppnjpyxsahql
2012-11-14 16:19:23 +01:00
Antony Lesuisse 36e4ed47b7 [FIX] login params
bzr revid: al@openerp.com-20121114151714-i0hsz4lyfmps307x
2012-11-14 16:17:14 +01:00
Xavier Morel 923f75eeef [MEH] hardcode min-width for date fields in list view
bzr revid: xmo@openerp.com-20121114150717-sdf6ut4hbappaf8x
2012-11-14 16:07:17 +01:00
Thibault Delavallée 4e2609f35f [MERGE] Mail: improve incoming/outgoing emails behavior
Main:
- updated overall code to match the new mail openerp tools
- message_route: after checking the headers to find if the incoming email is a reply in an existing discussion, it checks whether the email is a reply to a private discussion (without model, res_id), based on the message_id of the mail; it then relies on the aliases then fetchmail, as before
- incoming emails and quick posting through Chatter now calls message_post_user_api (based on old message_post_api), that performs some things the composer do on its side (adding recipients of a replied message, cleaning the content)
Misc:
- general: updated modules according to the new tools mail functions
- general: message related to a new app installation now have a comment subtype, meaning they will effectively be pushed
- mail: improved set_message_read, fixed a bug with message_id
- fetchmail: fixed a bug in fetchmail module about non-existing variable
- portal: updated demo data

bzr revid: tde@openerp.com-20121114150500-pzj8zhyt5e29aekb
2012-11-14 16:05:00 +01:00
Cedric Snauwaert f76ac92242 [FIX]fix problem when iterating on several ids in create_move (value_residual was not recomputed)
bzr revid: csn@openerp.com-20121114150133-8hvrdkrwor7v9i2m
2012-11-14 16:01:33 +01:00
Christophe Matthieu 52349a7525 [IMP] mail and crm: demodata for search (has attachment) and expandable
bzr revid: chm@openerp.com-20121114150047-f2d30euntwjurnt4
2012-11-14 16:00:47 +01:00
Denis Ledoux dle@openerp.com 8dcaac7f54 [FIX]Wrong date for datepicker, due to using self.value instead of self.get('value')
lp bug: https://launchpad.net/bugs/1075504 fixed

bzr revid: dle@openerp.com-20121114144345-boqe04siijwsuqor
2012-11-14 15:43:45 +01:00
Thibault Delavallée 3b31bdd295 [IMP] mail: small css tweak.
bzr revid: tde@openerp.com-20121114143516-zs3k4s5tzvbftbzb
2012-11-14 15:35:16 +01:00
Thibault Delavallée 026a042e7b [FIX] mail_thread: fixed message_subtype wrongly taken into account when posting through Chatter or fetchmail.
bzr revid: tde@openerp.com-20121114143506-qcmhrcngfxm4tbvu
2012-11-14 15:35:06 +01:00
Fabien Pinckaers 13f9de3d7c [FIX] can not delete an analytic account having lines
bzr revid: fp@tinyerp.com-20121114143454-6bkldl0yk6ob8qmp
2012-11-14 15:34:54 +01:00
Christophe Matthieu 4011dd8760 [FIX] mail_follower: clear the subtype_list when reload (delete double value)
bzr revid: chm@openerp.com-20121114141936-atyfapg9qia3avsc
2012-11-14 15:19:36 +01:00
Frédéric van der Essen 25fb4bcbca [MERGE] from trunk
bzr revid: fva@openerp.com-20121114141751-8l6meschr2ay4o6c
2012-11-14 15:17:51 +01:00
Thibault Delavallée eb04795e28 [FIX] Fixed last fix...
bzr revid: tde@openerp.com-20121114141559-31w4389i22x7l7cd
2012-11-14 15:15:59 +01:00
Thibault Delavallée f7cb95db00 [FIX] email_template: fixed last revert. xml_id of user is now correct.
bzr revid: tde@openerp.com-20121114135515-y28jhsbmjcmln9gr
2012-11-14 14:55:15 +01:00
Thibault Delavallée c6bd2c0ee0 [REV] mail.compose.message: some of the wizard fields back to invisible mode.
bzr revid: tde@openerp.com-20121114134803-hlbmmd14psdc2sk7
2012-11-14 14:48:03 +01:00
Thibault Delavallée 7fc4f67e4c [FIX] mail.group: fixed a description key not always present in mail.group creation.
bzr revid: tde@openerp.com-20121114134356-5lbdx1tciw8tz2w0
2012-11-14 14:43:56 +01:00
Christophe Matthieu eb6dc15b7f [IMP] mail and crm: demodata with favorite notification
bzr revid: chm@openerp.com-20121114134259-wtj5v6kplgu8ptvl
2012-11-14 14:42:59 +01:00
Thibault Delavallée 45eadceea6 [FIX] email_template: udpated test according to new specs of append_content_to_html.
bzr revid: tde@openerp.com-20121114133438-8m1q0r02i4xory0e
2012-11-14 14:34:38 +01:00
Thibault Delavallée 8dce388719 [REV] portal demo data: demo portal user xml_id back to its former value.
bzr revid: tde@openerp.com-20121114133422-3tb28n9rfdyh80d0
2012-11-14 14:34:22 +01:00
Christophe Matthieu d282df466c [FIX] mail: do not display record_name when the user is on a document
bzr revid: chm@openerp.com-20121114132517-6c5rfiikkuchcmxx
2012-11-14 14:25:17 +01:00
Fabien Pinckaers fdf9f920f0 [MERGE] a few merge props
bzr revid: fp@tinyerp.com-20121114131935-k8m4wfk31kagm86c
2012-11-14 14:19:35 +01:00
Vo Minh Thu 2136b24b53 [MERGE] added dependency on `web` in process and base_import.
bzr revid: vmt@openerp.com-20121114132115-6mffowp3l7uj8747
2012-11-14 14:21:15 +01:00
Xavier Morel 67115184f8 [FIX] references to renamed/removed methods in event handler bindings
bzr revid: xmo@openerp.com-20121114130600-2qf8egm0r9bwno1n
2012-11-14 14:06:00 +01:00
niv-openerp de39dccefb [FIX] problem with invalid on*|do* refactoring
bzr revid: nicolas.vanhoren@openerp.com-20121114125922-cirvs06k133dwako
2012-11-14 13:59:22 +01:00
Vo Minh Thu c20e2afda1 [MERGE] merged trunk.
bzr revid: vmt@openerp.com-20121114125900-egz3k82n98kwz47x
2012-11-14 13:59:00 +01:00
Fabien Pinckaers 11e4c9bd73 [MERGE] improved useability on stock
bzr revid: fp@tinyerp.com-20121114123758-hsezmxkmce0yki71
2012-11-14 13:37:58 +01:00
Fabien Pinckaers 5f0e2c8528 [MERGE] improved account wizard report
bzr revid: fp@tinyerp.com-20121114123655-kjf42on4ak0so1cl
2012-11-14 13:36:55 +01:00
Fabien Pinckaers 5790d33c81 [MERGE] improved wording in cancelling entries
bzr revid: fp@tinyerp.com-20121114123541-82qo0g31y11lrl6w
2012-11-14 13:35:41 +01:00
Fabien Pinckaers 241b6f9d3d [MERGE] translated key for INV (inventory)
bzr revid: fp@tinyerp.com-20121114122851-kn39kf8ranf7clkz
2012-11-14 13:28:51 +01:00
Fabien Pinckaers 2ac59ccc4b [IMP] Adding a test for taxes
bzr revid: fp@tinyerp.com-20121114122330-03x4q0g6b0v14er1
2012-11-14 13:23:30 +01:00
Christophe Matthieu a43662d125 [IMP] mail: change the header title and description for each mailbox and group discussion
bzr revid: chm@openerp.com-20121114122033-dl70fqty2kbd5gj1
2012-11-14 13:20:33 +01:00
Fabien Pinckaers 56ce3d8f13 [MERGE] fix in margins on products
bzr revid: fp@tinyerp.com-20121114121621-xn3wt014bieprh1g
2012-11-14 13:16:21 +01:00
Fabien Pinckaers 4ca992b5aa [MERGE] fix iban for coda
bzr revid: fp@tinyerp.com-20121114121326-xjoh3m79n8v21jef
2012-11-14 13:13:26 +01:00
Fabien Pinckaers a8a3b92c55 [IMP] rules
bzr revid: fp@tinyerp.com-20121114120945-in2c3eix7lqoxr2u
2012-11-14 13:09:45 +01:00
Olivier Dony c97933935b [IMP] portal_sale: more accurate menu name in module description
bzr revid: odo@openerp.com-20121114120742-j34vab3ubfi0jqty
2012-11-14 13:07:42 +01:00
Olivier Dony b925d494b5 [IMP] acquirer: improved acquirer view explanations
bzr revid: odo@openerp.com-20121114120622-f3jr1chrt3snl42r
2012-11-14 13:06:22 +01:00
Fabien Pinckaers cf9aed2718 [MERGE] fox for notes access rights
bzr revid: fp@tinyerp.com-20121114120501-82vvhbojkpvoow3z
2012-11-14 13:05:01 +01:00
Thibault Delavallée 64277d04c3 [IMP] Addons: messages when installing key apps is not of comment subtype, meaning they are effectively pushed.
bzr revid: tde@openerp.com-20121114115504-tvh0j9ks0jde12ed
2012-11-14 12:55:04 +01:00
Olivier Dony da27871dae [IMP] sale,portal_sale: make action xids more explicit, for use in signup URLs as #action=action_xid
bzr revid: odo@openerp.com-20121114113823-38i21sacrqlzk9id
2012-11-14 12:38:23 +01:00
Fabien Pinckaers bfe22e3c72 [MERGE] fix voucher multi-lines rounding on taxes
bzr revid: fp@tinyerp.com-20121114111705-0ic4me8loy4jq3fl
2012-11-14 12:17:05 +01:00
Thibault Delavallée 17c2939ddc [IMP] mail_thread: message_process: plaintext incoming messages are preserved in pre tags.
bzr revid: tde@openerp.com-20121114111129-8nkneu1h6ij2lk99
2012-11-14 12:11:29 +01:00
Thibault Delavallée 5afe27095f [FIX] mail_followes: signature addition is back, wrong var name.
bzr revid: tde@openerp.com-20121114111104-0jyqh2v0tk7zznc1
2012-11-14 12:11:04 +01:00
niv-openerp 9f89256ef3 [IMP] css to make the m2o nicer
bzr revid: nicolas.vanhoren@openerp.com-20121114105554-ps21uqbrbremmjxb
2012-11-14 11:55:54 +01:00
Fabien Meghazi 3f0f60faa9 [FIX] Even IE9 only exposes console object when the debug window is opened
bzr revid: fme@openerp.com-20121114125715-wgr0wxb91dvccuag
2012-11-14 13:57:15 +01:00
Xavier Morel a36748ebe4 [FIX] disable min-width on select fields when inside editable list row
bzr revid: xmo@openerp.com-20121114125134-ojiupdhudxjtz6y5
2012-11-14 13:51:34 +01:00
Vo Minh Thu 19011a6d76 [MERGE] added a duplicate operation to the database managment screen.
bzr revid: vmt@openerp.com-20121114121250-9l0qmlvriwzp7zr9
2012-11-14 13:12:50 +01:00
Xavier Morel 01630d6800 [FIX] focus/blur in fieldm2mtags in case of tabbing in/out
bzr revid: xmo@openerp.com-20121114114508-g97xdgq4a4fhpmjz
2012-11-14 12:45:08 +01:00
Vo Minh Thu 1ba3ae959f [MERGE] merged trunk.
bzr revid: vmt@openerp.com-20121114113528-t6ed04bv1d5p7h31
2012-11-14 12:35:28 +01:00
Christophe Simonis e1f5dfc388 [FIX] jsonp wasn't working on some browse due to security restriction that do not store the third parties cookies.
bzr revid: chs@openerp.com-20121114113335-nag3ljcwwx0yfdnu
2012-11-14 12:33:35 +01:00
Olivier Dony 524c3d500d [FIX] chrome.js: leftover typo after renaming of URL `action_id` param, new `action` param was being ignored
bzr revid: odo@openerp.com-20121114111923-x2qs3zdfzmezt5z8
2012-11-14 12:19:23 +01:00
Vo Minh Thu a219c013f1 [IMP] controllers/main.py: removed unneeded tupling/splatting.
bzr revid: vmt@openerp.com-20121114110053-9vovll5tvjobjuka
2012-11-14 12:00:53 +01:00
Thibault Delavallée 48e3bdb332 [IMP] mail_thread: incoming messages without model that are reply to a private message shoudl not have any res_id. Assert it.
bzr revid: tde@openerp.com-20121114105323-5an5v6m7bdaaomy1
2012-11-14 11:53:23 +01:00
Thibault Delavallée ae2e2298dc [REV] mail_followers: context in send email is commented, because not ready yet.
bzr revid: tde@openerp.com-20121114105252-3eberdfvobrtthk6
2012-11-14 11:52:52 +01:00
Christophe Matthieu 758115c1a5 [IMP] mail: add date on messages for the datademo
bzr revid: chm@openerp.com-20121114104721-8b5ajc21ii7cp8a2
2012-11-14 11:47:21 +01:00
Christophe Matthieu 4a91e273a8 [IMP] mail: unactivate reload menu
bzr revid: chm@openerp.com-20121114104717-zi5yl3knyhf7xgev
2012-11-14 11:47:17 +01:00
niv-openerp 729eb0ff4f [FIX] problem with list editable in o2m
bzr revid: nicolas.vanhoren@openerp.com-20121114103156-tzbz8sm4x54jgjvm
2012-11-14 11:31:56 +01:00
Cedric Snauwaert 112152b5d8 [MERGE]merge with trunk
bzr revid: csn@openerp.com-20121114094751-iz3yf6bj73e5u2pa
2012-11-14 10:47:51 +01:00
Fabien Meghazi 9114457d71 [REV] Revision 3408 revid:al@openerp.com-20121114005029-41tkuo2g93vbnz60 does not pass runbot tests
bzr revid: fme@openerp.com-20121114090731-hrw2eh6b1and8soc
2012-11-14 10:07:31 +01:00
Thibault Delavallée fbccb823f8 [MERGE] Sync with trunk.
bzr revid: tde@openerp.com-20121112161523-yfp1dczcnmi85t8e
bzr revid: tde@openerp.com-20121114083900-qw40e8ii1rfl7gt1
2012-11-14 09:39:00 +01:00
Christophe Matthieu 62b376307b [IMP] mail: change the counter of the need action menu when a message is read. Actually reload all the widget menu but we can upgrade and change the number only (less request)
bzr revid: chm@openerp.com-20121114082659-31vxgq5synhdpobl
2012-11-14 09:26:59 +01:00
Launchpad Translations on behalf of openerp 9d8a2ea8e9 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20121114044052-9z7ql9gtqnfz7ay0
2012-11-14 04:40:52 +00:00
Antony Lesuisse d639ae250c [MERGE] menu possible to reload only a submenu
bzr revid: al@openerp.com-20121114005029-41tkuo2g93vbnz60
2012-11-14 01:50:29 +01:00
Olivier Dony f5f6547fa7 [MERGE] Sync with trunk
bzr revid: odo@openerp.com-20121113164544-21tmr4bmpt2n1mfl
2012-11-13 17:45:44 +01:00
Olivier Dony 5e4c4fe06e [IMP] portal,portal_sale: polish/cleanup acquirer settings
bzr revid: odo@openerp.com-20121113164435-ids77maq6h13crob
2012-11-13 17:44:35 +01:00
Fabien Meghazi f6ac96016b [IMP] Css improvements for mail, hr and events modules
bzr revid: fme@openerp.com-20121113162847-1t6vhwbhlrrm25xa
2012-11-13 17:28:47 +01:00
Christophe Matthieu 0cf93f912b [IMP] mail & web menu: code review for reload menu
bzr revid: chm@openerp.com-20121113160248-1p2003uc9f5nnxnm
2012-11-13 17:02:48 +01:00
Cedric Snauwaert eedab29ddf [FIX]fleet: fix bug when clicking on renew contract button and add small changes on odometer view
bzr revid: csn@openerp.com-20121113155859-9r7f4cc8w8f9j3e4
2012-11-13 16:58:59 +01:00
Thibault Delavallée 292666ecc3 [MERGE] Sync with trunk.
bzr revid: tde@openerp.com-20121113155209-0ch1a682bzmzv3x1
2012-11-13 16:52:09 +01:00
Cedric Snauwaert 2db2b70468 [FIX]add a field to sort hr_employee by name
lp bug: https://launchpad.net/bugs/1077140 fixed

bzr revid: csn@openerp.com-20121113153645-0lywi300wseowczw
2012-11-13 16:36:45 +01:00
Xavier Morel 7d18be69a5 [FIX] form shortcuts being somewhat active in listview leading to strange behaviors
added a predicate and a decorator to View, so that views can easily
check if they are the active view and only execute relevant actions
when they are.

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

bzr revid: xmo@openerp.com-20121113153610-7yogikfyg4rxwsjp
2012-11-13 16:36:10 +01:00
Thibault Delavallée f736edb150 [MERGE] Fix a bug related to Chatter when switching records in form view:
- when simply switching, old messages were concatenated
- when deleting a record, a crash occured

bzr revid: tde@openerp.com-20121113153353-jrl2hguv01oupam5
2012-11-13 16:33:53 +01:00
Arnaud Pineux 866956daa6 [FIX] phonecalls to invoice
lp bug: https://launchpad.net/bugs/1017353 fixed

bzr revid: api@openerp.com-20121113153216-n22f5kponm0xb4fq
2012-11-13 16:32:16 +01:00
Arnaud Pineux 9b3832937f [FIX] phonecalls to invoice
lp bug: https://launchpad.net/bugs/1017353 fixed
lp bug: https://launchpad.net/bugs/1017353 fixed

bzr revid: api@openerp.com-20121113135107-zqri9d453i1lsn0h
bzr revid: api@openerp.com-20121113153016-efe1yiwxs1phyem4
2012-11-13 16:30:16 +01:00
Cedric Snauwaert 120716000b [MERGE]merge with latest trunk
bzr revid: csn@openerp.com-20121113152846-1l2o09b0e0ttnkwr
2012-11-13 16:28:46 +01:00
Christophe Matthieu fa8f27307a [MERGE] from trunk
bzr revid: chm@openerp.com-20121113152842-qwe8eibf2pb5dsrv
2012-11-13 16:28:42 +01:00
Cedric Snauwaert fb7de9f2f2 [FIX]bug when renewing contract and small changes in odometer tree view
bzr revid: csn@openerp.com-20121113152639-72l14qtzo09p3aoj
2012-11-13 16:26:39 +01:00
Thibault Delavallée 3af101ed29 [MERGE] Email template improvement
- add a email_recipients field, that is a field holding a comma separated list of partner_ids; this allows to add partners in the compose wizard that are directly visible in the 'additional contacts' field
- updated EDI templates to use email_recipients instead of email_to
- email_to is kept and is still working; email_to matching partners and email_recipients are concatenated
- slighty improved mail.compose.message form view when email_template is installed
added a test for this upgraded feature

bzr revid: tde@openerp.com-20121113150903-igm0fppm4r8ezcbe
2012-11-13 16:09:03 +01:00
Cedric Snauwaert 2748107a66 [FIX]order the hr_employee by name
bzr revid: csn@openerp.com-20121113150337-coj0e1uk2pdxveg6
2012-11-13 16:03:37 +01:00
Christophe Matthieu 183bc922c1 [FIX] mail: fix the openchatter reload when the user change of record view (click on next, delete...)
bzr revid: chm@openerp.com-20121113145722-72d2j7eiaxxlp6ys
2012-11-13 15:57:22 +01:00
Frédéric van der Essen b00a0ab711 [IMP] attachements are now always displayed
bzr revid: fva@openerp.com-20121113145453-35v399hqgz201ndj
2012-11-13 15:54:53 +01:00
Xavier Morel bd0e4d6a42 [MEH] vertical alignments
bzr revid: xmo@openerp.com-20121113143953-4rvozux8uurv16d4
2012-11-13 15:39:53 +01:00
Christophe Matthieu 82cba0604f [IMP] web menu: add a context value for reload one submenus of a parent id menu. If no default_menu, load all menus
bzr revid: chm@openerp.com-20121113143220-zhwo06j7pl8rt2wi
2012-11-13 15:32:20 +01:00
Frédéric van der Essen 5bb9466813 [MERGE] upstream
bzr revid: fva@openerp.com-20121113143031-gom4b88czhnwvyj6
2012-11-13 15:30:31 +01:00
Frédéric van der Essen 0c16b8b4fa [IMP] better image preview in attachments
bzr revid: fva@openerp.com-20121113142920-hojjecoz6x2vxuz4
2012-11-13 15:29:20 +01:00
Thibault Delavallée 0f3845bee6 [FIX] [CLEAN] mail.js: removed references to mail.thread. There shouldnot have been any of them left...
bzr revid: tde@openerp.com-20121113142759-wwhd3bssent1861a
2012-11-13 15:27:59 +01:00
Thibault Delavallée ad75b35c0e [FIX] email_template: email_recipients, when void, generate a not-void partner_ids.
bzr revid: tde@openerp.com-20121113141213-j2hp2bdakjb4bw8z
2012-11-13 15:12:13 +01:00
Christophe Simonis 71fdd4fdb3 [FIX] do_load_state: highlight right menu when loading action using xmlid
bzr revid: chs@openerp.com-20121113140002-gq330rwod0c7qf5m
2012-11-13 15:00:02 +01:00
Arnaud Pineux 7b76c5216e [MERGE] fix the phone call to opportunity to quotation
lp bug: https://launchpad.net/bugs/1017353 fixed

bzr revid: api@openerp.com-20121113134911-gd4o1zj6ixtu83hm
2012-11-13 14:49:11 +01:00
Quentin (OpenERP) feb68f0dc7 [MERGE] merged the branch of vta, with reconciliation on bank statement improvements
bzr revid: qdp-launchpad@openerp.com-20121113134349-hve6daoig68o16c3
2012-11-13 14:43:49 +01:00
Cedric Snauwaert f8d9112ef7 [FIX]change of tva in netherlands from 19 to 21%
lp bug: https://launchpad.net/bugs/1067059 fixed

bzr revid: csn@openerp.com-20121113133919-o483vdz5d3plq0ik
2012-11-13 14:39:19 +01:00
Thibault Delavallée c0d3cd2f81 [REVIEW] Removed unnecessary statements.
bzr revid: tde@openerp.com-20121113133815-rswtzhidara3u4zt
2012-11-13 14:38:15 +01:00