Commit Graph

27948 Commits

Author SHA1 Message Date
Stephane Wirtel edf0e57305 [FIX] base_setup: Use a new flag of the ir.module.category object for the listing of applications
bzr revid: stw@openerp.com-20111005141932-mw8n1ccs1msino92
2011-10-05 16:19:32 +02:00
Stephane Wirtel 3dc8168974 [FIX] Set the categories
bzr revid: stw@openerp.com-20111005141902-72du0lku4x176ix9
2011-10-05 16:19:02 +02:00
Xavier Morel d801f21146 [REV] 1150, broke filter_domain in case of empty field
bzr revid: xmo@openerp.com-20111005130252-oovrpbo4a1pjavwd
2011-10-05 15:02:52 +02:00
Xavier Morel 072bb3d8ec [FIX] viewmanageraction loading: auto_search is the default, not the exception
this means if the auto_search attribute is missing, search automatically. Search should only
be prevented if auto_search is precisely false

bzr revid: xmo@openerp.com-20111005111210-qju8ocbhvqahczsz
2011-10-05 13:12:10 +02:00
Xavier Morel 68cd9188b9 [FIX] handling of value and default domain in search m2o
bzr revid: xmo@openerp.com-20111005105731-9431uvhay91bt10c
2011-10-05 12:57:31 +02:00
Fabien Meghazi 19b7493711 [FIX] When reaching ir_actions_act_window_close without dialog, call on_closed if any
The static homepage do not reload the page when the module installed have no configuration actions (eg: returning direcly ir_actions_act_window_close)

bzr revid: fme@openerp.com-20111005101714-s5jy3gslni00a5jo
2011-10-05 12:17:14 +02:00
niv-openerp 708802c357 [fix] problem with the idea module trying to override the 'active_id' context key, which it should not
bzr revid: nicolas.vanhoren@openerp.com-20111005095633-v53hjz3fkwlb3fso
2011-10-05 11:56:33 +02:00
Christophe Simonis 847ee8333d [FIX] correct module loading in local mode
bzr revid: chs@openerp.com-20111005095505-vepaqeupdn5qywcc
2011-10-05 11:55:05 +02:00
niv-openerp 1bbe15f634 [fix] referencing a field in a domain that is not loaded in the view
bzr revid: nicolas.vanhoren@openerp.com-20111005093600-xjyqrmpoqywy1ztq
2011-10-05 11:36:00 +02:00
niv-openerp 2b7b51e0b3 [fix] problem in web client not supporting graph view in one2many
bzr revid: nicolas.vanhoren@openerp.com-20111005093237-22dbe1jwbkqk18pt
2011-10-05 11:32:37 +02:00
Xavier Morel ae0ba95861 [REM] @string on in-field filter
bzr revid: xmo@openerp.com-20111005090518-3ht49k8s6vtrxhwl
2011-10-05 11:05:18 +02:00
Fabien Meghazi ec23334891 [FIX] Fix calendar view when no date_delay neither date_stop are specified
lp bug: https://launchpad.net/bugs/865945 fixed

bzr revid: fme@openerp.com-20111005083656-f5bq8v1km25s4orx
2011-10-05 10:36:56 +02:00
Fabien Meghazi a33bd2344c [IMP] Improved styling of labels
bzr revid: fme@openerp.com-20111005083521-ofyfzdp8olzpjnbd
2011-10-05 10:35:21 +02:00
Antony Lesuisse 3fe0d08772 [FIX] some catgories and complexity
bzr revid: al@openerp.com-20111004231832-8hx5233nm031nuhs
2011-10-05 01:18:32 +02:00
Antony Lesuisse 69b916b144 [MERGE] fetchmail local mta option by stw
bzr revid: al@openerp.com-20111004222640-ako0cjw414c5lz72
2011-10-05 00:26:40 +02:00
niv-openerp 15a6b81dbe [fix] just return a promise where necessary
bzr revid: nicolas.vanhoren@openerp.com-20111004161116-6pylm16ty6v69szu
2011-10-04 18:11:16 +02:00
Xavier Morel 318ec9998b [IMP] use .children(selector) rather than .find('> ' + selector)
bzr revid: xmo@openerp.com-20111004155918-c2vy0rwkesvdkmli
2011-10-04 17:59:18 +02:00
Xavier Morel 49de0f4640 [FIX] stupidity: if insert a line in a list with more than 5 records (no padding), since the new line does not have a @data-id yet it's going to remove it immediately.
select line to remove before inserting new one

