Commit Graph

1580 Commits

Author SHA1 Message Date
Olivier Dony a58a2a5e18 [MERGE] orm: dead code removal, courtesy of Olivier Macchioni
bzr revid: odo@openerp.com-20111222212859-z8svmrd3yosduelo
2011-12-22 22:28:59 +01:00
Olivier Dony be9a509e58 [MERGE] sync with latest trunk
bzr revid: odo@openerp.com-20111222202356-6u22um5kc9yuusxc
2011-12-22 21:23:56 +01:00
Olivier Dony 3bf839996c [I18N] base: updated translation template
bzr revid: odo@openerp.com-20111222202225-bfyk0uzmakgt1tle
2011-12-22 21:22:25 +01:00
Olivier Dony 482aee1951 [IMP] fields.sparse: custom sparse field creation now working + handle deleted resources properly
bzr revid: odo@openerp.com-20111222182405-425rzyl6idg9aocu
2011-12-22 19:24:05 +01:00
Olivier Dony 24b283567d [FIX] orm: typos
bzr revid: odo@openerp.com-20111222182023-kspwaukocijhh4cq
2011-12-22 19:20:23 +01:00
Quentin (OpenERP) a1e8dc5f12 [MERGE] merged the dev branch with us letter format support for RML files
bzr revid: qdp-launchpad@openerp.com-20111222151559-1jmgkd1ykkj6iuau
2011-12-22 16:15:59 +01:00
Vo Minh Thu 6bb854b893 [MERGE] merged the new floats rounding code.
bzr revid: vmt@openerp.com-20111222111551-3np72b3u6qt8lkeo
2011-12-22 12:15:51 +01:00
Vo Minh Thu 1039b40257 [MERGE] merged branch to handle the new exceptions with netrpc (was done for xmlrpc but not for netrpc).
bzr revid: vmt@openerp.com-20111222104456-xd5y13zzdkmlqwng
2011-12-22 11:44:56 +01:00
Olivier Dony d925235e62 [MERGE] sync with trunk
bzr revid: odo@openerp.com-20111222102555-bydsozbdu6urkj31
2011-12-22 11:25:55 +01:00
Olivier Dony 0eb2986e15 [IMP] safe_eval: allow INPLACE* operator opcodes as introduced in PEP-203
bzr revid: odo@openerp.com-20111222101106-h3qbhx53hyhyjor5
2011-12-22 11:11:06 +01:00
Vo Minh Thu 4e2d5eba1c [IMP] module loading: iterate on the module graph in deterministic order (by sorting modules for each level).
bzr revid: vmt@openerp.com-20111222090156-us0zccgy50buoi13
2011-12-22 10:01:56 +01:00
Olivier Dony 1638303686 [MERGE] res.partner.category: add short name_get variant (context toggle), courtesy of Numerigraphe
bzr revid: odo@openerp.com-20111221145443-js9nydzwa2vx4un4
2011-12-21 15:54:43 +01:00
Olivier Dony cbfbf78e05 [ADD] view.rng: new @options attribute for field widgets
This attribute is supposed to be a JSON dict containing
arbitrary widget-specific options. To be ignored if the
widget or client does not support them.

bzr revid: odo@openerp.com-20111221110301-ejjm4s4f2vttw2r6
2011-12-21 12:03:01 +01:00
Rucha (Open ERP) 628e8540a1 [IMP]: Improvements to format report pageSize according to company paper format(US letter/A4)
bzr revid: rpa@tinyerp.com-20111221092446-48bqtxwfvmgpt49l
2011-12-21 14:54:46 +05:30
Rucha (Open ERP) 077d7c275c [ADD, IMP]: res.company: Added new field in company for paper format which is used to format report pageSize
bzr revid: rpa@tinyerp.com-20111221092344-0mftzklmd6wrlsws
2011-12-21 14:53:44 +05:30
Olivier Dony e410b81cc4 [FIX] fields.float: always round floats when persisting
Added test to try a full round-trip to
the database as well to make sure the
automatic rounding is working properly.

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

