Commit Graph

33282 Commits

Author SHA1 Message Date
Xavier Morel deed2ac28c [FIX] incorrect traversal of the tree: field handling the parent-child relationship *must not* be hardcoded (it's provided by fields_view_get)
Also parent records provide the ids of their children directly, and fvg gives the name of the field in which these children live, there is no need to perform a search + read for every level of the tree past the first one, just perform a read() of the provided ids

bzr revid: xmo@openerp.com-20110809085628-klvic2fmlvfmxjt3
2011-08-09 10:56:28 +02:00
Xavier Morel 4aba2baf63 [IMP] only fetch fields we *need* when loading first level of treeview
bzr revid: xmo@openerp.com-20110809081247-789cmdb88nrdq306
2011-08-09 10:12:47 +02:00
Xavier Morel 864e850e97 [FIX] set action domain in the SearchDataSet in ViewManagerAction, use that to query the first treeview level
bzr revid: xmo@openerp.com-20110809081136-1q1nowzq4xj4jcwu
2011-08-09 10:11:36 +02:00
Xavier Morel f951ca003d [FIX] revision fme@openerp.com-20110808171407-mfclmemaljegwsgg missed some references to openerp.base.Dialog.options which should have been renamed to dialog_options
bzr revid: xmo@openerp.com-20110809074712-dyf3hkdrisj561x4
2011-08-09 09:47:12 +02:00
Launchpad Translations on behalf of openerp 4c6e88ba46 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110809045042-2gdi00rnxmh7s0ki
2011-08-09 04:50:42 +00:00
Fabien Meghazi e0fdc7078b [FIX] Fixed views options
bzr revid: fme@openerp.com-20110808173230-fdzbdeaegxpnszd1
2011-08-08 19:32:30 +02:00
Fabien Meghazi 16c38f64c7 [IMP] Dialog: renamed @options to @dialog_options in order to allow mixin without property collision
bzr revid: fme@openerp.com-20110808171407-mfclmemaljegwsgg
2011-08-08 19:14:07 +02:00
Fabien Meghazi 1a9e157eb5 [FIX] Avoid creating sidebar each time the list view reloads itself
bzr revid: fme@openerp.com-20110808163900-qxowalfph0xeypmg
2011-08-08 18:39:00 +02:00
Xavier Morel 05a9546794 [FIX] invisible and tree_invisible, cleanup template and remove duplications, simplify code, correctly use modifiers
bzr revid: xmo@openerp.com-20110808152343-p3pj1mx85uiofi63
2011-08-08 17:23:43 +02:00
Fabien Meghazi 6322a565f5 [IMP] Added View#do_switch_view
[REM] Removed references to view_manager out of list view

bzr revid: fme@openerp.com-20110808144120-xlut0922rd61moxc
2011-08-08 16:41:20 +02:00
Xavier Morel 46563bd391 [FIX] first code cleanup
* Remove unneeded fields_get in load, simplify return format for load (just return fields_view_get result)
* Simplify generation of base select for first level of records
* Remove special handling of selection fields

bzr revid: xmo@openerp.com-20110808143718-brwd62w7jy344d8r
2011-08-08 16:37:18 +02:00
Fabien Meghazi a0a0505c7e [FIX] Fixed event deletion in calendar view
bzr revid: fme@openerp.com-20110808141840-8gxx1ssqd5e0l8y1
2011-08-08 16:18:40 +02:00
Fabien Meghazi ab2d202ed9 [FIX] Prevent field focus on embeded views
bzr revid: fme@openerp.com-20110808130847-vz15aorcqel040nu
2011-08-08 15:08:47 +02:00
Quentin (OpenERP) f02dc603db [FIX] crm_partner_assign: switch latitude and longitude fields
bzr revid: qdp-launchpad@openerp.com-20110808124110-vi2q17dbvsadale4
2011-08-08 14:41:10 +02:00
Fabien Meghazi be0778eff1 [FIX] Dashboard could not be reloaded with 'Reset' button
bzr revid: fme@openerp.com-20110808123830-1v7x45v38ys1vixj
2011-08-08 14:38:30 +02:00
Vo Minh Thu bc52bf9827 [MERGE] tools/convert.py: better indentation.
bzr revid: vmt@openerp.com-20110808121221-6zksngrib69cdei7
2011-08-08 14:12:21 +02:00
Vo Minh Thu 635580f463 [MERGE] rml2txt.py: /bin/env should be /usr/bin/env.
bzr revid: vmt@openerp.com-20110808120856-cw0u989ckqj767nt
2011-08-08 14:08:56 +02:00
Fabien Meghazi 7a41bdf232 [FIX] Fixed notebooks tab switching bug with on_changes. Improved notebook tab index initialization on new record creation.
bzr revid: fme@openerp.com-20110808120500-06aph84ix0axl3hc
2011-08-08 14:05:00 +02:00
Xavier Morel 6ab80e92e7 [FIX] res.users: correctly json-encode modifiers in generated fields_view_get
bzr revid: xmo@openerp.com-20110808115207-y2a0p9c0z4uk7bo5
2011-08-08 13:52:07 +02:00
Xavier Morel dad68b79a7 [IMP] use Class.include() in editable listview, also in WebClient static home extension
but not as good: this._super references break when used in async contexts as the this._super reference has already been broken by the time the callback executes

bzr revid: xmo@openerp.com-20110808103424-043a0ro0o7r390s7
2011-08-08 12:34:24 +02:00
Xavier Morel f130d1c374 [IMP] rename openerp.base.Class.mix to openerp.base.Class.include, // to Ruby's name for the same behavior
bzr revid: xmo@openerp.com-20110808095750-yhg1ixaump4rq09x
2011-08-08 11:57:50 +02:00
Xavier Morel 2f94a513bd [ADD] method to extend classes in place (w/o reassignment)
semantics similar to ruby's Module.include

bzr revid: xmo@openerp.com-20110808094030-qfmi2s14vqz2nybz
2011-08-08 11:40:30 +02:00
Xavier Morel 0056818c76 [ADD] some tests for base class
bzr revid: xmo@openerp.com-20110808083235-gid40uswzyfcx1e1
2011-08-08 10:32:35 +02:00
Xavier Morel 94b06f2d1d [ADD] @namespace annotations for window.openerp so ide stops whining
bzr revid: xmo@openerp.com-20110808081734-lx8mj3eywtseir0s
2011-08-08 10:17:34 +02:00
Xavier Morel 3fcd34682e [REF] reindent openerp,base.Class for clarity
bzr revid: xmo@openerp.com-20110808081101-43h9c4ny8g59p4ho
2011-08-08 10:11:01 +02:00
Xavier Morel d987cea9f6 [FIX] favicon path in tests
bzr revid: xmo@openerp.com-20110808072450-sl95nkts036kpu9g
2011-08-08 09:24:50 +02:00
Xavier Morel 9b751b0686 [REM] list tests, completely broken
bzr revid: xmo@openerp.com-20110808070611-i0e6zmaejftcga0u
2011-08-08 09:06:11 +02:00
Xavier Morel 8540d27122 [FIX] kinda sorta fix JS tests post-refs (add links to boot.js and core.js, update jquery to 1.6, remember to initialize openerp.base.core)
bzr revid: xmo@openerp.com-20110808070523-sav9wafwuqdggl97
2011-08-08 09:05:23 +02:00
Launchpad Translations on behalf of openerp 7fe942991c Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110807043729-g8qz14f69cr0wpi6
bzr revid: launchpad_translations_on_behalf_of_openerp-20110808043648-93fd7m8c1sgdeu97
2011-08-08 04:36:48 +00:00
Antony Lesuisse 76ffd4ab7f [MERGE] trunk-usability-modify_sale_application_configuration-aar
bzr revid: al@openerp.com-20110806132420-i2497zs0uvxtj5a2
2011-08-06 15:24:20 +02:00
Antony Lesuisse 7aaad0801a [FIX] project_mrp test/project_task_procurement.yml
bzr revid: al@openerp.com-20110806123435-i8ruzvoaxnwb6zxk
2011-08-06 14:34:35 +02:00
Antony Lesuisse 114eda3ae3 [FIX] hr_timesheet remove some demo data
bzr revid: al@openerp.com-20110806121210-1ti8x35fd7o2u1q4
2011-08-06 14:12:10 +02:00
Antony Lesuisse ee06157582 [MERGE] trunk-configrework2 rpa apr
bzr revid: al@openerp.com-20110806104617-c1dln2f64ejqm69k
2011-08-06 12:46:17 +02:00
Launchpad Translations on behalf of openerp 0092356492 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20110806045917-dtct281fre1xnuss
2011-08-06 04:59:17 +00:00
Antony Lesuisse 330e12c557 [MERGE] trunk-usability-config-log-rco
bzr revid: al@openerp.com-20110806015221-jumsqgm6a9ofknr7
2011-08-06 03:52:21 +02:00
Antony Lesuisse 42628a6d28 [MERGE] trunk-usability-add_relate_button-aar
bzr revid: al@openerp.com-20110806011429-rctww4tj38coc81u
2011-08-06 03:14:29 +02:00
Antony Lesuisse 12355378c6 [FIX] lunch report address_id
bzr revid: al@openerp.com-20110806010139-8kcwvph2wtolj06p
2011-08-06 03:01:39 +02:00
Antony Lesuisse bcc1d99808 [MERGE] trunk-usability-improve_filter-rmu
bzr revid: al@openerp.com-20110806005046-4w8w2rnapbw5wbx1
2011-08-06 02:50:46 +02:00
Antony Lesuisse 17e2f04cb7 [MERGE] trunk-usability rco
bzr revid: al@openerp.com-20110806002104-xpc258vhv54j5w53
2011-08-06 02:21:04 +02:00
Antony Lesuisse 0ab21bc745 [MERGE] trunk-usability rco
bzr revid: al@openerp.com-20110806002055-xcx2oisq5imvcs8e
2011-08-06 02:20:55 +02:00
Antony Lesuisse 793cc01cb3 [FIX] project_long_term: test/test_schedule_tasks_case1.yml remove addresses
bzr revid: al@openerp.com-20110805215816-73q78n130ef6gtth
2011-08-05 23:58:16 +02:00
Antony Lesuisse e349555fe2 [FIX] stock_planning: test/stock_planning.yml fails because of new demo data.
bzr revid: al@openerp.com-20110805214729-gvdstqzqznr0komb
2011-08-05 23:47:29 +02:00
Antony Lesuisse 5036deeaf6 [FIX] stock_planning: test/stock_planning.yml fails because of new demo data.
bzr revid: al@openerp.com-20110805214449-u5dskwgjglps53g2
2011-08-05 23:44:49 +02:00
Antony Lesuisse 839c641912 [MERGE] trunk
bzr revid: al@openerp.com-20110805212128-yt73b49habo1kp78
2011-08-05 23:21:28 +02:00
Antony Lesuisse 891cedddb7 [FIX] temporarly disable faulty migration
bzr revid: al@openerp.com-20110805212044-haw8rwukakrkfzwm
2011-08-05 23:20:44 +02:00
Antony Lesuisse 4f2dee92a3 [MERGE] trunk
bzr revid: al@openerp.com-20110805211717-4bu7sz08l4hchrr8
2011-08-05 23:17:17 +02:00
Antony Lesuisse 65c43a1946 [MERGE] trunk
bzr revid: al@openerp.com-20110805211034-hc8z53m6zzwksipu
2011-08-05 23:10:34 +02:00
Antony Lesuisse d757c2db2c [MERGE] res_user rework mostly email from user instead of address
bzr revid: al@openerp.com-20110805210049-4ocau2btlq2jg2tx
2011-08-05 23:00:49 +02:00
Antony Lesuisse 11ea949719 [MERGE] res_users res_group rework
bzr revid: al@openerp.com-20110805205527-hjsjwia9fhf57rkp
2011-08-05 22:55:27 +02:00
Antony Lesuisse 6ecb84d303 [FIX] for view field, thinking about QuerySet...
bzr revid: al@openerp.com-20110805205007-12lvaks9y4y6827p
2011-08-05 22:50:07 +02:00