odoo/odoo.git
12 years ago[REF] audittrail: refactoring of audittrail module. added few comments
Quentin (OpenERP) [Mon, 21 Nov 2011 16:20:32 +0000 (17:20 +0100)]
[REF] audittrail: refactoring of audittrail module. added few comments

bzr revid: qdp-launchpad@openerp.com-20111121162032-st1jejch7nrrfj86

12 years ago[REF] audittrail: refactoring of audittrail module. (read, unlink and create)
Quentin (OpenERP) [Mon, 21 Nov 2011 16:10:51 +0000 (17:10 +0100)]
[REF] audittrail: refactoring of audittrail module. (read, unlink and create)

bzr revid: qdp-launchpad@openerp.com-20111121161051-rskfs0gfkh3e73d7

12 years ago[REF] audittrail: refactoring of audittrail module. (Finished the write/actions,...
Quentin (OpenERP) [Mon, 21 Nov 2011 14:34:50 +0000 (15:34 +0100)]
[REF] audittrail: refactoring of audittrail module. (Finished the write/actions, wkf actions)

bzr revid: qdp-launchpad@openerp.com-20111121143450-yzkuk0rpomy2aync

12 years ago[REF] audittrail: refactoring of audittrail module
Quentin (OpenERP) [Mon, 21 Nov 2011 13:33:20 +0000 (14:33 +0100)]
[REF] audittrail: refactoring of audittrail module

bzr revid: qdp-launchpad@openerp.com-20111121133320-plb409qv2l7valqk

12 years ago[REF] audittrail: code refactoring. still not totally working x_x
Quentin (OpenERP) [Fri, 18 Nov 2011 20:27:13 +0000 (21:27 +0100)]
[REF] audittrail: code refactoring. still not totally working x_x

bzr revid: qdp-launchpad@openerp.com-20111118202713-e5f1mtzx3gyovdok

12 years ago[IMP] audittrail: cleaning and commenting the code
Quentin (OpenERP) [Thu, 17 Nov 2011 17:50:34 +0000 (18:50 +0100)]
[IMP] audittrail: cleaning and commenting the code

bzr revid: qdp-launchpad@openerp.com-20111117175034-l5o1js3tndtcke6m

12 years ago[FIX] l10n_ch: assigned the good category to this localzation module in order to...
Quentin (OpenERP) [Thu, 17 Nov 2011 16:41:41 +0000 (17:41 +0100)]
[FIX] l10n_ch: assigned the good category to this localzation module in order to avoid having it display in the 'add more features' wizard

bzr revid: qdp-launchpad@openerp.com-20111117164141-eheveold2jftewdf

12 years ago[FIX] Dashboard actions does not honor @context and @domain
Fabien Meghazi [Thu, 17 Nov 2011 16:27:16 +0000 (17:27 +0100)]
[FIX] Dashboard actions does not honor @context and @domain

Currently naive implementation because it does not evaluate the domain & context.
The dashboard is already overloaded with XHRs.
We should use the xmo's python evaluator for context and domains if possible.

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

bzr revid: fme@openerp.com-20111117162716-6zaoyn2kwv2ioj0w

12 years ago[FIX] synchronization of o2m widget saving, avoid race condition when clicking on...
Xavier Morel [Thu, 17 Nov 2011 16:14:26 +0000 (17:14 +0100)]
[FIX] synchronization of o2m widget saving, avoid race condition when clicking on button of unsaved record

After saving, the formview would both refresh the form and lauch the
action itself, which launches a refresh of its own.

Issue is that o2m's filling of themselves (a read) is async and
triggered by the set_value on the o2m field, so the second reload of
the form would be interspersed (between the first reload and the end
of the o2ms loading), resulting in corrupted state for the o2ms if the
button's action somehow changed the contents of the o2m (it would
remove the old records and return brand new ids during the refresh):
the set_value on the o2m would empty the o2m's dataset cache, and the
returning fetch request would try to find in cache values removed from
it, or something, blowing up everything.

Anyway, this was fixed by ensuring the button action is only executed
after the form is completely done doing its post-save reload (using
the new async set_value). This is a tiny bit brittle in that onchanges
are synchronous but call set_value, so a set_value on an o2m from an
onchange may have issues. It also increases the flicker of the view,
as the o2m is reloaded twice in quick succession.

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