bzr revid: xmo@openerp.com-20111004155746-q13ieg0q6lsy1uf7
2011-10-04 17:57:46 +02:00
Xavier Morel 74db7dd027 [FIX] correctly handle insertion in empty editable list
bzr revid: xmo@openerp.com-20111004154650-hx56g1lmefhzgf21
2011-10-04 17:46:50 +02:00
Xavier Morel 72b852c2c6 [FIX] insertion position of new lines (in editable lists) in case of lists padded to 5 (empty) lines
bzr revid: xmo@openerp.com-20111004154246-7o1cw016cf9ygem3
2011-10-04 17:42:46 +02:00
Xavier Morel f164496dc4 [FIX] correctly call form field's update_dom in all cases in editable listview
Form fields are extended/replaced in editable list view in order to
handle @invisible and @tree_invisible correctly in editable-list-form
context (base semantics of @invisible are different between listview
and formview, formview's @invisible is listview's @tree_invisible, and
instead of removing element from visible DOM listview's @invisible
only hides the element but it keeps the space it's taking).

As a result, listview editable needs to override Widget.update_dom for
pretty much all form widgets, in order to manage this difference in
behavior.

In case of @tree_invisible, it did so correctly setting and unsetting
its stuff and calling this.super() to execute the widget's actual
update_dom triggers **but it did not do so when the element was really
visible**.

As a result, in editable listview elements would never appear required
(blue background), invalid (red background) or disabled (gray),
although they were correctly set up, because the display layer was
never updated.

bzr revid: xmo@openerp.com-20111004151031-65o0q8e86op7kdks
2011-10-04 17:10:31 +02:00
Vaibhav (OpenERP) cb05cf6ce2 [FIX] exception error message.
bzr revid: vda@tinyerp.com-20111004133753-kptuu127azazrmg6
2011-10-04 19:07:53 +05:30
Stephane Wirtel 0815eff444 [FIX] base_setup: fix the xml_id of the default shortcut 'Add More Features'
bzr revid: stw@openerp.com-20111004133613-d2pv1csgin2bwfee
2011-10-04 15:36:13 +02:00
Xavier Morel fb2e7a4a06 [FIX] have form widget elements behave correctly in case of classes with dots. Thanks valentin
bzr revid: xmo@openerp.com-20111004132854-sg8vo4m3b4bvtecf
2011-10-04 15:28:54 +02:00
Xavier Morel 780179e016 [FIX] fetch display mode from calendar view
bzr revid: xmo@openerp.com-20111004124125-34rjj54k2fe0locu
2011-10-04 14:41:25 +02:00
Bharat (OpenERP) 0aaaa7a387 hr : analytic_user_function- bad object naming convention
lp bug: https://launchpad.net/bugs/866048 fixed

bzr revid: bde@tinyerp.com-20111004115441-xl5pexqgakb6t9o8
2011-10-04 17:24:41 +05:30
Xavier Morel 29cef016f9 [FIX] re-rendering of a given list's row (e.g. onchange, edition, etc...): 'view' needs to be in the context so the row's color can be computed
bzr revid: xmo@openerp.com-20111004104848-277ajqmaud8oc8hn
2011-10-04 12:48:48 +02:00
Xavier Morel 3190884fa1 [FIX] don't perform a search_read when switching view from list to form
I don't remember why I did that originally, it does not seem to serve any purpose and it causes problems in case of records with binary fields

bzr revid: xmo@openerp.com-20111004102115-lz6kgyiw35vp1t99
2011-10-04 12:21:15 +02:00
Valentin Lab 63cf2019e5 [imp] more efficient selector.
bzr revid: valentin.lab@kalysto.org-20111004102050-http3jvu0sf78fmx
2011-10-04 12:20:50 +02:00
ARA (OpenERP) fb97b43793 [FIX] Bad caculation of the quantity UDM in sale order line
bzr revid: ara@tinyerp.com-20111004101410-8vsdp62jwlrdc8u6
2011-10-04 15:44:10 +05:30
Fabien Meghazi f76b2f55ae [MERGE] ViewManager now triggers do_search() in on_mode_switch()
The views doesn't have to worry about the search in do_show().
They just have to listen to do_search() if they are searchable.

bzr revid: fme@openerp.com-20111004094738-at91ab6a2kkxf8bq
2011-10-04 11:47:38 +02:00
ARA (OpenERP) d34b9c95ec [FIX] Bad caculation of the quantity UDM in sale order line
lp bug: https://launchpad.net/bugs/842381 fixed

bzr revid: ara@tinyerp.com-20111004094422-d1lj20bs0d24oill
2011-10-04 15:14:22 +05:30
Vaibhav (OpenERP) a9c2e07c73 [FIX] Removed exception of events manipulation fields to compute calendar scheduler.
lp bug: https://launchpad.net/bugs/865945 fixed

bzr revid: vda@tinyerp.com-20111004094009-u1vkb6s0u90629rz
2011-10-04 15:10:09 +05:30
Xavier Morel 112710c783 [IMP] move fetching notebook page widget into form widgets registry, thanks Valentin
bzr revid: xmo@openerp.com-20111004085119-ll3x1s2r2akcm8p2
2011-10-04 10:51:19 +02:00
Fabien Meghazi e2b6e03c3c [FIX] Save last search before triggering do_search
bzr revid: fme@openerp.com-20111004075039-n8a30wnuueiwnbwt
2011-10-04 09:50:39 +02:00
Valentin Lab 2bb8cadb4d [imp] notebookpage is now in registry also.
bzr revid: valentin.lab@kalysto.org-20111004074321-b2z121y64yynt948
2011-10-04 09:43:21 +02:00
Valentin Lab 8c1e052007 [fix] use a more solid selector to get $element
bzr revid: valentin.lab@kalysto.org-20111004072424-uwx50578hhafe2xm
2011-10-04 09:24:24 +02:00
Vaibhav (OpenERP) be5bef72fa [FIX] Need to Update Pager after delete record.
lp bug: https://launchpad.net/bugs/849020 fixed

bzr revid: vda@tinyerp.com-20111004071945-2fixgi12ozr6wm6g
2011-10-04 12:49:45 +05:30
Bharat (OpenERP) 6ea640a433 account : account_payment payment mode demo data
lp bug: https://launchpad.net/bugs/865227 fixed

bzr revid: bde@tinyerp.com-20111004053837-dhrsxe9u6qnd9tpg
2011-10-04 11:08:37 +05:30
ARA (OpenERP) ad8ee9601c form view is not able to open of product'Take money out ' and 'Take money in'
lp bug: https://launchpad.net/bugs/865296 fixed

bzr revid: ara@tinyerp.com-20111004050800-e0fqsi2mkhtv527e
2011-10-04 10:38:00 +05:30
Launchpad Translations on behalf of openerp 0a85361db9 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111004050146-bi1cipzsk35qj5sq
bzr revid: launchpad_translations_on_behalf_of_openerp-20111004050204-nabcu9izdjhcovhd
2011-10-04 05:02:04 +00:00
Fabien Meghazi e80894b775 [FIX] Fixed error for sidebar-less embedded list views
bzr revid: fme@openerp.com-20111003150049-hty30u42ozakevc8
2011-10-03 17:00:49 +02:00
Fabien Meghazi e5e4ab5739 [FIX] Fixed error for sidebar-less embedded list views
bzr revid: fme@openerp.com-20111003150049-n5xtpo0wjibsrhjx
2011-10-03 17:00:49 +02:00
Fabien Meghazi 82006438fe [MERGE] Merge with trunk
bzr revid: fme@openerp.com-20111003135613-8d2ep2fv3bv713t7
2011-10-03 15:56:13 +02:00
Fabien Meghazi 3e1b007478 [IMP] Viewmanager sets dataset's domain & context on_search
bzr revid: fme@openerp.com-20111003135203-d3p18cfdh5jko976
2011-10-03 15:52:03 +02:00
Stephane Wirtel 2810a6ce4a [MERGE] Upstream
bzr revid: stw@openerp.com-20111003132244-7yum8h21osi9zfcu
2011-10-03 15:22:44 +02:00
Stephane Wirtel bdbd19fa86 [FIX] base_setup: rename the action of the new base.setup.installer wizard
bzr revid: stw@openerp.com-20111003122713-smjc6vtxku57glur
2011-10-03 14:27:13 +02:00
Stephane Wirtel 012164a0ab [MERGE]
bzr revid: stw@openerp.com-20111003120940-e0i7cgvcxvnxxgf1
2011-10-03 14:09:40 +02:00
Stephane Wirtel b916762b26 [REF] Remove old codes
bzr revid: stw@openerp.com-20111003120656-5kje5dgpulhz4a9u
2011-10-03 14:06:56 +02:00
Stephane Wirtel b4d9f085c9 [FIX] base_setup: Compute the modules to install
bzr revid: stw@openerp.com-20111003115718-g681jwbp25yotvq7
2011-10-03 13:57:18 +02:00
Xavier Morel d7edda1b3c [FIX] open/close listview sidebar based on records being selected or not
bzr revid: xmo@openerp.com-20111003115502-nla7uqi50s0z6l3i
2011-10-03 13:55:02 +02:00
Xavier Morel 1e50dac2b8 [FIX] open/close listview sidebar based on records being selected or not
bzr revid: xmo@openerp.com-20111003115502-jivrqwcc9kcaa4kb
2011-10-03 13:55:02 +02:00
Stephane Wirtel 363ed099b1 [FIX] Set the right category for some modules
bzr revid: stw@openerp.com-20111003112408-d6msz53o3boi7g43
2011-10-03 13:24:08 +02:00
Xavier Morel d9f58e3aac [FIX] installing a module should trigger the launch of any pending configuration wizard
bzr revid: xmo@openerp.com-20111003102721-ivoioohg83r8tdx3
2011-10-03 12:27:21 +02:00
Xavier Morel 2dae9519d7 [FIX] installing a module should trigger the launch of any pending configuration wizard
lp bug: https://launchpad.net/bugs/859483 fixed

bzr revid: xmo@openerp.com-20111003102721-d3eizbwef5ix18py
2011-10-03 12:27:21 +02:00
Xavier Morel a9da2abd9f [FIX] double-load on successful login
Session#session_restore is automatically called when the client
session is started, and it performs an RPC call. This RPC call is
checked and leads to the opening of the login form iif the user is not
currently logged in (does not have a valid session).

Due to the behavior of Session#rpc_ajax, this failure on grounds of
invalid session leads to the restore continuation being stored for
deferred execution once the user logs in.

Issue is that both Session#session_login and Session#session_restore
call Session#on_session_valid which tries to load all modules. As a
result and because the '_modules_loaded' flag is only set five billion
years after 'load_modules' is called both calls will try to load all
modules in parallel, leading to double downloading and execution of
all JS and CSS files coming from module data (including translation
files).

bzr revid: xmo@openerp.com-20111003090709-ree0luomezw1wzup
2011-10-03 11:07:09 +02:00
Xavier Morel 03e842f672 [FIX] double-load on successful login
Session#session_restore is automatically called when the client
session is started, and it performs an RPC call. This RPC call is
checked and leads to the opening of the login form iif the user is not
currently logged in (does not have a valid session).

Due to the behavior of Session#rpc_ajax, this failure on grounds of
invalid session leads to the restore continuation being stored for
deferred execution once the user logs in.

Issue is that both Session#session_login and Session#session_restore
call Session#on_session_valid which tries to load all modules. As a
result and because the '_modules_loaded' flag is only set five billion
years after 'load_modules' is called both calls will try to load all
modules in parallel, leading to double downloading and execution of
all JS and CSS files coming from module data (including translation
files).

bzr revid: xmo@openerp.com-20111003090709-1izso4hrbzk91sf3
2011-10-03 11:07:09 +02:00
Xavier Morel bb596c1bfc [FIX] al hacks
bzr revid: xmo@openerp.com-20111003084150-6ti0fa221h14wiik
2011-10-03 10:41:50 +02:00
Xavier Morel 013e01a52b [FIX] al hacks
bzr revid: xmo@openerp.com-20111003084150-oz87j979djfng6xb
2011-10-03 10:41:50 +02:00
kbh e2acbb9db7 [FIX] Minor change in issue of open sidebar on checked list record.
bzr revid: kbh@bde-desktop-20111003071807-9rmozt1m9h9tqxci
2011-10-03 12:48:07 +05:30
kbh 335c99fda4 [FIX] Minor change in issue of open sidebar on checked list record.
lp bug: https://launchpad.net/bugs/856376 fixed

bzr revid: kbh@bde-desktop-20111003071807-33zlrcc0vopiahoz
2011-10-03 12:48:07 +05:30
kbh de41cf7234 [FIX] change in listview for sidebar.
bzr revid: kbh@bde-desktop-20111003060239-v92vo8vc0iiq649k
2011-10-03 11:32:39 +05:30
kbh fdfe102cc4 [FIX] change in listview for sidebar.
bzr revid: kbh@bde-desktop-20111003060239-l7bwy55n8t9fkz66
2011-10-03 11:32:39 +05:30
Fabien Pinckaers 56c5b496ba [IMP] useability remove plugins form main menu
bzr revid: fp@tinyerp.com-20111002174215-5ctqdm0ysa988evi
2011-10-02 19:42:15 +02:00
Fabien Pinckaers c4b493f502 [IMP] remove unused relate
bzr revid: fp@tinyerp.com-20111002164453-ezrjck2labtz4ni6
2011-10-02 18:44:53 +02:00
Fabien Pinckaers a4b1c832df [FIX] subscription bad raise
bzr revid: fp@tinyerp.com-20111002161940-r2b0fj0uut75ay1e
2011-10-02 18:19:40 +02:00
Fabien Pinckaers 875ba0630c [IMP] Simplified Administration Dashboard
bzr revid: fp@tinyerp.com-20111002161656-d76mkhmlupcj4xiy
2011-10-02 18:16:56 +02:00
Fabien Pinckaers d63d532a52 [IMP] typo
bzr revid: fp@tinyerp.com-20111002161328-74c6szghjgyjtvnw
2011-10-02 18:13:28 +02:00
Fabien Pinckaers ed8577be95 [IMP] config wizards
bzr revid: fp@tinyerp.com-20111002161238-jo5g9hegmthht888
2011-10-02 18:12:38 +02:00
Fabien Pinckaers 751bb006c9 [FIX] delivery
bzr revid: fp@tinyerp.com-20111002160804-wmr1usci1x7m9g2z
2011-10-02 18:08:04 +02:00
Fabien Pinckaers 709bdcf3e9 [IMP] better useability
bzr revid: fp@tinyerp.com-20111002160410-l7db0cwv2j1173tt
2011-10-02 18:04:10 +02:00
Fabien Pinckaers b8af9b3423 [FIX] hr_evaluation
bzr revid: fp@tinyerp.com-20111002155744-cpc21ctqd4bpmrsq
2011-10-02 17:57:44 +02:00
Fabien Pinckaers f5a95f40fe [IMP] purchase invoice control wizard improvemens
bzr revid: fp@tinyerp.com-20111002154802-pnl31a0ulf688jcp
2011-10-02 17:48:02 +02:00
Fabien Pinckaers dca927ac8b [IMP] Useability sale order
bzr revid: fp@tinyerp.com-20111002135759-m6jinhcrog83aumi
2011-10-02 15:57:59 +02:00
Fabien Pinckaers 1dc046496e [IMP] useability
bzr revid: fp@tinyerp.com-20111002133324-ij24c1a83ynr805f
2011-10-02 15:33:24 +02:00
Fabien Pinckaers 81f4199fe6 [IMP] config wizards useability
bzr revid: fp@tinyerp.com-20111002125958-uh8ubpli8izpxqyw
2011-10-02 14:59:58 +02:00
Fabien Pinckaers 730230f7ac [IMP] config wizard launch policy
bzr revid: fp@tinyerp.com-20111002115145-fdqzn5eic83z9fd7
2011-10-02 13:51:45 +02:00
Fabien Pinckaers 7569906597 [IMP] useability bank account views
bzr revid: fp@tinyerp.com-20111002110310-8022cdp3qel4vyju
2011-10-02 13:03:10 +02:00
Fabien Pinckaers 31803314ab [IMP] allows to update credit/debit for initial balances of accounts, config wizard
bzr revid: fp@tinyerp.com-20111002105404-tkwzujn086qgjm6h
2011-10-02 12:54:04 +02:00
Launchpad Translations on behalf of openerp 23b7cca691 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111002045142-6keuvqyry9t3dnxq
2011-10-02 04:51:42 +00:00
Fabien Pinckaers b24f2a190a [IMP] menutip config wizard
bzr revid: fp@tinyerp.com-20111001232501-8kv8ixcrqts3sq9u
2011-10-02 01:25:01 +02:00
Fabien Pinckaers 6150651893 [IMP] menutip config wizar
bzr revid: fp@tinyerp.com-20111001231945-3hh0xce63d8bj9oa
2011-10-02 01:19:45 +02:00
Fabien Pinckaers 856d08e411 [IMP] hr evaluation
bzr revid: fp@tinyerp.com-20111001231711-it0w375uui2k3ssf
2011-10-02 01:17:11 +02:00
Fabien Pinckaers c4463eb7c1 fix
bzr revid: fp@tinyerp.com-20111001230138-qrfjjkyh3ly1iz17
2011-10-02 01:01:38 +02:00
Fabien Pinckaers 5dc1bc2f44 [FIX] hr_holidays
bzr revid: fp@tinyerp.com-20111001225958-0d0wi1los2870utr
2011-10-02 00:59:58 +02:00
Fabien Pinckaers 1475aa0ea1 [IMP] removing add more features from SC, as it's in config panel
bzr revid: fp@tinyerp.com-20111001223826-twjo397gb00bt9gi
2011-10-02 00:38:26 +02:00
Fabien Pinckaers c388982692 fix
bzr revid: fp@tinyerp.com-20111001223201-u8sn9adka5j70hpy
2011-10-02 00:32:01 +02:00
Fabien Pinckaers 4c7e390891 [FIX] delivery methods
bzr revid: fp@tinyerp.com-20111001222809-kv3za5932qfajrv0
2011-10-02 00:28:09 +02:00
Fabien Pinckaers 142313d012 [FIX] delivery methods
bzr revid: fp@tinyerp.com-20111001221803-d5dchaux0pzjozqo
2011-10-02 00:18:03 +02:00
Fabien Pinckaers 431a33d0f9 [IMP] config wizards useability
bzr revid: fp@tinyerp.com-20111001214427-podsy51mdlure2yo
2011-10-01 23:44:27 +02:00
Fabien Pinckaers 4581faccf4 [IMP] config wizards useability
bzr revid: fp@tinyerp.com-20111001213252-po9zv1ib7m2pwp8f
2011-10-01 23:32:52 +02:00
Fabien Pinckaers 5284a4148c [IMP] improved views of config wizards
bzr revid: fp@tinyerp.com-20111001212441-sxkwa82hgn5447fq
2011-10-01 23:24:41 +02:00
Fabien Pinckaers 5034f76143 [IMP] improved views of config wizards
bzr revid: fp@tinyerp.com-20111001212318-jmknm2qorrb39gin
2011-10-01 23:23:18 +02:00
Fabien Pinckaers c271931682 [IMP] improved views of config wizards
bzr revid: fp@tinyerp.com-20111001212000-koul7fq12hdxbwvw
2011-10-01 23:20:00 +02:00
Fabien Pinckaers 2974459cb6 [IMP] improved views of config wizards
bzr revid: fp@tinyerp.com-20111001211813-qr5ova5jfecto9j7
2011-10-01 23:18:13 +02:00
Fabien Pinckaers ff61502272 [IMP] some view should not have group_by...
bzr revid: fp@tinyerp.com-20111001211529-0g2jccon81tbjrry
2011-10-01 23:15:29 +02:00
Fabien Pinckaers e70ce4df3d [IMP] useability of some views/default values
bzr revid: fp@tinyerp.com-20111001202818-96m3m5h2o3zktkji
2011-10-01 22:28:18 +02:00
Fabien Pinckaers 017d40fc5e [IMP] useability views
bzr revid: fp@tinyerp.com-20111001201753-cce36q1u5jdbl92z
2011-10-01 22:17:53 +02:00
Fabien Pinckaers d9dc200688 [IMP] useability views
bzr revid: fp@tinyerp.com-20111001201044-pmttdc810josm8a9
2011-10-01 22:10:44 +02:00
Fabien Pinckaers e70a409af1 [IMP] useability views
bzr revid: fp@tinyerp.com-20111001200247-tqyw0w8zomrq0jil
2011-10-01 22:02:47 +02:00
Fabien Pinckaers 26c6e4440b [IMP] useability views
bzr revid: fp@tinyerp.com-20111001194726-liqdsa2ga5f48cqn
2011-10-01 21:47:26 +02:00
Fabien Pinckaers 501b02d2b2 [IMP] useability views
bzr revid: fp@tinyerp.com-20111001194303-kt62bd25odvl30i6
2011-10-01 21:43:03 +02:00
Fabien Pinckaers 49ab1f660c [IMP] fetchmail useability
bzr revid: fp@tinyerp.com-20111001192612-bgyiugp815evia5r
2011-10-01 21:26:12 +02:00
Fabien Pinckaers 8cf0d19c51 [IMP] useability config wizards
bzr revid: fp@tinyerp.com-20111001192115-mgkx8mbmx34ps5xo
2011-10-01 21:21:15 +02:00
Antony Lesuisse ac534c9f84 [MERGE] correct fp-style merge
bzr revid: al@openerp.com-20111001192423-01nj3181gw0qbg2j
2011-10-01 21:24:23 +02:00
Fabien Pinckaers 57b86a1040 merge
bzr revid: fp@tinyerp.com-20111001184811-umj7qepl2ly9jh0d
2011-10-01 20:48:11 +02:00
Fabien Pinckaers ac214af8d0 [IMP] config wizards
bzr revid: fp@tinyerp.com-20111001184625-57er05vgdir4lgwd
2011-10-01 20:46:25 +02:00
Antony Lesuisse 3a12aa8d7c [FIX] dont use werkzeug.urls not available in 0.5 (lucid)
bzr revid: al@openerp.com-20111001175924-s1rk41xx2i22plax
2011-10-01 19:59:24 +02:00
Antony Lesuisse 84f188ce7d [MERGE] ir_sequence remove unused codes and cleanups
bzr revid: al@openerp.com-20111001111926-e7iu4a2lov9i57ft
2011-10-01 13:19:26 +02:00
Antony Lesuisse 0bf7a82a13 [FIX] l10n_ch journals
bzr revid: al@openerp.com-20111001105155-v1divpeiv4lf9t3c
2011-10-01 12:51:55 +02:00
Antony Lesuisse 756cc2efc6 [FIX] sale tests
bzr revid: al@openerp.com-20111001103301-q4sso7nlangda928
2011-10-01 12:33:01 +02:00
Antony Lesuisse c1db529fa6 [IMP] stock create a stock journal sequence
bzr revid: al@openerp.com-20111001100804-9pdy1k8r761ieoal
2011-10-01 12:08:04 +02:00
Antony Lesuisse a1e940627b [IMP] rename invoice into account_invoice
bzr revid: al@openerp.com-20111001095720-h2prjp5due7rukir
2011-10-01 11:57:20 +02:00
Antony Lesuisse dfb06e8927 [IMP] sequence rename
bzr revid: al@openerp.com-20111001094046-oegvubdeivrgnij3
2011-10-01 11:40:46 +02:00
Antony Lesuisse 92300c9c63 [IMP] Remove account sequence code madness
bzr revid: al@openerp.com-20111001093437-hplwdkq57wcspcv9
2011-10-01 11:34:37 +02:00
Launchpad Translations on behalf of openerp 1e3e2daffa Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111001050744-5qxl5nnc5m0splxj
bzr revid: launchpad_translations_on_behalf_of_openerp-20111001050814-3bw7ldbt1om0q1zr
2011-10-01 05:08:14 +00:00
Antony Lesuisse 2a761b1f18 [MERGE] account ir_sequence new api
bzr revid: al@openerp.com-20111001000827-070zkpw85mnadcv1
2011-10-01 02:08:27 +02:00
Antony Lesuisse 53c6ab6752 [IMP] rename sequence into ir_sequence
bzr revid: al@openerp.com-20111001000455-opnivkh5nvvutv2y
2011-10-01 02:04:55 +02:00
Antony Lesuisse ee70781dbe [IMP] account ir_sequence fiscal year using the new _next api
bzr revid: al@openerp.com-20110930233630-c8pbenf99yaekt3t
2011-10-01 01:36:30 +02:00
Antony Lesuisse 663d056d6a [FIX] auth_openid web_preload is deprecated use --load=auth_openid
bzr revid: al@openerp.com-20110930201308-rc5sgueu4ixrvu02
2011-09-30 22:13:08 +02:00
Antony Lesuisse 4ec1113d94 [IMP] deprecate web_preload in favor of --load, server_wide_modules config option
bzr revid: al@openerp.com-20110930201018-aw9s26iqyd6rns05
2011-09-30 22:10:18 +02:00
Antony Lesuisse 859cf8ed3c [MERGE] auth_openid disabled by default
bzr revid: al@openerp.com-20110930185842-tqke1bdyhuogkcag
2011-09-30 20:58:42 +02:00
Antony Lesuisse d83c9f8bc0 [MERGE] new livechat web module chs
bzr revid: al@openerp.com-20110930184905-z94od8uc6yvsfytw
2011-09-30 20:49:05 +02:00
niv-openerp ea79880c3c [imp] disable buttons in form views during the execution of its action
bzr revid: nicolas.vanhoren@openerp.com-20110930161506-bbffc4gjdt43pbvn
2011-09-30 18:15:06 +02:00
Stephane Wirtel c4d51e5acb [IMP] base_setup: Set the default modules to load when the user
selects a category
[IMP] base_setup: Show the expert modules only if the user is in the
extended group

bzr revid: stw@openerp.com-20110930154956-si1rkeiifhh90tqd
2011-09-30 17:49:56 +02:00
Stephane Wirtel 7c93366eab [FIX] Update the categories of some modules
bzr revid: stw@openerp.com-20110930154646-9tr60seb389nw3yd
2011-09-30 17:46:46 +02:00
niv-openerp c3d08fa5dd [fix] problem with o2m displaying clickable button in unsaved record
bzr revid: nicolas.vanhoren@openerp.com-20110930154612-d2q5z3fy1ouih1fm
2011-09-30 17:46:12 +02:00
Vo Minh Thu f734d04490 [FIX] account/sequence: forgot the fallback case.
bzr revid: vmt@openerp.com-20110930154550-49m7dwzcpylnz91s
2011-09-30 17:45:50 +02:00
Vo Minh Thu 4d1c62316c [MERGE] merged trunk.
bzr revid: vmt@openerp.com-20110930151630-kd84ev0vvs4iu6n8
2011-09-30 17:16:30 +02:00
Christophe Simonis c71520ea0d [IMP] web_livechat: convert to 6.1 web module
bzr revid: chs@openerp.com-20110930150706-84xo4e21l58j9esw
2011-09-30 17:07:06 +02:00
Xavier Morel d4d2b1b5b8 [FIX] don't break when @colors end with a semicolon
bzr revid: xmo@openerp.com-20110930132941-mw8byod4xanb8dat
2011-09-30 15:29:41 +02:00
Christophe Simonis d028d22992 [ADD] auth_openid module
bzr revid: chs@openerp.com-20110930132858-jsxqo21l7pn172av
2011-09-30 15:28:58 +02:00
Julien Thewys 32cdec2c72 [FIX] hr_holidays: made 2 view titles more consistent
Ported from 6.0

bzr revid: jth@openerp.com-20110930132124-0iobx63ylsz352oe
2011-09-30 15:21:24 +02:00
niv-openerp d364df65ce [fix] lot of potential problems when we change something in the code due to the pickled session containing the config
bzr revid: nicolas.vanhoren@openerp.com-20110930130729-yfys0tklsujgm3ti
2011-09-30 15:07:29 +02:00
niv-openerp c3a9330838 [imp] removed some useless parameters in the openerp session
bzr revid: nicolas.vanhoren@openerp.com-20110930125809-x6n119zuu9o546u7
2011-09-30 14:58:09 +02:00
Stephane Wirtel cb13a76208 [FIX] base_setup: the web client can't parse the literal value in the
on_change event. We use a workaround to bypass this kind of problem.

bzr revid: stw@openerp.com-20110930115144-nwog9ac6a5dzv1xj
2011-09-30 13:51:44 +02:00
Olivier Dony 0bb9cbd51b [FIX] sale: slightly more robust default shop definition
bzr revid: odo@openerp.com-20110930105111-a3no58iprq0qwm55
2011-09-30 12:51:11 +02:00
Bharat (OpenERP) db1acdf996 [IMP] hr : added or condition 0.0 in amount variable of account_analytic_line.py of account module
bzr revid: bde@tinyerp.com-20110930095942-8ixwtg11g5mvhifk
2011-09-30 15:29:42 +05:30
Yogesh(Open ERP) 44bec2ef36 [FIX] hr : when creating a new record of evaluation
lp bug: https://launchpad.net/bugs/862140 fixed

bzr revid: bde@tinyerp.com-20110930091534-b5jp76qfbkm9yzus
2011-09-30 14:45:34 +05:30
Stephane Wirtel 4705ae9352 [REF] base_setup: Remove the definition of ir_module_category because
defined in the server
[FIX] base_setup: Set the rights variables and containers for the
algo.
[REF] base_setup: Use some code for the development of this wizard
(sorry)

bzr revid: stw@openerp.com-20110930090929-lqj8lbmivsrkjmbb
2011-09-30 11:09:29 +02:00
Ujjvala Collins (OpenERP) 0910749ef8 [IMP] point_of_sale: Small improvements.
bzr revid: uco@tinyerp.com-20110930085049-53nfiptok3xcx37g
2011-09-30 14:20:49 +05:30
Ujjvala Collins (OpenERP) e8c77666e0 [IMP] point_of_sale: Improved string.
bzr revid: uco@tinyerp.com-20110930083548-vm2x72t38dio33lo
2011-09-30 14:05:48 +05:30
Olivier Dony c39513038a [FIX] share: un-needed groups attribute, also contains typo
lp bug: https://launchpad.net/bugs/863089 fixed

bzr revid: odo@openerp.com-20110930082749-noyygg1rvpmd9343
2011-09-30 10:27:49 +02:00
Xavier Morel 6bb8d8ea85 [ADD] readonly & movable form view
bzr revid: xmo@openerp.com-20110930081247-wl1d0i7hz206244o
2011-09-30 10:12:47 +02:00
Ujjvala Collins (OpenERP) caf42da3e3 [FIX] point_of_sale: Fixed AttributeError on Make Payment wizard when no demo data loaded.
lp bug: https://launchpad.net/bugs/856501 fixed

bzr revid: uco@tinyerp.com-20110930071248-570qszd7rft2p6y3
2011-09-30 12:42:48 +05:30
Launchpad Translations on behalf of openerp 8507f7cc4a Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110930043724-cv7w2vcqt7soa9gc
bzr revid: launchpad_translations_on_behalf_of_openerp-20110930044048-j5gv3hmo9cj3dhyg
2011-09-30 04:40:48 +00:00
Antony Lesuisse 9fbcaa2d06 [IMP] audittrail cleanup and speedup
- test for auditrail before anything else
- dont allocate a different cursor

bzr revid: al@openerp.com-20110929222347-c2ywh8nwhl27d9uv
2011-09-30 00:23:47 +02:00
Stephane Wirtel c536edf45f [REF] base_setup: Rewrite the code of fields_view_get
[IMP] base_setup: Compute the modules to install with the selection
from the user

bzr revid: stw@openerp.com-20110929160817-8cjtaznqgyl6110h
2011-09-29 18:08:17 +02:00
niv-openerp eb92957c8c [fix] obvious bug, field used in a on_change but not declared in the view
bzr revid: nicolas.vanhoren@openerp.com-20110929154007-gtxf31frsuukepvf
2011-09-29 17:40:07 +02:00
niv-openerp 58ece9f856 [fix] error message when login invalid broken
bzr revid: nicolas.vanhoren@openerp.com-20110929151322-zcymbsemo962ky0j
2011-09-29 17:13:22 +02:00