bzr revid: odo@openerp.com-20111221011100-gybt9pjdfpg4wc86
2011-12-21 02:11:00 +01:00
Olivier Dony 68e03147ff [MERGE] latest trunk
bzr revid: odo@openerp.com-20111220235717-845hp2z5g8yglw1w
2011-12-21 00:57:17 +01:00
Olivier Dony 759ccd9845 [IMP] float_utils: simplified code, added float_repr
lp bug: https://launchpad.net/bugs/882036 fixed

bzr revid: odo@openerp.com-20111220234740-kotcgoz3opcbkx4b
2011-12-21 00:47:40 +01:00
Olivier Dony 707bf0d8aa [FIX] fields.float: properly round when coercing to desired float precision
lp bug: https://launchpad.net/bugs/882036 fixed

bzr revid: odo@openerp.com-20111220170328-nvutckcxnitkcq9d
2011-12-20 18:03:28 +01:00
Fabien Pinckaers 80c3d2c892 [IMP] removed raise on name_create partner
bzr revid: fp@tinyerp.com-20111220165541-n7g5btjjv8asj2jx
2011-12-20 17:55:41 +01:00
Antony Lesuisse aa9f466119 [FIX] config blacklist stop_after_init
bzr revid: al@openerp.com-20111220164554-ygdxgz6zpecf7geh
2011-12-20 17:45:54 +01:00
Olivier Dony ed53ef4761 [IMP] float_utils: fix HALF_UP rounding according to discussions on bug 882036
Also improved test and added warning logging when
crossing the precision limit due to too many
significant digits. There is apparently a limitation
in Python's float implementation for this.

bzr revid: odo@openerp.com-20111220163420-lz0sh1h0yjkh6jdc
2011-12-20 17:34:20 +01:00
Olivier Dony 250772d403 [FIX] read_group: NULL->False for grouped boolean fields
We need to coalesce NULLs to False when grouping
boolean fields, otherwise we get duplicate groups
sharing the same rows.

bzr revid: odo@openerp.com-20111220151131-xir8dv7sdy9hbrfx
2011-12-20 16:11:31 +01:00
Olivier Dony 07f2cdf4d2 [IMP] res.partner: wording+todo for name_create()
bzr revid: odo@openerp.com-20111220141204-bypzd7gvi1maveuw
2011-12-20 15:12:04 +01:00
Fabien Pinckaers 19a9a1d595 [IMP] useability seach opportunity
bzr revid: fp@tinyerp.com-20111220102333-dv8v47wkgf4v0laf
2011-12-20 11:23:33 +01:00
Raphael Collet df44e44cc2 [FIX] base/module: typo in xml id and name of module category
bzr revid: rco@openerp.com-20111220083716-n5ri0z1re0c62jzv
2011-12-20 09:37:16 +01:00
Antony Lesuisse c6bddbdd49 [MERGE] module kaban padding fixes (manual merge)
bzr revid: al@openerp.com-20111220004135-fafhd3w1l0ovsdie
2011-12-20 01:41:35 +01:00
Fabien Pinckaers 3d364c3de1 [IMP] allow non integer for ID's
bzr revid: fp@tinyerp.com-20111219220954-mlqe3f6gkonlzor3
2011-12-19 23:09:54 +01:00
Roberto López López (OpenERP) 578410ae9f [FIX] wrong access to property
bzr revid: rlo@openerp.com-20111219134925-ymujigvtt9pa7v78
2011-12-19 14:49:25 +01:00
Olivier Dony dcd1c1daff [IMP] float_utils: better variable names, explain /epsilon/ usage
bzr revid: odo@openerp.com-20111219105718-0jbz01rirl0s64ca
2011-12-19 11:57:18 +01:00
Raphael Collet f17b864c63 [FIX] res_users: add explicitly False in non-required selection group fields
bzr revid: rco@openerp.com-20111219083458-e0uqpa9vx52lnr9p
2011-12-19 09:34:58 +01:00
Rucha (Open ERP) afb2735412 [MERGE]: Merge with latest trunk-server
bzr revid: rpa@tinyerp.com-20111219062214-1md1y0k594ygzqx5
2011-12-19 11:52:14 +05:30
Fabien Pinckaers 3b0419ddc8 [IMP] module in categ links are installed automatically
bzr revid: fp@tinyerp.com-20111218213817-8yyeeaqcigrmftwr
2011-12-18 22:38:17 +01:00
Fabien Pinckaers f413683b8d [IMP] order of main apps/modules
bzr revid: fp@tinyerp.com-20111218204746-q4y3kzaukitwtg0l
2011-12-18 21:47:46 +01:00
Fabien Pinckaers dcfb40f18e [IMP] order of main apps/modules
bzr revid: fp@tinyerp.com-20111218204731-50g37bd7un5igr84
2011-12-18 21:47:31 +01:00
Fabien Pinckaers 0cfe50155d [FIX] small bug in address
bzr revid: fp@tinyerp.com-20111218114443-lary2ovig5tznwl8
2011-12-18 12:44:43 +01:00
Olivier Dony 9ddd05fb3a [REF] float_utils: moved in its own python module
bzr revid: odo@openerp.com-20111216160426-gya8d1d1zymcz8os
2011-12-16 17:04:26 +01:00
Olivier Dony 6add700d7a [MERGE] latest trunk
bzr revid: odo@openerp.com-20111216155624-3nvdsaurjsdo44mx
2011-12-16 16:56:24 +01:00
Olivier Dony 1afb14ddc4 [FIX] modules: temporaty fix to allow installing hidden/technical modules
A better way to hide technical modules and a better thought
classification for Apps/Extra/Technical modules should still
be done before releasing 6.1

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