bzr revid: xmo@openerp.com-20111117161426-72jzhvv3dm387uom

12 years ago[FIX] issues with asynchronous set_value handling
Xavier Morel [Thu, 17 Nov 2011 16:00:09 +0000 (17:00 +0100)]
[FIX] issues with asynchronous set_value handling

* field could be changed from under the closure, use _.each
* There's a bug in Deferred.queue() when passing synchronous deferred
  (including non-deferred) it's instantanously resolved

bzr revid: xmo@openerp.com-20111117160009-s702939kji69v3zf

12 years ago[MERGE] lp:800100, make invoice number, mrp order ref, purchase order ref, sale order...
Raphael Collet [Thu, 17 Nov 2011 15:40:04 +0000 (16:40 +0100)]
[MERGE] lp:800100, make invoice number, mrp order ref, purchase order ref, sale order ref, and picking ref unique per company

bzr revid: rco@openerp.com-20111117154004-fbean9hqldvrsxdq

12 years ago[FIX] account_followup: fixed the multi company and multi currency behavior
Quentin (OpenERP) [Thu, 17 Nov 2011 14:51:49 +0000 (15:51 +0100)]
[FIX] account_followup: fixed the multi company and multi currency behavior

bzr revid: qdp-launchpad@openerp.com-20111117145149-yuwk52cyy3jou3iw

12 years ago[FIX] dashboard does not honor action/@view_mode
Fabien Meghazi [Thu, 17 Nov 2011 14:25:28 +0000 (15:25 +0100)]
[FIX] dashboard does not honor action/@view_mode

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

bzr revid: fme@openerp.com-20111117142528-qydykmkvrdxefp8f

12 years ago[FIX] callers of on_record_loaded to use promises
Fabien Meghazi [Thu, 17 Nov 2011 13:18:16 +0000 (14:18 +0100)]
[FIX] callers of on_record_loaded to use promises

bzr revid: fme@openerp.com-20111117131816-991odq4m45146vfv

12 years ago[FIX] Fixed data#read_index() so it returns same argument to callback and to .then()
Fabien Meghazi [Thu, 17 Nov 2011 13:09:13 +0000 (14:09 +0100)]
[FIX] Fixed data#read_index() so it returns same argument to callback and to .then()

bzr revid: fme@openerp.com-20111117130913-lji983yp8b7vb0do

12 years ago[IMP] Core callbacks always return value of original method
Fabien Meghazi [Thu, 17 Nov 2011 13:08:02 +0000 (14:08 +0100)]
[IMP] Core callbacks always return value of original method

instead of last callback in the stack

bzr revid: fme@openerp.com-20111117130802-gyrzythtzs2nzmz5

12 years ago[IMP] FormView: on_record_loaded returns a promise
Fabien Meghazi [Thu, 17 Nov 2011 12:43:19 +0000 (13:43 +0100)]
[IMP] FormView: on_record_loaded returns a promise

bzr revid: fme@openerp.com-20111117124319-61ruoa9g8we1a438

12 years ago[FIX] web_process: qweb template loading
Christophe Simonis [Thu, 17 Nov 2011 13:02:37 +0000 (14:02 +0100)]
[FIX] web_process: qweb template loading

bzr revid: chs@openerp.com-20111117130237-wqiqdrleiv2mwyf8

12 years ago[FIX] account_voucher/test: fix yaml syntax
Raphael Collet [Thu, 17 Nov 2011 12:29:04 +0000 (13:29 +0100)]
[FIX] account_voucher/test: fix yaml syntax

bzr revid: rco@openerp.com-20111117122904-i05ibw4eh2t7pv5g

12 years ago[FIX] res.config: ensure there is a context before checking its content
Xavier Morel [Thu, 17 Nov 2011 12:03:18 +0000 (13:03 +0100)]
[FIX] res.config: ensure there is a context before checking its content

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

bzr revid: xmo@openerp.com-20111117120318-r9mns1w1vh9ea22b

12 years ago[FIX] account_voucher: fixed error in yaml test
Quentin (OpenERP) [Thu, 17 Nov 2011 11:48:49 +0000 (12:48 +0100)]
[FIX] account_voucher: fixed error in yaml test

bzr revid: qdp-launchpad@openerp.com-20111117114849-fce4suyarul4v3i2

