odoo/odoo.git
12 years ago[MERGE] lp:924327 (subscription: enable more documents on subscription history)
Raphael Collet [Thu, 2 Feb 2012 16:04:43 +0000 (17:04 +0100)]
[MERGE] lp:924327 (subscription: enable more documents on subscription history)

bzr revid: rco@openerp.com-20120202160443-plj4j2dnbxp361p6

12 years ago[FIX] in load_information_from_description_file, f can be a StringIO (in case of...
Xavier Morel [Thu, 2 Feb 2012 15:45:32 +0000 (16:45 +0100)]
[FIX] in load_information_from_description_file, f can be a StringIO (in case of zipped module) and StringIO are not contextmanagers.

So rollback the context management thingie

bzr revid: xmo@openerp.com-20120202154532-tq9x07ujf0bn9mcp

12 years ago[IMP] tools.translate: be more lenient and accept standart gettext source annotations
Olivier Dony [Thu, 2 Feb 2012 14:32:10 +0000 (15:32 +0100)]
[IMP] tools.translate: be more lenient and accept standart gettext source annotations

 The GetText spec says that PO auto-comments indicating
  the source location have this form:
   #: /path/to/file:lineno
  However OpenERP's POT export system defaults to a modified
  version of this format with an extra 'type' field:
   #: type:/path/to/file:lineno
  The babel extractors we use for openerp-web's translations
  have the GetText format hardcoded, so it's a good idea
  to be more lenient and allow the standards annotations too.
  We can use a default 'code' type for such cases.

  For openerp-web translations the type does not matter,
  as the translations will be directly loaded by the
  web engine from the PO files and served in Javascript
 to the browser, with no typing needed.

  This patch simply avoids failing to parse updated PO files
  that will contain standard GetText annotations for the
  openerp-web related terms.

bzr revid: odo@openerp.com-20120202143210-05p1w24t6u77cyv8

12 years ago[FIX] subcription: set _get_document_type method for document_id field
Kuldeep Joshi (OpenERP) [Thu, 2 Feb 2012 11:32:16 +0000 (17:02 +0530)]
[FIX] subcription: set _get_document_type method for document_id field

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

bzr revid: kjo@tinyerp.com-20120202113216-qpbzcz0fmot9wf3f

12 years ago[MERGE] lp:922621 (account: do not compute foreign_balance for accounts with no secon...
Raphael Collet [Thu, 2 Feb 2012 10:03:05 +0000 (11:03 +0100)]
[MERGE] lp:922621 (account: do not compute foreign_balance for accounts with no secondary currency)

bzr revid: rco@openerp.com-20120202100305-jgo79fgwrpyl41kw

12 years ago[FIX] account : foreign_balance should not be computed for account with no secondary...
Divyesh Makwana (Open ERP) [Thu, 2 Feb 2012 06:16:35 +0000 (11:46 +0530)]
[FIX] account : foreign_balance should not be computed for account with no secondary currency

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

bzr revid: mdi@tinyerp.com-20120202061635-1f6ax1ce6vu6zbbw

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Thu, 2 Feb 2012 06:14:34 +0000 (06:14 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120202055911-xdbu6vwggylcbpq1
bzr revid: launchpad_translations_on_behalf_of_openerp-20120202061434-l5xlutw7q5besmme

12 years ago[FIX] account: partial revert of commit 6465. Put back the default value on currency...
Quentin (OpenERP) [Wed, 1 Feb 2012 16:06:48 +0000 (17:06 +0100)]
[FIX] account: partial revert of commit 6465. Put back the default value on currency field but changed its implementation in order to have it computed thanks to the default journal

bzr revid: qdp-launchpad@openerp.com-20120201160648-kei7wp4radcws0p9

12 years ago[FIX] Do not FormView#do_show() twice on cold do_load_state()
Fabien Meghazi [Wed, 1 Feb 2012 15:44:42 +0000 (16:44 +0100)]
[FIX] Do not FormView#do_show() twice on cold do_load_state()

bzr revid: fme@openerp.com-20120201154442-gwbdm99wy8qahwie

12 years ago[REM] web_default_home: removed, translation template disabled, cleaning up
Olivier Dony [Wed, 1 Feb 2012 15:36:17 +0000 (16:36 +0100)]
[REM] web_default_home: removed, translation template disabled, cleaning up

bzr revid: odo@openerp.com-20120201153617-04dpcxwglgfuvbxa

12 years ago[FIX] import-hook: correctly import the server-wide-module (i.e
Vo Minh Thu [Wed, 1 Feb 2012 15:27:10 +0000 (16:27 +0100)]
[FIX] import-hook: correctly import the server-wide-module (i.e
use the openerp.addons namespace), and correctly set the submodules in
sys.modules (instead of only the top-level package).

bzr revid: vmt@openerp.com-20120201152710-s7sxlgibwd3lwr5l

12 years ago[IMP] small speed improvement of find_handler (mostly for shallow paths) courtesy...
Xavier Morel [Wed, 1 Feb 2012 15:14:36 +0000 (16:14 +0100)]
[IMP] small speed improvement of find_handler (mostly for shallow paths) courtesy of Florent X

bzr revid: xmo@openerp.com-20120201151436-ivq6o0ilpgkeae78

12 years ago[FIX] account: removed unknown 'filter' key used in domain and required modifiers
Quentin (OpenERP) [Wed, 1 Feb 2012 14:38:21 +0000 (15:38 +0100)]
[FIX] account: removed unknown 'filter' key used in domain and required modifiers

bzr revid: qdp-launchpad@openerp.com-20120201143821-krd014pyh3ix5k0s

12 years ago[IMP] faster implementation for Root.find_handler.
Florent Xicluna [Wed, 1 Feb 2012 14:30:32 +0000 (15:30 +0100)]
[IMP] faster implementation for Root.find_handler.

bzr revid: florent.xicluna@gmail.com-20120201143032-pshpu4uhvl61nr9z

12 years ago[FIX] account, invoice: removed the default value of currency_id field, as it should...
Quentin (OpenERP) [Wed, 1 Feb 2012 14:16:33 +0000 (15:16 +0100)]
[FIX] account, invoice: removed the default value of currency_id field, as it should be given by the onchange of journal_id (which has a default value)

bzr revid: qdp-launchpad@openerp.com-20120201141633-mclcw5n7v9c5789h

12 years ago[IMP] account_bank_statement_extensions: fix warning in data
Raphael Collet [Wed, 1 Feb 2012 14:12:44 +0000 (15:12 +0100)]
[IMP] account_bank_statement_extensions: fix warning in data

bzr revid: rco@openerp.com-20120201141244-z10oko61nx27901y

12 years ago[REM] QWeb: removed xpath support
Fabien Meghazi [Wed, 1 Feb 2012 13:22:17 +0000 (14:22 +0100)]
[REM] QWeb: removed xpath support

bzr revid: fme@openerp.com-20120201132217-h2i9a3g082i9ui9y

12 years ago[FIX] if no list limit is specified anywhere, default to 80 on listview initialization
Xavier Morel [Wed, 1 Feb 2012 13:18:48 +0000 (14:18 +0100)]
[FIX] if no list limit is specified anywhere, default to 80 on listview initialization

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

bzr revid: xmo@openerp.com-20120201131848-b0a0ity490s548c3

12 years ago[MERGE] lp:924783 (fix dropping database before any connection, contrib from Ronald...
Raphael Collet [Wed, 1 Feb 2012 13:09:57 +0000 (14:09 +0100)]
[MERGE] lp:924783 (fix dropping database before any connection, contrib from Ronald Portier)

bzr revid: rco@openerp.com-20120201130957-ra3ot62j0bbxjnu1

12 years ago[FIX] Reworked QWeb inheritance (say goodbye to Internet Explorer quirks !)
Fabien Meghazi [Wed, 1 Feb 2012 13:06:30 +0000 (14:06 +0100)]
[FIX] Reworked QWeb inheritance (say goodbye to Internet Explorer quirks !)

bzr revid: fme@openerp.com-20120201130630-yadld2l0vcmbg3ea

12 years ago[MERGE] base: adds the format for addresses in the Netherlands (Stefan Rijnhart)
Raphael Collet [Wed, 1 Feb 2012 12:55:32 +0000 (13:55 +0100)]
[MERGE] base: adds the format for addresses in the Netherlands (Stefan Rijnhart)

bzr revid: rco@openerp.com-20120201125532-yvp0dgb11mc457y2

12 years ago[MERGE] account: add currency field on bank accounts (from Akretion)
Raphael Collet [Wed, 1 Feb 2012 12:50:42 +0000 (13:50 +0100)]
[MERGE] account: add currency field on bank accounts (from Akretion)

bzr revid: rco@openerp.com-20120201125042-cd5omabmubyazd25

12 years ago[FIX] Use childnodes and not the whole extend node
Fabien Meghazi [Wed, 1 Feb 2012 12:48:22 +0000 (13:48 +0100)]
[FIX] Use childnodes and not the whole extend node

bzr revid: fme@openerp.com-20120201124822-xo1msj0ou09o73uh

12 years ago[MERGE] lp:917213 (l10n_fr: new taxes)
Raphael Collet [Wed, 1 Feb 2012 12:37:44 +0000 (13:37 +0100)]
[MERGE] lp:917213 (l10n_fr: new taxes)

bzr revid: rco@openerp.com-20120201123744-gxre5ore2ub8sw9f

12 years ago[FIX] QWeb template inheritance done right
Fabien Meghazi [Wed, 1 Feb 2012 12:29:26 +0000 (13:29 +0100)]
[FIX] QWeb template inheritance done right

bzr revid: fme@openerp.com-20120201122926-poh3q2157ra9tzjd

12 years ago[FIX] drop database fails when done before connecting to server.
Ronald Portier [Wed, 1 Feb 2012 11:37:59 +0000 (12:37 +0100)]
[FIX] drop database fails when done before connecting to server.

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

bzr revid: ronald@therp.nl-20120201113759-wi2kogl2x1lsxk7g

12 years ago[FIX] purchase: remove incorrect PO-based stock move valuation for incoming shipments
Olivier Dony [Wed, 1 Feb 2012 11:37:24 +0000 (12:37 +0100)]
[FIX] purchase: remove incorrect PO-based stock move valuation for incoming shipments

As discussed on bug 923191, the current override
is incorrect because it will silently replace the cost
of incoming stock moves with PO prices for products w/
standard costing - this should only concern products
with average costing for which no cost was manually
provided.
And in fact we can completely remove this override
because even for products with average costing,
the PO prices are already provided as default cost
prices in the picking/move reception wizard, so
the PO price is already taken into account and the
cost will never be missing.
Thanks to Graeme Gellatly for the excellent
analysis!

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

bzr revid: odo@openerp.com-20120201113724-y18fna1v7z6kxka4

12 years ago[IMP] edi: exclude sample code in EDI web template from being translated
Olivier Dony [Wed, 1 Feb 2012 11:19:08 +0000 (12:19 +0100)]
[IMP] edi: exclude sample code in EDI web template from being translated

bzr revid: odo@openerp.com-20120201111908-ewah9yl2acre5a9h

12 years ago[MERGE] l10n_fr_rib: improve check of RIB and IBAN (contrib from Akretion)
Raphael Collet [Wed, 1 Feb 2012 11:05:07 +0000 (12:05 +0100)]
[MERGE] l10n_fr_rib: improve check of RIB and IBAN (contrib from Akretion)

bzr revid: rco@openerp.com-20120201110507-ztz2ss626svv2jl6

12 years ago[MERGE] l10n_be: rewrite wizard Annual Listing of VAT
Raphael Collet [Wed, 1 Feb 2012 10:21:33 +0000 (11:21 +0100)]
[MERGE] l10n_be: rewrite wizard Annual Listing of VAT

bzr revid: rco@openerp.com-20120201102133-kdu1ajkbpxoyqe5r

12 years agoAdd related field currency_id on res.partner.bank.
Alexis de Lattre [Wed, 1 Feb 2012 10:07:27 +0000 (11:07 +0100)]
Add related field currency_id on res.partner.bank.
Display it in the corresponding tree and form views.

bzr revid: alexis@via.ecp.fr-20120201100727-007fkyhltwewtbyy

12 years ago[MERGE] from trunk
Raphael Collet [Wed, 1 Feb 2012 09:44:00 +0000 (10:44 +0100)]
[MERGE] from trunk

bzr revid: rco@openerp.com-20120201094400-nmz15394nstyl9av

12 years ago[IMP] l10n_be: code clean up (mostly spacing and indentation)
Raphael Collet [Wed, 1 Feb 2012 09:09:29 +0000 (10:09 +0100)]
[IMP] l10n_be: code clean up (mostly spacing and indentation)

bzr revid: rco@openerp.com-20120201090929-wqcu32kme63laecj

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Wed, 1 Feb 2012 05:12:11 +0000 (05:12 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120201045611-6pg23l4ipzfnlpme
bzr revid: launchpad_translations_on_behalf_of_openerp-20120201051211-pvfvh4f562tv94rj

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Wed, 1 Feb 2012 04:55:32 +0000 (04:55 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120201045532-i8okrs9w77l78yn5

12 years ago[ADD] Address format for the Netherlands
Stefan Rijnhart [Tue, 31 Jan 2012 23:27:41 +0000 (00:27 +0100)]
[ADD] Address format for the Netherlands

bzr revid: stefan@therp.nl-20120131232741-1c0ap325wrmt4638

12 years ago[MERGE] ask for login when importing edi file if needed
Antony Lesuisse [Tue, 31 Jan 2012 21:01:31 +0000 (22:01 +0100)]
[MERGE] ask for login when importing edi file if needed

bzr revid: al@openerp.com-20120131210131-k1141eoel0l3b26c

12 years ago[FIX] restore support for session action used by edi
Antony Lesuisse [Tue, 31 Jan 2012 20:51:52 +0000 (21:51 +0100)]
[FIX] restore support for session action used by edi

bzr revid: al@openerp.com-20120131205152-tbzx37vq3g4nef0p

12 years ago[IMP] change bounding function of tipsy to try to avoid tooltips being cut off
Xavier Morel [Tue, 31 Jan 2012 15:52:08 +0000 (16:52 +0100)]
[IMP] change bounding function of tipsy to try to avoid tooltips being cut off

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

bzr revid: xmo@openerp.com-20120131155208-ugzig1m90y4a86gk

12 years ago[ADD] values restriction pattern for notebook/@tabpos
Xavier Morel [Tue, 31 Jan 2012 15:40:23 +0000 (16:40 +0100)]
[ADD] values restriction pattern for notebook/@tabpos

bzr revid: xmo@openerp.com-20120131154023-lbxqpdirjk9df694

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Thu, 2 Feb 2012 05:58:34 +0000 (05:58 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120202055834-tscy1is5mn7c1qbo

12 years ago[IMP] tests: export all the tests in a single suite.
Vo Minh Thu [Wed, 1 Feb 2012 16:44:04 +0000 (17:44 +0100)]
[IMP] tests: export all the tests in a single suite.

bzr revid: vmt@openerp.com-20120201164404-yvnf30okqyj69sfy

12 years ago[IMP] Upgraded jQuery UI from 1.8.9 to 1.8.17
Fabien Meghazi [Wed, 1 Feb 2012 16:33:12 +0000 (17:33 +0100)]
[IMP] Upgraded jQuery UI from 1.8.9 to 1.8.17

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

bzr revid: fme@openerp.com-20120201163312-htze3vpzb3opgnoy

12 years ago[ADD] support for id field type in search view
Xavier Morel [Tue, 31 Jan 2012 14:02:10 +0000 (15:02 +0100)]
[ADD] support for id field type in search view

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

bzr revid: xmo@openerp.com-20120131140210-b44fs5nfw109v81l

12 years ago[FIX] selection field default value selection in IE8
Xavier Morel [Tue, 31 Jan 2012 13:38:07 +0000 (14:38 +0100)]
[FIX] selection field default value selection in IE8

for some reason, @selected blows up (probably when converting the XML dom to HTML), but t-attf-selected works

bzr revid: xmo@openerp.com-20120131133807-wm549gl7ilg50uf7

12 years ago[MERGE] with addons-trunk and resolve conflict in base_iban
Alexis de Lattre [Tue, 31 Jan 2012 13:36:57 +0000 (14:36 +0100)]
[MERGE] with addons-trunk and resolve conflict in base_iban
<> changed to !=
Changed error message

bzr revid: alexis@via.ecp.fr-20120131133657-0gzkk0bcb709ca6f

12 years ago[MERGE] small fixes (typo in tooltip, char field size)
Raphael Collet [Tue, 31 Jan 2012 13:21:12 +0000 (14:21 +0100)]
[MERGE] small fixes (typo in tooltip, char field size)

bzr revid: rco@openerp.com-20120131132112-y526k22lrltqnocm

12 years ago[FIX] positioning of hidden file field of binary widget
Xavier Morel [Tue, 31 Jan 2012 12:54:31 +0000 (13:54 +0100)]
[FIX] positioning of hidden file field of binary widget

bzr revid: xmo@openerp.com-20120131125431-sf5w5yxfctiwvk7r

12 years ago[FIX] calendar view missing 1/2 hour
Fabien Meghazi [Tue, 31 Jan 2012 12:52:16 +0000 (13:52 +0100)]
[FIX] calendar view missing 1/2 hour

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

bzr revid: fme@openerp.com-20120131125216-7om1iuhuzdvf6loq

12 years ago[IMP] db dump: correct reference URL in comments
Olivier Dony [Tue, 31 Jan 2012 11:36:42 +0000 (12:36 +0100)]
[IMP] db dump: correct reference URL in comments

bzr revid: odo@openerp.com-20120131113642-z6z4vs11fcwkyaqq

12 years ago[FIX] db dump: report errors due to missing password + pass PGPASSWORD even on Unix
Olivier Dony [Tue, 31 Jan 2012 11:08:49 +0000 (12:08 +0100)]
[FIX] db dump: report errors due to missing password + pass PGPASSWORD even on Unix

Even on Unix systems the PGPASSWORD env var
is necessary when Postgres is configured to
deny unix socket connections or to require
a password anyway. This avoids asking admins
to manually create a ~/.pgpass file in order
to use the dump/restore tools.
Also did some cleanup to ensure the PGPASSWORD
var is removed from the environment as soon
as the operation is done.

lp bug: https://launchpad.net/bugs/790164 fixed
lp bug: https://launchpad.net/bugs/919100 fixed

bzr revid: odo@openerp.com-20120131110849-tji6ipjovxc9oi4v

12 years ago[REM] unused variables in process
Xavier Morel [Tue, 31 Jan 2012 10:58:46 +0000 (11:58 +0100)]
[REM] unused variables in process

bzr revid: xmo@openerp.com-20120131105846-wvqyxko2lux2gwnj

12 years ago[MERGE] sale, purchase, stock: refactoring of invoice creation (Alexis de Lattre...
Raphael Collet [Tue, 31 Jan 2012 10:53:22 +0000 (11:53 +0100)]
[MERGE] sale, purchase, stock: refactoring of invoice creation (Alexis de Lattre, Raphael Valyi)

bzr revid: rco@openerp.com-20120131105322-80x7fp2u1z5fyo6o

12 years ago[FIX] selection of current document's state in process view
Xavier Morel [Tue, 31 Jan 2012 10:52:12 +0000 (11:52 +0100)]
[FIX] selection of current document's state in process view

bzr revid: xmo@openerp.com-20120131105212-bnu4150hai88rwm6

12 years ago[MERGE] lp:922526 (crm_caldav, project_caldav: fix import statements)
Raphael Collet [Tue, 31 Jan 2012 10:23:36 +0000 (11:23 +0100)]
[MERGE] lp:922526 (crm_caldav, project_caldav: fix import statements)

bzr revid: rco@openerp.com-20120131102336-ijd1832yke0g0w0w

12 years ago[FIX] reloading of menu should keep active menu hidden when folded
Fabien Meghazi [Tue, 31 Jan 2012 10:03:24 +0000 (11:03 +0100)]
[FIX] reloading of menu should keep active menu hidden when folded

bzr revid: fme@openerp.com-20120131100324-xajoh1esyvj31zs0

12 years ago[IMP] docstring for fix_view_modes
Xavier Morel [Tue, 31 Jan 2012 09:56:51 +0000 (10:56 +0100)]
[IMP] docstring for fix_view_modes

bzr revid: xmo@openerp.com-20120131095651-a249eben5d8xjkvd

12 years ago[IMP] right-align labels in db-management screens
Xavier Morel [Tue, 31 Jan 2012 09:44:41 +0000 (10:44 +0100)]
[IMP] right-align labels in db-management screens

bzr revid: xmo@openerp.com-20120131094441-cmou5jfes0e9o3k5

12 years ago[FIX] handling of being denied access to the list of databases in the database-manage...
Xavier Morel [Tue, 31 Jan 2012 09:43:26 +0000 (10:43 +0100)]
[FIX] handling of being denied access to the list of databases in the database-management screen

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

bzr revid: xmo@openerp.com-20120131094326-1am82v8u6f9fefuv

12 years ago[IMP] l10n_fr : Improved the demo data
Divyesh Makwana (Open ERP) [Tue, 31 Jan 2012 09:25:10 +0000 (14:55 +0530)]
[IMP] l10n_fr : Improved the demo data

bzr revid: mdi@tinyerp.com-20120131092510-vrts3ok6ue3b0hef

12 years ago[FIX] double htmlescaping in m2o fields when selecting an autocomplete choice
Xavier Morel [Tue, 31 Jan 2012 09:02:26 +0000 (10:02 +0100)]
[FIX] double htmlescaping in m2o fields when selecting an autocomplete choice

When providing values to the autocomplete, there are two keys used by
the autocomplete system itself:
* A mandatory label
* An optional value

If the value is not specified, the autocomplete will use the label
*but* it will htmlescape the label's value before setting it on the
input, while the provided label is raw HTML.

While this protects the input, if the label was already htmlescaped
(because it's user-provided data and may contain e.g. ampersands) in
order not to break the autocompletion list, it will end up
double-escaped with e.g. `&` characters replaced by `&amp;` in
user-visible text.

The fix is to use the `value` key and set it to unescaped text data,
the widget will escape it before setting it on the field yielding the
correct user-facing result.

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

bzr revid: xmo@openerp.com-20120131090226-8r64u4w3bb36se7n

12 years ago[IMP] changed the size of fields
Bharat Devnani (OpenERP) [Tue, 31 Jan 2012 05:54:13 +0000 (11:24 +0530)]
[IMP] changed the size of fields

bzr revid: bde@tinyerp.com-20120131055413-mrwsfty3c47ystiy

12 years ago[REM] removed required=False attribute from partner_ids field in l10n_be/wizard/l10n_...
Bharat Devnani (OpenERP) [Tue, 31 Jan 2012 05:47:13 +0000 (11:17 +0530)]
[REM] removed required=False attribute from partner_ids field in l10n_be/wizard/l10n_be_partner_vat_listing.py

bzr revid: bde@tinyerp.com-20120131054713-8yutobg67ohfh3cc

12 years ago[IMP] commented print_vatlist function
Bharat Devnani (OpenERP) [Tue, 31 Jan 2012 05:37:36 +0000 (11:07 +0530)]
[IMP] commented print_vatlist function

bzr revid: bde@tinyerp.com-20120131053736-vkievt1pjl37vx6a

12 years ago[IMP] commented Print button tag
Bharat Devnani (OpenERP) [Tue, 31 Jan 2012 05:33:51 +0000 (11:03 +0530)]
[IMP] commented Print button tag

bzr revid: bde@tinyerp.com-20120131053351-7cwyagusfxct7cjn

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Tue, 31 Jan 2012 05:23:09 +0000 (05:23 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120131050031-o00wn1tnzbkgjt6j
bzr revid: launchpad_translations_on_behalf_of_openerp-20120131050331-w0omtl1lmfqzciwq
bzr revid: launchpad_translations_on_behalf_of_openerp-20120131052309-jtfsc2m4h3liyzb5

12 years ago[MERGE] gantt using group_by
Antony Lesuisse [Mon, 30 Jan 2012 22:11:28 +0000 (23:11 +0100)]
[MERGE] gantt using group_by

bzr revid: al@openerp.com-20120130221128-88x2dgt25sq5bur9

12 years ago[MERGE] publisher warranty stats
Antony Lesuisse [Mon, 30 Jan 2012 22:05:15 +0000 (23:05 +0100)]
[MERGE] publisher warranty stats

bzr revid: al@openerp.com-20120130220515-vsjnxhll3znxcmut

12 years ago[MERGE] active becomes auto_install: install this module when its dependencies (that...
Antony Lesuisse [Mon, 30 Jan 2012 21:18:12 +0000 (22:18 +0100)]
[MERGE] active becomes auto_install: install this module when its dependencies (that can be empty) are satisfied

bzr revid: al@openerp.com-20120130211812-w0wu42hdu4l7koc4

12 years ago[MERGE] active becomes auto_install: install this module when its dependencies (that...
Antony Lesuisse [Mon, 30 Jan 2012 21:10:01 +0000 (22:10 +0100)]
[MERGE] active becomes auto_install: install this module when its dependencies (that can be empty) are satisfied

bzr revid: al@openerp.com-20120130211001-ytqx759fl920uegc

12 years agoremove warning
Antony Lesuisse [Mon, 30 Jan 2012 21:04:29 +0000 (22:04 +0100)]
remove warning

bzr revid: al@openerp.com-20120130210429-zw7aziwhkhi0yhqv

12 years ago[FIX] thunderbird plugin installation
Antony Lesuisse [Mon, 30 Jan 2012 20:54:50 +0000 (21:54 +0100)]
[FIX] thunderbird plugin installation

bzr revid: al@openerp.com-20120130205450-j5qiww84llbc5ric

12 years ago[MERGE] added account_check_writing module
Quentin (OpenERP) [Mon, 30 Jan 2012 16:13:49 +0000 (17:13 +0100)]
[MERGE] added account_check_writing module

bzr revid: qdp-launchpad@openerp.com-20120130161349-2xvk0p3xnar67gkf

12 years ago[MERGE] lp:917732 (account_asset: fix search domain)
Raphael Collet [Mon, 30 Jan 2012 15:49:30 +0000 (16:49 +0100)]
[MERGE] lp:917732 (account_asset: fix search domain)

bzr revid: rco@openerp.com-20120130154930-amxa9vrrixsafrjn

12 years ago[FIX] account: fix of level field computation at the generation from templates time
Quentin (OpenERP) [Mon, 30 Jan 2012 15:47:01 +0000 (16:47 +0100)]
[FIX] account: fix of level field computation at the generation from templates time

bzr revid: qdp-launchpad@openerp.com-20120130154701-o0j01ngsedcw0dwv

12 years agoAdd a RIB-specific 'format_layout' on the res.partner.bank.type
Alexis de Lattre [Mon, 30 Jan 2012 15:43:28 +0000 (16:43 +0100)]
Add a RIB-specific 'format_layout' on the res.partner.bank.type

bzr revid: alexis@via.ecp.fr-20120130154328-jljngocsy14t0zi3

12 years ago[MERGE] lp:916485 (purchase: fix label)
Raphael Collet [Mon, 30 Jan 2012 15:30:44 +0000 (16:30 +0100)]
[MERGE] lp:916485 (purchase: fix label)

bzr revid: rco@openerp.com-20120130153044-huys2qwns008imyt

12 years ago[MERGE] lp:916526 (hr_payroll: improve tooltip)
Raphael Collet [Mon, 30 Jan 2012 15:23:45 +0000 (16:23 +0100)]
[MERGE] lp:916526 (hr_payroll: improve tooltip)

bzr revid: rco@openerp.com-20120130152345-5qd8luramysp0bt8

12 years ago[MERGE] base_vat: add support for checking Swiss VAT codes
Raphael Collet [Mon, 30 Jan 2012 15:18:36 +0000 (16:18 +0100)]
[MERGE] base_vat: add support for checking Swiss VAT codes

bzr revid: rco@openerp.com-20120130151836-5w7sim5schd7n3t9

12 years ago[MERGE] mrp_repair: add check to prevent confirmation of repair order without line
Raphael Collet [Mon, 30 Jan 2012 15:04:34 +0000 (16:04 +0100)]
[MERGE] mrp_repair: add check to prevent confirmation of repair order without line

bzr revid: rco@openerp.com-20120130150434-qwc16oe1edjh1y13

12 years ago[MERGE] from trunk
Raphael Collet [Mon, 30 Jan 2012 14:43:07 +0000 (15:43 +0100)]
[MERGE] from trunk

bzr revid: rco@openerp.com-20120130144307-mihbj0cirb6ki3n1

12 years ago[MERGE] lp:920841 (stock: fix bug in upstream traceability)
Raphael Collet [Mon, 30 Jan 2012 14:17:11 +0000 (15:17 +0100)]
[MERGE] lp:920841 (stock: fix bug in upstream traceability)

bzr revid: rco@openerp.com-20120130141711-0osbxi8igon9v6d3

12 years ago[FIX] made changes in name_search method to avoid duplicate record of partners
Bharat Devnani (OpenERP) [Mon, 30 Jan 2012 13:24:53 +0000 (18:54 +0530)]
[FIX] made changes in name_search method to avoid duplicate record of partners

bzr revid: bde@tinyerp.com-20120130132453-d1wkb9mdv410xsij

12 years ago[IMP] remove [Invalid Username or Password] note as soon as a new login is submit...
Xavier Morel [Mon, 30 Jan 2012 11:52:55 +0000 (12:52 +0100)]
[IMP] remove [Invalid Username or Password] note as soon as a new login is submit, don't wait for page reload while checking for login correctness

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

bzr revid: xmo@openerp.com-20120130115255-dt39hk25ri9u0whu

12 years ago[MERGE] product: separate method to determine main supplier, courtesy of Sebastien...
Olivier Dony [Mon, 30 Jan 2012 11:38:47 +0000 (12:38 +0100)]
[MERGE] product: separate method to determine main supplier, courtesy of Sebastien Beau & Benoit Guillot (Akretion)

bzr revid: odo@openerp.com-20120130113847-pgaugcxwxe0myuqi

12 years ago[FIX] img of current state node.
Vaibhav (OpenERP) [Mon, 30 Jan 2012 11:37:45 +0000 (17:07 +0530)]
[FIX] img of current state node.

bzr revid: vda@tinyerp.com-20120130113745-fe7w9hhuenahhdx1

12 years ago[IMP] manifest: still support the old `active` entry (but deprecate it and display...
Vo Minh Thu [Mon, 30 Jan 2012 11:31:16 +0000 (12:31 +0100)]
[IMP] manifest: still support the old `active` entry (but deprecate it and display a warning).

bzr revid: vmt@openerp.com-20120130113116-msjaej7jxp96tbvh

12 years ago[IMP] res.company: moved bank accounts tab from account_bank_statement_extension...
Olivier Dony [Mon, 30 Jan 2012 11:23:18 +0000 (12:23 +0100)]
[IMP] res.company: moved bank accounts tab from account_bank_statement_extension to base

The inherited part in account_bank_statement_extension
was removed from addons at revision 6439
revision-id: odo@openerp.com-20120130111654-7fmacaxdtdiiejs9

bzr revid: odo@openerp.com-20120130112318-d84yr7hlhxmwiwic

12 years ago[IMP] res.users: better tooltip for Timezone user pref
Olivier Dony [Mon, 30 Jan 2012 11:20:07 +0000 (12:20 +0100)]
[IMP] res.users: better tooltip for Timezone user pref

bzr revid: odo@openerp.com-20120130112007-g0yheu62uo9j133p

12 years ago[IMP] account: hide column 'statement_id' from Journal Items automatic tree view
Raphael Collet [Mon, 30 Jan 2012 11:18:03 +0000 (12:18 +0100)]
[IMP] account: hide column 'statement_id' from Journal Items automatic tree view

bzr revid: rco@openerp.com-20120130111803-tturnaosp7jxca2p

12 years ago[REM] a_b_s_e: removed Bank Accounts tab on company view, moved to `base` module
Olivier Dony [Mon, 30 Jan 2012 11:16:54 +0000 (12:16 +0100)]
[REM] a_b_s_e: removed Bank Accounts tab on company view, moved to `base` module

bzr revid: odo@openerp.com-20120130111654-7fmacaxdtdiiejs9

12 years ago[FIX] state of current process.
Vaibhav (OpenERP) [Mon, 30 Jan 2012 11:15:41 +0000 (16:45 +0530)]
[FIX] state of current process.

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

bzr revid: vda@tinyerp.com-20120130111541-6mpeb9253fzzk46c

12 years ago[IMP] base_iban: don't break on empty IBAN values, support more countries, reviewed...
Olivier Dony [Mon, 30 Jan 2012 11:15:21 +0000 (12:15 +0100)]
[IMP] base_iban: don't break on empty IBAN values, support more countries, reviewed examples

      - fixed checking of empty IBAN
      - used consistent letter code for IBAN examples
      - added IBAN support for Costa Rica (CR), Kuwait (KW),
       Dominican Rep. (DO), United Arab Emirates (AE),
       Mauritania (MR), Bahrain (BH)
      - minor cleanup

bzr revid: odo@openerp.com-20120130111521-hxnmnd07xkewr4hp

12 years ago[MERGE] crm: change probability of opportunity when changing its stage in kanban...
Raphael Collet [Mon, 30 Jan 2012 10:45:54 +0000 (11:45 +0100)]
[MERGE] crm: change probability of opportunity when changing its stage in kanban view

bzr revid: rco@openerp.com-20120130104554-y2ecf3g9xqlxy7gk

12 years ago[FIX] crm: change probability of opportunity when changing stage in kanban view
Raphael Collet [Mon, 30 Jan 2012 10:29:39 +0000 (11:29 +0100)]
[FIX] crm: change probability of opportunity when changing stage in kanban view

bzr revid: rco@openerp.com-20120130102939-bcfnwx945mxqxylj

12 years ago[IMP] manifest: renamed active to auto_install.
Vo Minh Thu [Mon, 30 Jan 2012 10:20:41 +0000 (11:20 +0100)]
[IMP] manifest: renamed active to auto_install.

bzr revid: vmt@openerp.com-20120130102041-aensqjeqkftq8nm5

12 years ago[IMP] manifest: renamed active to auto_install.
Vo Minh Thu [Mon, 30 Jan 2012 10:18:37 +0000 (11:18 +0100)]
[IMP] manifest: renamed active to auto_install.

bzr revid: vmt@openerp.com-20120130101837-zyebtyhfjypg2b4w

12 years ago[IMP] manifest: removed Hidden/Links category, use auto_install: True instead.
Vo Minh Thu [Mon, 30 Jan 2012 10:03:28 +0000 (11:03 +0100)]
[IMP] manifest: removed Hidden/Links category, use auto_install: True instead.

bzr revid: vmt@openerp.com-20120130100328-iuf60sy2ty8jbfjn

12 years ago[IMP] crm: reformulate confusing error message
Raphael Collet [Mon, 30 Jan 2012 10:01:34 +0000 (11:01 +0100)]
[IMP] crm: reformulate confusing error message

bzr revid: rco@openerp.com-20120130100134-yblv818qzkscjtlg

12 years ago[IMP] updated the amount_data dictionary
Bharat Devnani (OpenERP) [Mon, 30 Jan 2012 09:56:31 +0000 (15:26 +0530)]
[IMP] updated the amount_data dictionary

bzr revid: bde@tinyerp.com-20120130095631-favppa1rxwg1ube8