bzr revid: odo@openerp.com-20111216154532-tb23vjkdyc4dk53i
2011-12-16 16:45:32 +01:00
Numerigraphe - Lionel Sausin eec9f019f0 [IMP] base: allow the category name to not include the parents if the context requires it
bzr revid: ls@numerigraphe.fr-20111215145604-wu2muv9m9gb9c9h4
2011-12-15 15:56:04 +01:00
Launchpad Translations on behalf of openerp 2d1baf3dda Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111216052448-trqaat8m6335nctw
bzr revid: launchpad_translations_on_behalf_of_openerp-20111216052507-5r7nig2ys4fyef7f
bzr revid: launchpad_translations_on_behalf_of_openerp-20111216060814-z34sm1fdvd230j37
2011-12-16 06:08:14 +00:00
Olivier Dony 525d60523e [FIX] res.users: no global var for filtering groups, rather an overridable method
bzr revid: odo@openerp.com-20111215154048-qz7o4qqj9d1g439k
2011-12-15 16:40:48 +01:00
Olivier Dony 1cbaae1b4d [MERGE] ir.sequence: Fix bug 863221 - higher priority for current company sequences
bzr revid: odo@openerp.com-20111215152635-u5ajjake19a2gxzk
2011-12-15 16:26:35 +01:00
Raphael Collet 3f2345e0ae [MERGE] demo data: remove salesman on customers
bzr revid: rco@openerp.com-20111215125733-ikzn0vlyw3kx1d3m
2011-12-15 13:57:33 +01:00
Olivier Dony 86f2aef370 [FIX] res_users: side-effect of virtual groups prevented users from saving their prefs
lp bug: https://launchpad.net/bugs/904626 fixed

bzr revid: odo@openerp.com-20111215120741-1lne9fjs67d7c42k
2011-12-15 13:07:41 +01:00
Naresh (OpenERP) 51d4bf6106 [IMP]:removed salesman assigned to demo data partners
lp bug: https://launchpad.net/bugs/904150 fixed

bzr revid: nch@tinyerp.com-20111215072038-0z4qjsaw2gjbzerq
2011-12-15 12:50:38 +05:30
Naresh (OpenERP) 2fb2cd708d [FIX]:exception handling in netrpc
lp bug: https://launchpad.net/bugs/869936 fixed