12 years ago[IMP] Dashboard: disable selectable flags for list views
Fabien Meghazi [Thu, 17 Nov 2011 11:19:30 +0000 (12:19 +0100)]
[IMP] Dashboard: disable selectable flags for list views

bzr revid: fme@openerp.com-20111117111930-xfbjea3nfgprt2ie

12 years ago[IMP] Allows to define options per view in action flags
Fabien Meghazi [Thu, 17 Nov 2011 11:18:57 +0000 (12:18 +0100)]
[IMP] Allows to define options per view in action flags

bzr revid: fme@openerp.com-20111117111857-bot6h87bh4tv3dfw

12 years ago[FIX] edi: remove duplicate loading of base template, causing duplicate widgets
Olivier Dony [Thu, 17 Nov 2011 11:00:34 +0000 (12:00 +0100)]
[FIX] edi: remove duplicate loading of base template, causing duplicate widgets

bzr revid: odo@openerp.com-20111117110034-02gfmsl44y9ib70p

12 years ago[IMP] hire employee to open employee form
Fabien Pinckaers [Thu, 17 Nov 2011 10:53:01 +0000 (11:53 +0100)]
[IMP] hire employee to open employee form

bzr revid: fp@tinyerp.com-20111117105301-6dwnjpqnbj7m5yof

12 years ago[IMP] mrp : Improve the error message
Divyesh Makwana (Open ERP) [Thu, 17 Nov 2011 10:37:37 +0000 (16:07 +0530)]
[IMP] mrp : Improve the error message

bzr revid: mdi@tinyerp.com-20111117103737-iqzj2x7pggamm54q

12 years ago[FIX] point_of_sale/test: fix context in records, by making them proper YAML literals
Raphael Collet [Thu, 17 Nov 2011 10:05:44 +0000 (11:05 +0100)]
[FIX] point_of_sale/test: fix context in records, by making them proper YAML literals

bzr revid: rco@openerp.com-20111117100544-emxxijuqrf6w4q7q

12 years ago[merge] process view
niv-openerp [Thu, 17 Nov 2011 09:28:45 +0000 (14:58 +0530)]
[merge] process view

bzr revid: nicolas.vanhoren@openerp.com-20111117092845-oo427719x3mzpq7o

12 years ago[IMP] better demo data hr
Fabien Pinckaers [Thu, 17 Nov 2011 09:20:03 +0000 (10:20 +0100)]
[IMP] better demo data hr

bzr revid: fp@tinyerp.com-20111117092003-pcxh5tmgdsc6mioy

12 years ago[FIX] edi: don't blow up in stand-alone openerp-web mode
Xavier Morel [Thu, 17 Nov 2011 09:17:12 +0000 (10:17 +0100)]
[FIX] edi: don't blow up in stand-alone openerp-web mode

bzr revid: xmo@openerp.com-20111117091712-xa94cuo92lwuliom

12 years ago[FIX] Strange overflow of unwrapped text in 100% width buttons under Firefox
Fabien Meghazi [Thu, 17 Nov 2011 09:01:17 +0000 (10:01 +0100)]
[FIX] Strange overflow of unwrapped text in 100% width buttons under Firefox

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

bzr revid: fme@openerp.com-20111117090117-m5du8bph807nhpju

12 years ago[FIX]:fix useless creat of log record for 'x2M' in read operation
Naresh (OpenERP) [Thu, 17 Nov 2011 08:44:38 +0000 (14:14 +0530)]
[FIX]:fix useless creat of log record for 'x2M' in read operation

bzr revid: nch@tinyerp.com-20111117084438-fx63kcqx3my59sxa

12 years ago[IMP] hr_timesheet & project bugfixes
Fabien Pinckaers [Thu, 17 Nov 2011 08:28:10 +0000 (09:28 +0100)]
[IMP] hr_timesheet & project bugfixes

bzr revid: fp@tinyerp.com-20111117082810-zzwsg5c2e3l83epz

12 years ago[IMP]:added doc string for missing methods
Naresh (OpenERP) [Thu, 17 Nov 2011 07:25:18 +0000 (12:55 +0530)]
[IMP]:added doc string for missing methods

bzr revid: nch@tinyerp.com-20111117072518-iohc292j52qke927

12 years ago[FIX]Fixed code for if help is false.
vishmita [Thu, 17 Nov 2011 07:14:52 +0000 (12:44 +0530)]
[FIX]Fixed code for if help is false.