bzr revid: nch@tinyerp.com-20111215064602-m1x9fflb20l5kw5a
2011-12-15 12:16:02 +05:30
Olivier Macchioni f3eedcd6e3 [FIX] removed dead code
bzr revid: mac@olivier-macchionis-macbook-pro-2.local-20111214222102-s22izy21xejtwrmu
2011-12-14 23:21:02 +01:00
Serpent Consulting Services 1bd89dd27e [FIX] Company : Size of name field has to be reset as it depends on name of corresponding partner
lp bug: https://launchpad.net/bugs/904408 fixed

bzr revid: support@serpentcs.com-20111214195711-hioab78akz1ugums
2011-12-15 01:27:11 +05:30
Antony Lesuisse 3ffb9b8134 [IMP] module kanban
bzr revid: al@openerp.com-20111214183512-pchd9e7b8h39h1an
2011-12-14 19:35:12 +01:00
Minh Tran aa61ec52f5 Changed the default module icon
bzr revid: mit@openerp.com-20111214145401-2ycdd3u8i0ctmqwa
2011-12-14 15:54:01 +01:00
Christophe Simonis 41a105f744 [FIX] menu loading after immediate install of modules
bzr revid: chs@openerp.com-20111213151207-hj7xnc5980ahvv2i
2011-12-13 16:12:07 +01:00
Raphael Collet 84d3670c94 [MERGE] users and groups: new implementation of group fields on users form view
bzr revid: rco@openerp.com-20111213141632-vk1uandq3q0szdbq
2011-12-13 15:16:32 +01:00
Olivier Dony 075a5917e7 [FIX] ir.module search view: filters/fields need unique names
bzr revid: odo@openerp.com-20111213123412-bebrvt1ry7ld8qet
2011-12-13 13:34:12 +01:00
Olivier Dony 295cd51e38 [MERGE] Fix bug 901601, add default GTK icon for kanban/gantt actions
bzr revid: odo@openerp.com-20111213120225-o264d1wgwgz4ztvt
2011-12-13 13:02:25 +01:00
Christophe Simonis 9d44cb7fcd [FIX] display config after immediate install (if any)
bzr revid: chs@openerp.com-20111213114442-tcyuyazfvfo868ul
2011-12-13 12:44:42 +01:00
Naresh (OpenERP) e7f3e590b7 [REF]:
bzr revid: nch@tinyerp.com-20111213105146-fz6fejswta7mzfcp
2011-12-13 16:21:46 +05:30
Launchpad Translations on behalf of openerp 78f56f29f2 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111213050134-6nnnre8jpmgfexbf
bzr revid: launchpad_translations_on_behalf_of_openerp-20111213050209-stiq9yo8ce9z4lrl
2011-12-13 05:02:09 +00:00
Fabien Pinckaers 33642e464a [IMP] useability board amdin
bzr revid: fp@tinyerp.com-20111212162133-ykfruug7qns3fwe9
2011-12-12 17:21:33 +01:00
Fabien Pinckaers a8eef55c42 [IMP] do not show hidden modules
bzr revid: fp@tinyerp.com-20111212152709-wokl96u6u35tt8yi
2011-12-12 16:27:09 +01:00
Fabien Pinckaers b82cb38fdc [IMP] improved useability on modules
bzr revid: fp@tinyerp.com-20111212150440-8qkqqis42r4e9kcb
2011-12-12 16:04:40 +01:00
Antony Lesuisse 71543213cc [IMP] immeditate install, remove old web modules
bzr revid: al@openerp.com-20111212111419-55497mnuzsouyjun
2011-12-12 12:14:19 +01:00
Antony Lesuisse d47871a6e7 [FIX] more web removal
bzr revid: al@openerp.com-20111212105714-2qadzhd4kga9qqdq
2011-12-12 11:57:14 +01:00
Antony Lesuisse 799340ad0a [IMP] immediate install, remove old web modules
bzr revid: al@openerp.com-20111212104029-fn7h53l24c7349j8
2011-12-12 11:40:29 +01:00
Fabien Meghazi 89ee71e742 [IMP] Change in dashboard view api. @creatable is an action id, not a form view id
bzr revid: fme@openerp.com-20111212095711-hvtk2sa92cnz6oxw
2011-12-12 10:57:11 +01:00
Fabien Pinckaers e0136c19f0 [FIX] better search view on modules
bzr revid: fp@tinyerp.com-20111211205720-xe79qthtfievoowv
2011-12-11 21:57:20 +01:00
Fabien Pinckaers f8ef59db7e [FIX] workflow returning actions
bzr revid: fp@tinyerp.com-20111211102140-8zyihjdldfbas85u
2011-12-11 11:21:40 +01:00
Xavier Morel fd0d1109a0 [ADD] method returning the list of menus installed by a given module
bzr revid: xmo@openerp.com-20111209165806-k0suwwe6a86y4rg3
2011-12-09 17:58:06 +01:00
Minh Tran 610f046878 [IMP] Some css tweaks in the kanban module vignette
bzr revid: mit@openerp.com-20111209165436-16e2y78hbb8w19g8
2011-12-09 17:54:36 +01:00
Raphael Collet 6ae2f3b3e6 [FIX] res_users: ignore group fields in create and write when 'groups_id' is given
bzr revid: rco@openerp.com-20111209151855-hw23dp6a3ycs3pj8
2011-12-09 16:18:55 +01:00
Raphael Collet a15cfa48c6 [IMP] res_users: improve create, write, read, and default_get with group fields
bzr revid: rco@openerp.com-20111209134658-vmvfvlngoa1wd7y1
2011-12-09 14:46:58 +01:00
Raphael Collet e85fd9b685 [IMP] res_users: add domain when searching for groups by application
bzr revid: rco@openerp.com-20111209124821-vcvsjlwacb3xtz90
2011-12-09 13:48:21 +01:00
Xavier Morel 9e94b86bfe [IMP] icon management in modules
* If icon is present in descriptor file, use that path
* Else try to find #{module}/static/src/img/icon.png
* Else fallback on /base/static/src/img/icon.png