bzr revid: vja@vja-desktop-20111117071452-0n1pxy6zwbwgo3dg

12 years ago[FIX/IMP/REF]:1::fix copy,unlink,workflow actions,refactored the way data was process...
Naresh (OpenERP) [Thu, 17 Nov 2011 07:09:05 +0000 (12:39 +0530)]
[FIX/IMP/REF]:1::fix copy,unlink,workflow actions,refactored the way data was processed and logged for the actions and workflow actions.

bzr revid: nch@tinyerp.com-20111117070905-14b23ir45vx7rg7x

12 years ago[FIX]Fixed code for showing model name in title of process view.
Kunal Chavda (OpenERP) [Thu, 17 Nov 2011 06:59:53 +0000 (12:29 +0530)]
[FIX]Fixed code for showing model name in title of process view.

bzr revid: kch@tinyerp.com-20111117065953-pqse8i6mxyptw6g5

12 years ago[IMP] stock : Improve the error message
Divyesh Makwana (Open ERP) [Thu, 17 Nov 2011 06:44:09 +0000 (12:14 +0530)]
[IMP] stock : Improve the error message

bzr revid: mdi@tinyerp.com-20111117064409-3uxjcbd5g1y7jmrm

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Thu, 17 Nov 2011 05:23:01 +0000 (05:23 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20111117052301-rcwny02sbnh03m96

12 years ago[IMP]Improved code by formatting.
Kunal Chavda (OpenERP) [Thu, 17 Nov 2011 05:19:10 +0000 (10:49 +0530)]
[IMP]Improved code by formatting.

bzr revid: kch@tinyerp.com-20111117051910-kb4r9mzojtu0roeb

12 years ago[FIX] Fixes form's date[time] widgets problems with jQuery ui date[time]pickers
Fabien Meghazi [Wed, 16 Nov 2011 22:27:05 +0000 (23:27 +0100)]
[FIX] Fixes form's date[time] widgets problems with jQuery ui date[time]pickers

lp bug: https://launchpad.net/bugs/877976 fixed
lp bug: https://launchpad.net/bugs/885385 fixed

bzr revid: fme@openerp.com-20111116222705-dg4u0lpw6p2o8nx1

12 years ago[FIX] yaml import osv memory context
Fabien Pinckaers [Wed, 16 Nov 2011 19:20:51 +0000 (20:20 +0100)]
[FIX] yaml import osv memory context

bzr revid: fp@tinyerp.com-20111116192051-zzwvxywkvxjvwjj0

12 years ago[IMP] board view, new style
Fabien Pinckaers [Wed, 16 Nov 2011 19:19:17 +0000 (20:19 +0100)]
[IMP] board view, new style

bzr revid: fp@tinyerp.com-20111116191917-2ggzox9ewvg9ciru

12 years agomerge: useability membership, events
Fabien Pinckaers [Wed, 16 Nov 2011 19:01:24 +0000 (20:01 +0100)]
merge: useability membership, events

bzr revid: fp@tinyerp.com-20111116190124-46utx2qu6lkg8kkr

12 years ago[merge] hr_holidays yaml test
Fabien Pinckaers [Wed, 16 Nov 2011 18:59:32 +0000 (19:59 +0100)]
[merge] hr_holidays yaml test

bzr revid: fp@tinyerp.com-20111116185932-moy9i2dj1od9ev6z

12 years ago[MERGE] EDI branch of hmo/odo
Fabien Pinckaers [Wed, 16 Nov 2011 18:54:43 +0000 (19:54 +0100)]
[MERGE] EDI branch of hmo/odo

bzr revid: fp@tinyerp.com-20111116185443-zu2zpt7qd3lrfw9s

12 years agofix
Fabien Pinckaers [Wed, 16 Nov 2011 18:30:51 +0000 (19:30 +0100)]
fix

bzr revid: fp@tinyerp.com-20111116183051-dj5nxt5m8qzkv058

12 years agofix
Fabien Pinckaers [Wed, 16 Nov 2011 17:28:25 +0000 (18:28 +0100)]
fix

bzr revid: fp@tinyerp.com-20111116172825-hy538wvgs9filk8w

12 years ago[IMP] Use t-js
Fabien Meghazi [Wed, 16 Nov 2011 16:46:39 +0000 (17:46 +0100)]
[IMP] Use t-js

bzr revid: fme@openerp.com-20111116164639-y76q8quqj60r2w3j

12 years ago[IMP] QWeb2: add 'console' in reserved words
Fabien Meghazi [Wed, 16 Nov 2011 16:42:10 +0000 (17:42 +0100)]
[IMP] QWeb2: add 'console' in reserved words

bzr revid: fme@openerp.com-20111116164210-ktn35gjb703kdrek

12 years agofix
Fabien Pinckaers [Wed, 16 Nov 2011 16:33:02 +0000 (17:33 +0100)]
fix

bzr revid: fp@tinyerp.com-20111116163302-5wzu7y3ca8c1vu5e

12 years ago[FIX] sale: fixed error in sale module installation
Quentin (OpenERP) [Wed, 16 Nov 2011 16:04:58 +0000 (17:04 +0100)]
[FIX] sale: fixed error in sale module installation

bzr revid: qdp-launchpad@openerp.com-20111116160458-14t015ovs46003j0

12 years ago[IMP] useability
Fabien Pinckaers [Wed, 16 Nov 2011 15:19:55 +0000 (16:19 +0100)]
[IMP] useability

bzr revid: fp@tinyerp.com-20111116151955-awkjidr9xmokrff8

12 years agofix
Fabien Pinckaers [Wed, 16 Nov 2011 15:12:59 +0000 (16:12 +0100)]
fix

bzr revid: fp@tinyerp.com-20111116151259-g6792c8o8yindrdq

12 years ago[IMP] better view
Fabien Pinckaers [Wed, 16 Nov 2011 15:09:41 +0000 (16:09 +0100)]
[IMP] better view

bzr revid: fp@tinyerp.com-20111116150941-piwo8wjmcui8h4ur

12 years ago[IMP] better view
Fabien Pinckaers [Wed, 16 Nov 2011 15:09:18 +0000 (16:09 +0100)]
[IMP] better view

bzr revid: fp@tinyerp.com-20111116150918-di7a9vzdwea6qxh8

12 years ago[IMP] Contract management + fixes
Fabien Pinckaers [Wed, 16 Nov 2011 14:59:58 +0000 (15:59 +0100)]
[IMP] Contract management + fixes

bzr revid: fp@tinyerp.com-20111116145958-pzp36c49wh6028p9

12 years ago[FIX] account, accounting entries model: fixed a bug related to period choosing in...
Quentin (OpenERP) [Wed, 16 Nov 2011 14:13:40 +0000 (15:13 +0100)]
[FIX] account, accounting entries model: fixed a bug related to period choosing in multicompany environement and factorized the code of wizard

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

bzr revid: qdp-launchpad@openerp.com-20111116141340-vz61c74eguu9chjh

12 years ago[FIX] you get an icon, you get an icon, everybody gets anb icon!
Xavier Morel [Wed, 16 Nov 2011 13:48:05 +0000 (14:48 +0100)]
[FIX] you get an icon, you get an icon, everybody gets anb icon!

if a searchview filter does not have an icon, default to gtk-home

bzr revid: xmo@openerp.com-20111116134805-yd4ze31j8zc5fw7u

12 years ago[MERGE] sync w/ latest trunk
Olivier Dony [Wed, 16 Nov 2011 13:43:36 +0000 (14:43 +0100)]
[MERGE] sync w/ latest trunk

bzr revid: odo@openerp.com-20111116134336-ig6681v2cw6xfb6h

12 years ago[FIX] searchview needs to send the action's context when loading its view
Xavier Morel [Wed, 16 Nov 2011 13:38:03 +0000 (14:38 +0100)]
[FIX] searchview needs to send the action's context when loading its view

bzr revid: xmo@openerp.com-20111116133803-f21mzgatnkr5in3p

12 years ago[FIX]Fixed code for passing model.
Kunal Chavda (OpenERP) [Wed, 16 Nov 2011 13:34:58 +0000 (19:04 +0530)]
[FIX]Fixed code for passing model.

bzr revid: kch@tinyerp.com-20111116133458-vivv0elu15mj3iiw

12 years ago[MERGE] merged a branch with cleaning of stock/wizard/stock_location_product.py....
Quentin (OpenERP) [Wed, 16 Nov 2011 13:29:38 +0000 (14:29 +0100)]
[MERGE] merged a branch with cleaning of stock/wizard/stock_location_product.py. Courtesy of Numerigraphe

bzr revid: qdp-launchpad@openerp.com-20111116132938-yjuhe2i3hlpwha5q

12 years ago[MERGE]Merge main branch upto revision 1488.
Kunal Chavda (OpenERP) [Wed, 16 Nov 2011 13:29:20 +0000 (18:59 +0530)]
[MERGE]Merge main branch upto revision 1488.

bzr revid: kch@tinyerp.com-20111116132920-isodqm71wdzpm7av

12 years ago[MERGE] project_issue: automatic update of date_action_last field as soon as the...
Quentin (OpenERP) [Wed, 16 Nov 2011 13:17:24 +0000 (14:17 +0100)]
[MERGE] project_issue: automatic update of date_action_last field as soon as the user change the stage, the state or send a new email

bzr revid: qdp-launchpad@openerp.com-20111116131724-6btl727recfrt77u

12 years ago[REV] Revert rev#1486
Fabien Meghazi [Wed, 16 Nov 2011 13:10:45 +0000 (14:10 +0100)]
[REV] Revert rev#1486

bzr revid: fme@openerp.com-20111116131045-b684j0ayu9i5asni

12 years ago[MERGE] lp: 827649 (adding a domain on tax_id in account_voucher)
Quentin (OpenERP) [Wed, 16 Nov 2011 12:45:37 +0000 (13:45 +0100)]
[MERGE] lp: 827649 (adding a domain on tax_id in account_voucher)

bzr revid: qdp-launchpad@openerp.com-20111116124537-cwzp373kgjcwnwaa

12 years ago[MERGE] lp: 889129 (increased the size of account name)
Quentin (OpenERP) [Wed, 16 Nov 2011 12:40:05 +0000 (13:40 +0100)]
[MERGE] lp: 889129 (increased the size of account name)

bzr revid: qdp-launchpad@openerp.com-20111116124005-61j64da8b6lb6rdv

12 years ago[FIX] hr_timesheet_invoice: fixed an error in cost ledger report where a param of...
Quentin (OpenERP) [Wed, 16 Nov 2011 12:36:36 +0000 (13:36 +0100)]
[FIX] hr_timesheet_invoice: fixed an error in cost ledger report where a param of price_get was forgotten

bzr revid: qdp-launchpad@openerp.com-20111116123636-ezjmjwowd7x2gmpf

12 years ago[MERGE] merged polishing of lunch analysis view
Quentin (OpenERP) [Wed, 16 Nov 2011 12:13:52 +0000 (13:13 +0100)]
[MERGE] merged polishing of lunch analysis view

bzr revid: qdp-launchpad@openerp.com-20111116121352-k9ptec7svzj5yyup

12 years ago[IMP] all: remove references to `object` column of ir.values, now gone
Olivier Dony [Wed, 16 Nov 2011 11:58:10 +0000 (12:58 +0100)]
[IMP] all: remove references to `object` column of ir.values, now gone

This will get rid of a lot of warnings now that the server
warns about unknown fields

bzr revid: odo@openerp.com-20111116115810-9c5kp7lql0yyhs3n

12 years ago[REF] product/pricelist.py: removed deprecated and unused function price_get_old()
Quentin (OpenERP) [Wed, 16 Nov 2011 11:47:57 +0000 (12:47 +0100)]
[REF] product/pricelist.py: removed deprecated and unused function price_get_old()

bzr revid: qdp-launchpad@openerp.com-20111116114757-yts9zrzuduh6z6ao

12 years ago[MERGE] lp: 860625 (pricelist item wrongly chosen when based on partner section of...
Quentin (OpenERP) [Wed, 16 Nov 2011 11:40:39 +0000 (12:40 +0100)]
[MERGE] lp: 860625 (pricelist item wrongly chosen when based on partner section of product form). Courtesy of Numerigraphe

bzr revid: qdp-launchpad@openerp.com-20111116114039-4i8jge9e36v3umbc

12 years ago[MERGE] warn when create()/write() touches unknown field, courtesy of Stefan Rijnhart...
Olivier Dony [Wed, 16 Nov 2011 11:38:58 +0000 (12:38 +0100)]
[MERGE] warn when create()/write() touches unknown field, courtesy of Stefan Rijnhart (Therp)

A patch will follow in addons to get rid of most of the
warnings introduced here.

bzr revid: odo@openerp.com-20111116113858-52nzw58ts7xnlxhe

12 years ago[FIX] web_calendar: works even if there is no sidebar
Christophe Simonis [Wed, 16 Nov 2011 10:59:47 +0000 (11:59 +0100)]
[FIX] web_calendar: works even if there is no sidebar

bzr revid: chs@openerp.com-20111116105947-joo0cgy7yg0oojmr

12 years ago[MERGE] lp: 890701
Quentin (OpenERP) [Wed, 16 Nov 2011 10:57:57 +0000 (11:57 +0100)]
[MERGE] lp: 890701

bzr revid: qdp-launchpad@openerp.com-20111116105757-ls4r391qg4vwhvn5

12 years ago[MERGE] lp: 810548
Quentin (OpenERP) [Wed, 16 Nov 2011 10:51:15 +0000 (11:51 +0100)]
[MERGE] lp: 810548

bzr revid: qdp-launchpad@openerp.com-20111116105115-twbzcuoldz265gq5

12 years ago[MERGE] lp: 890156
Quentin (OpenERP) [Wed, 16 Nov 2011 10:44:17 +0000 (11:44 +0100)]
[MERGE] lp: 890156

bzr revid: qdp-launchpad@openerp.com-20111116104417-uye1rsmui836js2d

12 years ago[FIX] web_kanban: reload the view at start
Christophe Simonis [Wed, 16 Nov 2011 10:34:46 +0000 (11:34 +0100)]
[FIX] web_kanban: reload the view at start

bzr revid: chs@openerp.com-20111116103446-vnf1z5cvzol9uf23

12 years ago[FIX] web_kanban: hide action button when needed
Christophe Simonis [Wed, 16 Nov 2011 10:34:22 +0000 (11:34 +0100)]
[FIX] web_kanban: hide action button when needed

bzr revid: chs@openerp.com-20111116103422-fdqqk4rmvnksllnj

12 years ago[REF] Make it clear that stock by location can process only one id
Numerigraphe - Lionel Sausin [Wed, 16 Nov 2011 10:16:04 +0000 (11:16 +0100)]
[REF] Make it clear that stock by location can process only one id

bzr revid: ls@numerigraphe.fr-20111116101604-5f8nq014jvy1j4mm

12 years ago[FIX] Inialize default context in stock by location
Numerigraphe - Lionel Sausin [Wed, 16 Nov 2011 10:14:13 +0000 (11:14 +0100)]
[FIX] Inialize default context in stock by location

bzr revid: ls@numerigraphe.fr-20111116101413-s9iv2ipcv5ael08w

12 years ago[FIX] account_analytic_analysis: don't return floats or empty strings for date fields...
Xavier Morel [Wed, 16 Nov 2011 10:13:59 +0000 (11:13 +0100)]
[FIX] account_analytic_analysis: don't return floats or empty strings for date fields (from function fields) when intending False

bzr revid: xmo@openerp.com-20111116101359-z48vvxxpmkrynxyt

12 years ago[FIX] some badly implemented function fields return empty strings (for e.g. dates...
Xavier Morel [Wed, 16 Nov 2011 10:04:16 +0000 (11:04 +0100)]
[FIX] some badly implemented function fields return empty strings (for e.g. dates, instead of False)

treat empty strings as 'false' except for char fields

bzr revid: xmo@openerp.com-20111116100416-0713i9va49ffbzlh

12 years ago[IMP] Improve the error message
Divyesh Makwana (Open ERP) [Wed, 16 Nov 2011 09:25:55 +0000 (14:55 +0530)]
[IMP] Improve the error message

bzr revid: mdi@tinyerp.com-20111116092555-k94x9cnpm4e5qsbp

12 years ago[IMP] sale : Sale order can be confirmed without any sale lines defined
Divyesh Makwana (Open ERP) [Wed, 16 Nov 2011 09:20:39 +0000 (14:50 +0530)]
[IMP] sale : Sale order can be confirmed without any sale lines defined

bzr revid: mdi@tinyerp.com-20111116092039-vce0iye6pgsed5y7

12 years ago[IMP] sale : Sale order can be confirmed without any sale lines defined
Divyesh Makwana (Open ERP) [Wed, 16 Nov 2011 09:14:35 +0000 (14:44 +0530)]
[IMP] sale : Sale order can be confirmed without any sale lines defined

bzr revid: mdi@tinyerp.com-20111116091435-wmon99c4oibevr40

12 years ago[IMP] don't default to debug mode when loading the client root anymore
Xavier Morel [Wed, 16 Nov 2011 08:54:23 +0000 (09:54 +0100)]
[IMP] don't default to debug mode when loading the client root anymore

bzr revid: xmo@openerp.com-20111116085423-wu53ydaan357ucfd

12 years ago[IMP] underscore fun
Xavier Morel [Wed, 16 Nov 2011 07:52:46 +0000 (08:52 +0100)]
[IMP] underscore fun

bzr revid: xmo@openerp.com-20111116075246-lbrusmxekmdygwkm

12 years ago[IMP]:added Doc string
Naresh (OpenERP) [Wed, 16 Nov 2011 06:40:50 +0000 (12:10 +0530)]
[IMP]:added Doc string

bzr revid: nch@tinyerp.com-20111116064050-cve3d7pcx8pdrsv0

12 years ago[FIX] sale : Sale Order View Bad Design
Divyesh Makwana (Open ERP) [Wed, 16 Nov 2011 06:06:03 +0000 (11:36 +0530)]
[FIX] sale : Sale Order View Bad Design

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

bzr revid: mdi@tinyerp.com-20111116060603-6t4znedmcr2r7i8t

12 years ago[MERGE FROM TRUNK]
Naresh (OpenERP) [Wed, 16 Nov 2011 05:41:05 +0000 (11:11 +0530)]
[MERGE FROM TRUNK]

bzr revid: nch@tinyerp.com-20111116054105-rou4a95g7mqw3mv4

12 years ago[IMP]project_issue : xpath and views are modified by board style and column
ssu [Wed, 16 Nov 2011 05:31:49 +0000 (11:01 +0530)]
[IMP]project_issue : xpath and views are modified by board style and column

bzr revid: ssu@ssu-desktop-20111116053149-gs8cg96p3x9bjiyp

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Wed, 16 Nov 2011 05:21:37 +0000 (05:21 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20111116052137-3jgtya7tfeuuse3c

12 years ago[MERGE]: Merge with latest trunk-server
Rucha (Open ERP) [Wed, 16 Nov 2011 05:12:25 +0000 (10:42 +0530)]
[MERGE]: Merge with latest trunk-server

bzr revid: rpa@tinyerp.com-20111103071744-wkf0qgr8qkl540y7
bzr revid: rpa@tinyerp.com-20111116051225-w9b73w63w8g6z2hk

12 years ago[FIX] project_mrp: move project_mrp code that was erroneously added to `sale`
Olivier Dony [Tue, 15 Nov 2011 18:19:35 +0000 (19:19 +0100)]
[FIX] project_mrp: move project_mrp code that was erroneously added to `sale`

Now that the procurement creation from sale.order has been
refactored, it is trivial to perform the appropriate
extension in project_mrp itself.

bzr revid: odo@openerp.com-20111115181935-s3t68jbvav2oldya

12 years ago[IMP] project_mrp: improve test to verify project/task assignation
Olivier Dony [Tue, 15 Nov 2011 18:12:14 +0000 (19:12 +0100)]
[IMP] project_mrp: improve test to verify project/task assignation

This is done in prevision of a pending change to
refactor the way project_mrp module hooks onto
the sale module.

bzr revid: odo@openerp.com-20111115181214-fhpyotvp22s0iq06

12 years ago[IMP] nivification of Loading widget
Christophe Simonis [Tue, 15 Nov 2011 16:55:30 +0000 (17:55 +0100)]
[IMP] nivification of Loading widget

bzr revid: chs@openerp.com-20111115165530-mvunu1bsuiq1k4du

12 years ago[FIX] account_anglo_saxon: leftover typo from r.5693
Olivier Dony [Tue, 15 Nov 2011 16:50:46 +0000 (17:50 +0100)]
[FIX] account_anglo_saxon: leftover typo from r.5693

bzr revid: odo@openerp.com-20111115165046-day3tpvk2in3euo9

12 years ago[MERGE] lp:890614
Quentin (OpenERP) [Tue, 15 Nov 2011 15:55:01 +0000 (16:55 +0100)]
[MERGE] lp:890614

bzr revid: qdp-launchpad@openerp.com-20111115155501-435mgy1zuokddskd