bzr revid: xmo@openerp.com-20111209122803-elwonegpl8kut7pf
2011-12-09 13:28:03 +01:00
Xavier Morel c25475879c [IMP] opening and getting data from module description file
bzr revid: xmo@openerp.com-20111209120207-3kkyvwedbjez29rl
2011-12-09 13:02:07 +01:00
Xavier Morel 80de80c7dd [IMP] reduce noise in setting default values of module descriptor file
bzr revid: xmo@openerp.com-20111209115316-2gqwmn2pi34vzu29
2011-12-09 12:53:16 +01:00
Xavier Morel 89eb114091 [ADD] API for immediate installation of modules (modules kanban view), buttons everywhere, remove weird kanban image fallback
bzr revid: xmo@openerp.com-20111209114002-dlz79hxft05bhnqx
2011-12-09 12:40:02 +01:00
Naresh (OpenERP) 978299a26c [IMP]:added default icon for kanban and gantt view
lp bug: https://launchpad.net/bugs/901601 fixed

bzr revid: nch@tinyerp.com-20111209111336-8sqgc9z9ska1yer8
2011-12-09 16:43:36 +05:30
Raphael Collet ace110935c [IMP] module: improve form view of ir.module.category
bzr revid: rco@openerp.com-20111209103553-rizqndp6ucf0mk4n
2011-12-09 11:35:53 +01:00
Raphael Collet 41501317ed [FIX] res_users: group fields shall be removed before write
bzr revid: rco@openerp.com-20111209103053-wnolmypihzj95b9u
2011-12-09 11:30:53 +01:00
Raphael Collet 705e3a1346 merge from trunk
bzr revid: rco@openerp.com-20111209101101-ut4brstg8nmet03c
2011-12-09 11:11:01 +01:00
Raphael Collet 251dc86e67 [IMP] res_users: improve get_groups_by_application
bzr revid: rco@openerp.com-20111209092700-v7vbcgmliydmo6up
2011-12-09 10:27:00 +01:00
Raphael Collet 823c79f510 [FIX] res_users: avoid coalesce in uniqueness constraint (not well supported)
bzr revid: rco@openerp.com-20111209081110-88zlxdt46tq4is4l
2011-12-09 09:11:10 +01:00
Raphael Collet cda72d1e96 [IMP] res_users: implement sorting on full_name
bzr revid: rco@openerp.com-20111209080319-otm4tr2ezw60109l
2011-12-09 09:03:19 +01:00
Raphael Collet 0940bea6f1 [IMP] make module category and group names translatable
bzr revid: rco@openerp.com-20111209080239-n58y4se9n6pjcll2
2011-12-09 09:02:39 +01:00
Antony Lesuisse 926041c8b8 [MERGE] module kanban
bzr revid: al@openerp.com-20111208224332-4wg6k0w1uzuwlyum
2011-12-08 23:43:32 +01:00
Antony Lesuisse 7e12f46469 [IMP] ir.module.module: rename is_application to application
bzr revid: al@openerp.com-20111208222241-n9raoe1jec4llh26
2011-12-08 23:22:41 +01:00
Minh Tran 3a84d1c8b0 Changed modules icons in the vignette
bzr revid: mit@openerp.com-20111208161124-o325usj9ikheewv8
2011-12-08 17:11:24 +01:00
Fabien Meghazi cf6fedf5bb [ADD] Add 'creatable' attribute to dashboard's action tags
bzr revid: fme@openerp.com-20111208160359-uyb3jx719s5iwevo
2011-12-08 17:03:59 +01:00
Christophe Simonis 9b9d4f0928 [IMP] ir.module.module: rename 'core' to 'is_application'
bzr revid: chs@openerp.com-20111208145101-oth2k8xuymze7y2l
2011-12-08 15:51:01 +01:00
Minh Tran 229e507a4b [IMP] Relooking of the modules vignette, the Kanban view is now the default view for the module screen.
bzr revid: mit@openerp.com-20111207185058-xb5b4z8cz0zd6gla
2011-12-07 19:50:58 +01:00
Raphael Collet 8059d3cadc [IMP] res_users: improve code for arch view generation
bzr revid: rco@openerp.com-20111207123504-g2mvkk4g4cp0exga
2011-12-07 13:35:04 +01:00
Raphael Collet f1fc682639 [FIX] res_users: do not store field 'full_name' of groups, as this would not work with translations
bzr revid: rco@openerp.com-20111207121101-cwjvy6dfu67ryh26
2011-12-07 13:11:01 +01:00
Raphael Collet bfaff8a48f merge from trunk
bzr revid: rco@openerp.com-20111207112438-9598ucb1vj0zt1g4
2011-12-07 12:24:38 +01:00
Raphael Collet ec12c2d32a [IMP] res_users: add comments
bzr revid: rco@openerp.com-20111207085002-ft2u77qab1m259d2
2011-12-07 09:50:02 +01:00
Raphael Collet c029699c5e [FIX] res_users: fix write() on selection group fields
bzr revid: rco@openerp.com-20111207084419-14xffbe63qa12g5y
2011-12-07 09:44:19 +01:00
Raphael Collet 92ce00ddb5 [IMP] res_users: simplify code
bzr revid: rco@openerp.com-20111207084332-y97sss2jx1cdztt3
2011-12-07 09:43:32 +01:00
Raphael Collet fdfcf965db [IMP] res_users: remove unused stuff
bzr revid: rco@openerp.com-20111206163200-pmw8n30nlnjn3foy
2011-12-06 17:32:00 +01:00
Raphael Collet 96878a5fc6 [IMP] res_users: remove unused methods get_closure and get_maximal
bzr revid: rco@openerp.com-20111206162356-rysxwfb47h3javtg
2011-12-06 17:23:56 +01:00
Raphael Collet a3424cf3e2 [IMP] res_users: improve comments
bzr revid: rco@openerp.com-20111206162020-tql7kmggqirq0oy6
2011-12-06 17:20:20 +01:00
Fabien Pinckaers 8e1990a562 [IMP] Access Rights on Modules Installation
bzr revid: fp@tinyerp.com-20111206161732-yf8dwoqde63je8nf
2011-12-06 17:17:32 +01:00