odoo/odoo.git
10 years ago[CLEAN] web: cleaned dropdown selection widget implementation: cleaned css and js...
Thibault Delavallée [Thu, 8 May 2014 12:33:47 +0000 (14:33 +0200)]
[CLEAN] web: cleaned dropdown selection widget implementation: cleaned css and js code.

bzr revid: tde@openerp.com-20140508123347-ye6pvk1uo5jargec

10 years ago[MERGE] Sync with trunk
Thibault Delavallée [Thu, 8 May 2014 12:09:55 +0000 (14:09 +0200)]
[MERGE] Sync with trunk

bzr revid: tde@openerp.com-20140508120955-m29bs4no8uogrm0n

10 years ago[IMP]remove unwanted css
Barad Mahendra [Thu, 8 May 2014 08:37:40 +0000 (14:07 +0530)]
[IMP]remove unwanted css

bzr revid: mba@tinyerp.com-20140508083740-g0u9cfef10d94oxh

10 years ago[IMP]improve the widget for dropdown selection and priority
Barad Mahendra [Thu, 8 May 2014 05:57:35 +0000 (11:27 +0530)]
[IMP]improve the widget for dropdown selection and priority

bzr revid: mba@tinyerp.com-20140508055735-ekt5gh7w119w2i2j

10 years ago[FIX] Do not self close empty elements that are not html void elements
Fabien Meghazi [Wed, 7 May 2014 16:29:03 +0000 (18:29 +0200)]
[FIX] Do not self close empty elements that are not html void elements

bzr revid: fme@openerp.com-20140507162903-1s2rmlvawohlxvc0

10 years ago[MERGE] trunk-websit-al-refactor by chm
Antony Lesuisse [Wed, 7 May 2014 15:32:23 +0000 (17:32 +0200)]
[MERGE] trunk-websit-al-refactor by chm
- allow fiscal position change on sale orders
- public user on website
- simplify website_sale sale.order and shopping cart code
- remove preprocess_request

bzr revid: al@openerp.com-20140507153223-q73u5lhyrfw98o3a

10 years agoLarge cleanups in addons
Gery Debongnie [Wed, 7 May 2014 15:17:49 +0000 (17:17 +0200)]
Large cleanups in addons

The code I merged in my branch stat buttons was sadly not up to our
standing...  This branch improves the situation by removing harmful
try/excpet/pass statements, by using search_count when appropriate, by
removing unused one2many fields and by correcting some bugs

bzr revid: ged@openerp.com-20140507151749-k37iclwt499ip3e4

10 years ago[MERGE] merge from trunk
Gery Debongnie [Wed, 7 May 2014 15:16:31 +0000 (17:16 +0200)]
[MERGE] merge from trunk

bzr revid: ged@openerp.com-20140507151631-qvkun5z9wvew6069

10 years ago[FIX] code cleanup (addon purchase)
Gery Debongnie [Wed, 7 May 2014 14:45:32 +0000 (16:45 +0200)]
[FIX] code cleanup (addon purchase)

simplify a few _count methods by removing useless try/except/pass and by using search_count when appropriate.  It allows us to remove two one2many fields as well.

bzr revid: ged@openerp.com-20140507144532-dgm9mfgt9k5p10jr

10 years ago[FIX] code cleanup (addon hr_timesheet_sheet)
Gery Debongnie [Wed, 7 May 2014 14:17:25 +0000 (16:17 +0200)]
[FIX] code cleanup (addon hr_timesheet_sheet)

remove try/except/statement that should not be here, uses search_count when appropriate, and remove a now useless one2many field

bzr revid: ged@openerp.com-20140507141725-h2z9u72roscf407n

10 years ago[FIX] code cleanup (addon hr_contract)
Gery Debongnie [Wed, 7 May 2014 14:07:18 +0000 (16:07 +0200)]
[FIX] code cleanup (addon hr_contract)

simplify the method _contracts_count, remove try/except/pass statements

bzr revid: ged@openerp.com-20140507140718-waw1di92qicsch2z

10 years ago[FIX] code cleanup (addon hr_payroll)
Gery Debongnie [Wed, 7 May 2014 13:58:26 +0000 (15:58 +0200)]
[FIX] code cleanup (addon hr_payroll)

remove try/except/pass in _count_detail_payslip and in _payslip_count, improves these methods and remove the now useless field payslip_ids

bzr revid: ged@openerp.com-20140507135826-xlo5gn7iq612lonp

10 years ago[FIX] code cleanup (addon account_asset)
Gery Debongnie [Wed, 7 May 2014 13:45:44 +0000 (15:45 +0200)]
[FIX] code cleanup (addon account_asset)

simplify the method _entry_count by using search_count and by removing try/except/pass

bzr revid: ged@openerp.com-20140507134544-oi3y8hwf16nituki

10 years ago[FIX] code cleanup (addon procurement)
Gery Debongnie [Wed, 7 May 2014 13:41:34 +0000 (15:41 +0200)]
[FIX] code cleanup (addon procurement)

improves the _orderpoint_count method.  Also, as a bonus, the preexisting orderpoint_ids is not used
in any other place, so it can be removed as well

bzr revid: ged@openerp.com-20140507134134-isaor8ulq4pf5wrt

10 years ago[FIX] code cleanup (addon project_issue)
Gery Debongnie [Wed, 7 May 2014 13:29:49 +0000 (15:29 +0200)]
[FIX] code cleanup (addon project_issue)

improves the code of _issue_count (both in partner and in project).  This makes the issue_ids field in res_partner useless,
so issue_ids is also removed.

bzr revid: ged@openerp.com-20140507132949-tbtd4pl33zwhzgwd

10 years ago[FIX] code cleanup (addon hr_recruitment)
Gery Debongnie [Wed, 7 May 2014 13:16:29 +0000 (15:16 +0200)]
[FIX] code cleanup (addon hr_recruitment)

remove try/except/pass in method _count_all, improves the logic

bzr revid: ged@openerp.com-20140507131629-knp2kvw2zs1k200x

10 years ago[FIX] code cleanup (addon mrp)
Gery Debongnie [Wed, 7 May 2014 12:52:48 +0000 (14:52 +0200)]
[FIX] code cleanup (addon mrp)

change the way bom_count, bom_strct and mo_count are computed, removes the try/except/pass statements, improves the logic.

Also, for some reason, bom_strct is the same as bom_count, but I don't really know what it is supposed to be, and the Bom Structure and Bill of materials buttons leads to views with the same number of items.

bzr revid: ged@openerp.com-20140507125248-ctv491ktx008v9ic

10 years ago[MERGE] I18N: make fr_CA one of the default installation languages, courtesy of Maxim...
Olivier Dony [Wed, 7 May 2014 12:31:55 +0000 (14:31 +0200)]
[MERGE] I18N: make fr_CA one of the default installation languages, courtesy of Maxime Chambreuil (SavoirFaireLinux)

bzr revid: odo@openerp.com-20140507123155-blwh7uvmltajkmf5

10 years ago[FIX] Do not self close empty elements that are not html void elements
Fabien Meghazi [Wed, 7 May 2014 12:14:13 +0000 (14:14 +0200)]
[FIX] Do not self close empty elements that are not html void elements

bzr revid: fme@openerp.com-20140507121413-o7jqhexbm1wmitt6

10 years ago[FIX] code cleanup (addon account)
Gery Debongnie [Wed, 7 May 2014 12:13:10 +0000 (14:13 +0200)]
[FIX] code cleanup (addon account)

improve the logic of _journal_item_count (removes try/except/pass, use search_count) and remove useless one2many field in res_partner (journal_item_ids)

bzr revid: ged@openerp.com-20140507121310-ya6m71fvs40rf90d

10 years ago[Merge]with trunk
Barad Mahendra [Wed, 7 May 2014 10:45:47 +0000 (16:15 +0530)]
[Merge]with trunk

bzr revid: mba@tinyerp.com-20140507104547-p7pmav8pez08zf1h

10 years ago[IMP] mail: type fixes
Xavier Morel [Wed, 7 May 2014 10:30:56 +0000 (12:30 +0200)]
[IMP] mail: type fixes

* _get_tracked_fields should return a dict even when there's no tracked field
  (return an empty dict)

* in write, only call _get_tracked_fields once, initialize to None instead of
  a list (especially since it should be a dict in the first place)

bzr revid: xmo@openerp.com-20140507103056-ykr9f57yxpw1c542

10 years ago[FIX] code cleanup (addon crm)
Gery Debongnie [Wed, 7 May 2014 10:09:54 +0000 (12:09 +0200)]
[FIX] code cleanup (addon crm)

improves the method to count opportunities/meetings/phonecalls in res_partner.py.  It was bugged in two different way: the phonecall_count field was counting the number of meetings and not of phone calls, and it was in the try statement, so it might give an incorrect value if an exception occurs in the computation of opportunity/meeting

Also, remove useless meeting_ids one2many field in crm_lead.py and improves the method meeting_count

bzr revid: ged@openerp.com-20140507100954-1aqnd93iu5wsixob

10 years ago[FIX] code cleanup (addon crm)
Gery Debongnie [Wed, 7 May 2014 09:45:53 +0000 (11:45 +0200)]
[FIX] code cleanup (addon crm)

remove unused fields meeting_count and meeting_ids

bzr revid: ged@openerp.com-20140507094553-fwj05122ncr3uic1

10 years ago[FIX] code cleanup (addon stock)
Gery Debongnie [Wed, 7 May 2014 09:34:42 +0000 (11:34 +0200)]
[FIX] code cleanup (addon stock)

improves the _move_count method by removing try statement and using better logic.  Also, removes now useless one2many field (move_ids)

bzr revid: ged@openerp.com-20140507093442-ew1gc06r58tbl9ug

10 years ago[FIX] code cleanup (addon sale)
Gery Debongnie [Wed, 7 May 2014 09:23:03 +0000 (11:23 +0200)]
[FIX] code cleanup (addon sale)

improves the _sales_count method in product.product by removing try/catch and by using better logic.  Also, removes now useless sales_ids one2many field.

bzr revid: ged@openerp.com-20140507092303-a2g4gq2mq3obelye

10 years ago[MERGE] merge from trunk
Gery Debongnie [Wed, 7 May 2014 09:12:10 +0000 (11:12 +0200)]
[MERGE] merge from trunk

bzr revid: ged@openerp.com-20140507091210-2bhcz5azxmgcc37o

10 years ago[FIX] code cleanup (addon account_analytic_default)
Gery Debongnie [Wed, 7 May 2014 09:08:41 +0000 (11:08 +0200)]
[FIX] code cleanup (addon account_analytic_default)

improves the _rules_count method (remove try/catch and better logic), and
removes now useless one2many field rules_ids

bzr revid: ged@openerp.com-20140507090841-jptga7kjrverd25n

10 years ago[FIX] code cleanup (addon hr_evaluation)
Gery Debongnie [Wed, 7 May 2014 09:03:28 +0000 (11:03 +0200)]
[FIX] code cleanup (addon hr_evaluation)

improves _appraisal_count method and remove now useless one2many field appraisal_ids

bzr revid: ged@openerp.com-20140507090328-wyl9gbfzdc540d1k

10 years ago[FIX] code cleanup (addon project)
Gery Debongnie [Wed, 7 May 2014 08:55:35 +0000 (10:55 +0200)]
[FIX] code cleanup (addon project)

improves the _task_count method by removing try clause and using
search_count

bzr revid: ged@openerp.com-20140507085535-16w47y51r6q3yqza

10 years ago[FIX] code cleanup (addon hr_holidays)
Gery Debongnie [Wed, 7 May 2014 08:35:56 +0000 (10:35 +0200)]
[FIX] code cleanup (addon hr_holidays)

improves th _leaves_count method, and remove an useless one2many field
(leaves_ids)

bzr revid: ged@openerp.com-20140507083556-rqm5sllj8fc3qfev

10 years ago[FIX] code cleanup (addon crm_claim)
Gery Debongnie [Wed, 7 May 2014 08:17:23 +0000 (10:17 +0200)]
[FIX] code cleanup (addon crm_claim)

improves the _claim_count method by removing try/except/pass and by using
search_count. Also, removes the now useless one2many field claims_ids (strangely, it was defined before
_claim_count, but was not used.

bzr revid: ged@openerp.com-20140507081723-7pi1t33xxjb6hbwy

10 years ago[FIX] code cleanup (addon fleet)
Gery Debongnie [Wed, 7 May 2014 07:56:45 +0000 (09:56 +0200)]
[FIX] code cleanup (addon fleet)

improve the _count_all method by removing try/catch/pass and by
using search_count instead of the one2many relation.

Also, removes now useless one2many fields costs_ids and odometer_ids

bzr revid: ged@openerp.com-20140507075645-2tp5zgayeea9ehv2

10 years ago[FIX] runbot color
Fabien Meghazi [Wed, 7 May 2014 07:43:10 +0000 (09:43 +0200)]
[FIX] runbot color

bzr revid: fme@openerp.com-20140507074310-bt0r1vt6rsgy9wqe

10 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Wed, 7 May 2014 06:27:12 +0000 (06:27 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20140507062712-t81pc41duzjfrwa6

10 years ago[REM] html_template and render_bootstrap_template()
Fabien Meghazi [Tue, 6 May 2014 16:34:22 +0000 (18:34 +0200)]
[REM] html_template and render_bootstrap_template()

bzr revid: fme@openerp.com-20140506163422-vruavrvkcowu09zi

10 years ago[REM] Removed addons.web#html_template usage
Fabien Meghazi [Tue, 6 May 2014 16:33:34 +0000 (18:33 +0200)]
[REM] Removed addons.web#html_template usage

bzr revid: fme@openerp.com-20140506163334-x94pz9bau4a0r0lb

10 years ago[ADD] modules global rendering variable
Fabien Meghazi [Tue, 6 May 2014 16:32:04 +0000 (18:32 +0200)]
[ADD] modules global rendering variable

This is temporary

bzr revid: fme@openerp.com-20140506163204-u63n3wv1yv6yohd3

10 years ago[IMP] Jinja template for database manager
Mohammed Shekha [Tue, 6 May 2014 15:50:51 +0000 (17:50 +0200)]
[IMP] Jinja template for database manager

bzr revid: fme@openerp.com-20140506155051-3u3kkb9lpvm06iad

10 years ago[FIX] jQuery.ui - boostrap conflict
Fabien Meghazi [Tue, 6 May 2014 15:33:35 +0000 (17:33 +0200)]
[FIX] jQuery.ui - boostrap conflict

bzr revid: fme@openerp.com-20140506153335-x2fwpajvthcru1cv

10 years ago[FIX] jQuery.ui - boostrap conflicts
Fabien Meghazi [Tue, 6 May 2014 15:33:00 +0000 (17:33 +0200)]
[FIX] jQuery.ui - boostrap conflicts

bzr revid: fme@openerp.com-20140506153300-0p1gwnrxihpb4y3r

10 years ago[FIX] code cleanup (addon purchase)
Gery Debongnie [Tue, 6 May 2014 15:07:32 +0000 (17:07 +0200)]
[FIX] code cleanup (addon purchase)

remove useless one2many field in product.product, and improves the way
purchase_count is computed

bzr revid: ged@openerp.com-20140506150732-e0ztuzqm7hqu183p

10 years ago[IMP] do_warn on ClientAction not found
Fabien Meghazi [Tue, 6 May 2014 12:28:40 +0000 (14:28 +0200)]
[IMP] do_warn on ClientAction not found

bzr revid: fme@openerp.com-20140506122840-01b9xtewp4wcv42g

10 years ago[ADD] openerp.loadBundle()
Fabien Meghazi [Tue, 6 May 2014 10:36:49 +0000 (12:36 +0200)]
[ADD] openerp.loadBundle()

bzr revid: fme@openerp.com-20140506103649-wrfa25boj2chy6gl

10 years ago[IMP] sale: add comment on onchange_fiscal_position and update taxes of order lines...
chm@openerp.com [Tue, 6 May 2014 08:05:25 +0000 (10:05 +0200)]
[IMP] sale: add comment on onchange_fiscal_position and update taxes of order lines only if a product is defined

bzr revid: chm@openerp.com-20140506080525-4scwvtk7os8b63d0

10 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Tue, 6 May 2014 06:36:12 +0000 (06:36 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20140506061338-jwpj0jxfcnakph24
bzr revid: launchpad_translations_on_behalf_of_openerp-20140506061359-p8lxp23aopeb6mwh
bzr revid: launchpad_translations_on_behalf_of_openerp-20140506063612-leryt792evbx9hsy

10 years ago[REM] preprocess_request from website
Fabien Meghazi [Mon, 5 May 2014 16:38:41 +0000 (18:38 +0200)]
[REM] preprocess_request from website

The method is still there with only a pass statement
Will completetly remove once chm merges his branch

bzr revid: fme@openerp.com-20140505163841-lstk3r37sf23ngrg

10 years ago[MERGE] Merge with trunk-cal-V8-jke. - Change field datetime into date or datetime...
Kersten Jeremy [Mon, 5 May 2014 16:24:22 +0000 (18:24 +0200)]
[MERGE] Merge with trunk-cal-V8-jke. - Change field datetime into date or datetime according to that event type is in all day or not...

bzr revid: jke@openerp.com-20140505162422-k332rm7j21af5ore

10 years ago[MERGE] Merge with trunk-cal-V8-jke. - Change field datetime into date or datetime...
Kersten Jeremy [Mon, 5 May 2014 16:22:57 +0000 (18:22 +0200)]
[MERGE] Merge with trunk-cal-V8-jke. - Change field datetime into date or datetime according to that event type is in all day or not...

bzr revid: jke@openerp.com-20140505162257-rsb0ez8n9u6engu9

10 years ago[ADD] Support for ir.attachments in assets bundles
Fabien Meghazi [Mon, 5 May 2014 16:09:53 +0000 (18:09 +0200)]
[ADD] Support for ir.attachments in assets bundles

bzr revid: fme@openerp.com-20140505160953-yk6688ey7eoz5579

10 years ago[REF] Replace temp name by real name
Kersten Jeremy [Mon, 5 May 2014 15:43:43 +0000 (17:43 +0200)]
[REF] Replace temp name by real name

bzr revid: jke@openerp.com-20140505154343-7r6t02n51ts8m8j9

10 years ago[FIX] Add missing security rules
Kersten Jeremy [Mon, 5 May 2014 15:43:09 +0000 (17:43 +0200)]
[FIX] Add missing security rules

bzr revid: jke@openerp.com-20140505154309-whfdzf7suf8307vd

10 years ago[REF] Replace temp name by real name
Kersten Jeremy [Mon, 5 May 2014 15:42:46 +0000 (17:42 +0200)]
[REF] Replace temp name by real name

bzr revid: jke@openerp.com-20140505154246-8vahdzf60oiksm62

10 years ago[ADD] base_import_module test module, static asset in backend bundle
Fabien Meghazi [Mon, 5 May 2014 14:58:16 +0000 (16:58 +0200)]
[ADD] base_import_module test module, static asset in backend bundle

bzr revid: fme@openerp.com-20140505145816-jz7e4byh1imrkaek

10 years ago[MERGE] from trunk
chm@openerp.com [Mon, 5 May 2014 13:46:08 +0000 (15:46 +0200)]
[MERGE] from trunk

bzr revid: chm@openerp.com-20140505134608-hqcmqyo3d98y851j

10 years ago[REV] defer
Fabien Meghazi [Mon, 5 May 2014 13:10:12 +0000 (15:10 +0200)]
[REV] defer

bzr revid: fme@openerp.com-20140505131012-owp0qucjbnesp4ee

10 years ago[FIX] website_sale: don't rewrite sale order partner_id with the public user
chm@openerp.com [Mon, 5 May 2014 12:47:02 +0000 (14:47 +0200)]
[FIX] website_sale: don't rewrite sale order partner_id with the public user

bzr revid: chm@openerp.com-20140505124702-cq6tvb6h3lgyst99

10 years ago[FIX] Fix access rule for portal. Add timezone in small calendar from email
Kersten Jeremy [Mon, 5 May 2014 12:46:57 +0000 (14:46 +0200)]
[FIX] Fix access rule for portal. Add timezone in small calendar from email

bzr revid: jke@openerp.com-20140505124657-t6gxusxkkgon06hf

10 years ago[TRY] defer
Fabien Meghazi [Mon, 5 May 2014 12:10:36 +0000 (14:10 +0200)]
[TRY] defer

bzr revid: fme@openerp.com-20140505121036-044ecvq8s3d669b2

10 years ago[IMP] website: load website.xml templates only in editable mode
Fabien Meghazi [Mon, 5 May 2014 11:38:00 +0000 (13:38 +0200)]
[IMP] website: load website.xml templates only in editable mode

bzr revid: fme@openerp.com-20140505113800-wv5vh802us270oez

10 years ago[MERGE] from trunk
chm@openerp.com [Mon, 5 May 2014 11:23:14 +0000 (13:23 +0200)]
[MERGE] from trunk

bzr revid: chm@openerp.com-20140505112314-1zbn7ae61mg8xavl

10 years ago[FIX] Calendar - set tz compatible in template mail and view (from email link). now...
Kersten Jeremy [Mon, 5 May 2014 10:46:11 +0000 (12:46 +0200)]
[FIX] Calendar - set tz compatible in template mail and view (from email link). now it's possible to choose in template the TZ of the attendee, or the tz from event creator...

bzr revid: jke@openerp.com-20140505104611-6qwpwwslxen0bea5

10 years ago[FIX] website_sale & website_event: create product (redirect with slug)
chm@openerp.com [Mon, 5 May 2014 09:57:24 +0000 (11:57 +0200)]
[FIX] website_sale & website_event: create product (redirect with slug)

bzr revid: chm@openerp.com-20140505095724-mc9k6d2yf68ln9nq

10 years ago[FIX] website_sale: message confirmation
chm@openerp.com [Mon, 5 May 2014 09:34:23 +0000 (11:34 +0200)]
[FIX] website_sale: message confirmation

bzr revid: chm@openerp.com-20140505093423-nrmou02ov1txod3k

10 years ago[IMP] website_sale: attribute's filters template unactive by default
chm@openerp.com [Mon, 5 May 2014 09:27:30 +0000 (11:27 +0200)]
[IMP] website_sale: attribute's filters template unactive by default

bzr revid: chm@openerp.com-20140505092730-pxsdxlhxwuxoc3fr

10 years ago[FIX] website_sale: apply tax position on checkout signup
chm@openerp.com [Mon, 5 May 2014 09:23:00 +0000 (11:23 +0200)]
[FIX] website_sale: apply tax position on checkout signup

bzr revid: chm@openerp.com-20140505092300-l29tc4pum31nqd1h

10 years ago[FIX] sale: change fiscal_position don't change order line taxes; Add onchange_fiscal...
chm@openerp.com [Mon, 5 May 2014 08:57:55 +0000 (10:57 +0200)]
[FIX] sale: change fiscal_position don't change order line taxes; Add onchange_fiscal_position method on sale.order

bzr revid: chm@openerp.com-20140505085755-wewn9xm8bp08ywnd

10 years ago[FIX] event: move definition of fields track_ids and count_tracks to the right module
Raphael Collet [Mon, 5 May 2014 08:57:39 +0000 (10:57 +0200)]
[FIX] event: move definition of fields track_ids and count_tracks to the right module

bzr revid: rco@openerp.com-20140505085739-z2asr1vrx6yyjtlh

10 years ago[IMP] Certification Template
Fabien Pinckaers [Sun, 4 May 2014 11:38:47 +0000 (13:38 +0200)]
[IMP] Certification Template

bzr revid: fp@tinyerp.com-20140504113847-4xmjg30m5leaqz2c

10 years ago[FIX] website_event: access right for portal user
chm@openerp.com [Fri, 2 May 2014 16:21:38 +0000 (18:21 +0200)]
[FIX] website_event: access right for portal user

bzr revid: chm@openerp.com-20140502162138-qp2kci9i1bncsj1i

10 years ago[FIX] website_sale: access to the webite partner_id
chm@openerp.com [Fri, 2 May 2014 16:06:28 +0000 (18:06 +0200)]
[FIX] website_sale: access to the webite partner_id

bzr revid: chm@openerp.com-20140502160628-nbwzx28j4daj1ua8

10 years ago[FIX] website_sale & tour
chm@openerp.com [Fri, 2 May 2014 15:51:24 +0000 (17:51 +0200)]
[FIX] website_sale & tour

bzr revid: chm@openerp.com-20140502155124-98xz2b4gd2zzzrkx

10 years ago[FIX] website_sale: add to cart product => quantity + 1
chm@openerp.com [Fri, 2 May 2014 15:08:42 +0000 (17:08 +0200)]
[FIX] website_sale: add to cart product => quantity + 1

bzr revid: chm@openerp.com-20140502150842-nitu8tsxd02e6dnh

10 years ago[MERGE] merge the last changes to improve the 'stat buttons' support in web
Gery Debongnie [Fri, 2 May 2014 14:52:11 +0000 (16:52 +0200)]
[MERGE] merge the last changes to improve the 'stat buttons' support in web

Many small tweaks/css changes to correctly display the stat buttons in
various situations (with/without icons, with/without strings, with sub
widgets, ...)

bzr revid: ged@openerp.com-20140502145211-ehnb1v66szw7nl01

10 years ago[MERGE] converts buttons in form views into 'stat buttons'
Gery Debongnie [Fri, 2 May 2014 14:45:44 +0000 (16:45 +0200)]
[MERGE] converts buttons in form views into 'stat buttons'

This branch converts pretty much every buttons in 'stat buttons',
which means buttons that can display any kind of information.  Right
now, it is mostly used to display a numerical information (such as a
number, for example 9 Calls).  Also, look at the invoices button in
Customers form view for an example of a functional field, displaying
the total amount invoiced.

The stat buttons also supports sub widgets, for example a mini pie chart
or a mini bar chart.  Examples of such sub widgets can be found in
marketing/mass mailings form views (not ready yet)

bzr revid: ged@openerp.com-20140502144544-c5j7bzlm9i4clv4l

10 years ago[MERGE] Merge with trunk
Kersten Jeremy [Fri, 2 May 2014 14:21:26 +0000 (16:21 +0200)]
[MERGE] Merge with trunk

bzr revid: jke@openerp.com-20140502142126-408hej7jdb9bnrzm

10 years ago[FIX] website_event_sale: multi tickets
chm@openerp.com [Fri, 2 May 2014 14:01:52 +0000 (16:01 +0200)]
[FIX] website_event_sale: multi tickets

bzr revid: chm@openerp.com-20140502140152-hx7ktaf0cg2m7ija

10 years ago[IMP]Improved the database manager, instead of calling html_template, created separat...
Mohammed Shekha [Fri, 2 May 2014 13:23:49 +0000 (18:53 +0530)]
[IMP]Improved the database manager, instead of calling html_template, created separate html file which is rendered using jinja2, so that we don't need html_template once pos and edit support render_bootstrap_template.

bzr revid: msh@tinyerp.com-20140502132349-bw9zdyaou4yf8o7q

10 years ago[FIX] correct a small typo in previous merge (addon crm)
Gery Debongnie [Fri, 2 May 2014 13:22:58 +0000 (15:22 +0200)]
[FIX] correct a small typo in previous merge (addon crm)

bzr revid: ged@openerp.com-20140502132258-88x9mam35o3k5ndm

10 years ago[MERGE] merge from trunk
Gery Debongnie [Fri, 2 May 2014 13:07:53 +0000 (15:07 +0200)]
[MERGE] merge from trunk

bzr revid: ged@openerp.com-20140502130753-4z24z1to9pkrckvq

10 years ago[MERGE] merge from trunk
Gery Debongnie [Fri, 2 May 2014 12:33:55 +0000 (14:33 +0200)]
[MERGE] merge from trunk

bzr revid: ged@openerp.com-20140502123355-9dqpwq1g9rrpisxj

10 years ago[MERGE] Merge with trunk
Kersten Jeremy [Fri, 2 May 2014 12:31:49 +0000 (14:31 +0200)]
[MERGE] Merge with trunk

bzr revid: jke@openerp.com-20140502123149-4g7d7xh07i5z9dct

10 years ago[MERGE] from trunk
chm@openerp.com [Fri, 2 May 2014 09:51:32 +0000 (11:51 +0200)]
[MERGE] from trunk

bzr revid: chm@openerp.com-20140502095132-kfx40xou73mukr2y

10 years ago[FIX] website_mail: request.website.user_id.id
chm@openerp.com [Fri, 2 May 2014 09:26:59 +0000 (11:26 +0200)]
[FIX] website_mail: request.website.user_id.id

bzr revid: chm@openerp.com-20140502092659-1gwsx6lmgmtcf80q

10 years ago[FIX] ir_qweb revert async script attribute
Antony Lesuisse [Thu, 1 May 2014 21:20:23 +0000 (23:20 +0200)]
[FIX] ir_qweb revert async script attribute

bzr revid: al@openerp.com-20140501212023-x9r57i05nrr0g29f

10 years ago[FIX] edi, calendar webclient bootstrap
Fabien Meghazi [Thu, 1 May 2014 21:05:07 +0000 (23:05 +0200)]
[FIX] edi, calendar webclient bootstrap

bzr revid: fme@openerp.com-20140501210507-cbl9no3o92zkdq5h

10 years ago[FIX] database manager
Fabien Meghazi [Thu, 1 May 2014 21:04:36 +0000 (23:04 +0200)]
[FIX] database manager

bzr revid: fme@openerp.com-20140501210436-osyrvlue41w63i6f

10 years ago[FIX] ir_qweb set js assets to async
Antony Lesuisse [Thu, 1 May 2014 20:51:53 +0000 (22:51 +0200)]
[FIX] ir_qweb set js assets to async

bzr revid: al@openerp.com-20140501205153-ko00g1vyyrmc21k8

10 years ago[FIX] qweb loading concat mode only, increase cache age to one day
Antony Lesuisse [Thu, 1 May 2014 20:42:42 +0000 (22:42 +0200)]
[FIX] qweb loading concat mode only, increase cache age to one day

bzr revid: al@openerp.com-20140501204242-jngte754yqyj4nb0

10 years ago[FIX] website_event missing javascript asset
Antony Lesuisse [Thu, 1 May 2014 20:01:50 +0000 (22:01 +0200)]
[FIX] website_event missing javascript asset

bzr revid: al@openerp.com-20140501200150-5u3lfdqls3t3oeih

10 years ago[FIX] web_kanban_gauge needs raphaeljs temporarly back in assets_backend
Antony Lesuisse [Thu, 1 May 2014 19:18:31 +0000 (21:18 +0200)]
[FIX] web_kanban_gauge needs raphaeljs temporarly back in assets_backend

bzr revid: al@openerp.com-20140501191831-mhsrpgza1x00ysy4

10 years ago[IMP] ir_qweb improve css minify
Antony Lesuisse [Thu, 1 May 2014 19:05:44 +0000 (21:05 +0200)]
[IMP] ir_qweb improve css minify

bzr revid: al@openerp.com-20140501190544-egvc85ctdxs69cmr

10 years ago[IMP] cleanups, move tests, remove deprecated model instantiation
Antony Lesuisse [Thu, 1 May 2014 18:42:17 +0000 (20:42 +0200)]
[IMP] cleanups, move tests, remove deprecated model instantiation

bzr revid: al@openerp.com-20140501184217-pgi1gzbdpysdybog

10 years ago[MERGE] saas-4 up to dle@openerp.com-20140501121915-q88k37nd25ietw8c
Antony Lesuisse [Thu, 1 May 2014 17:25:08 +0000 (19:25 +0200)]
[MERGE] saas-4 up to dle@openerp.com-20140501121915-q88k37nd25ietw8c

bzr revid: al@openerp.com-20140501172508-tjennzht30ktw3nz

10 years ago[FIX] website controller, correctly resolve last merge about images
Antony Lesuisse [Thu, 1 May 2014 16:50:04 +0000 (18:50 +0200)]
[FIX] website controller, correctly resolve last merge about images
fix fp commit to use debian compatible werkzeug api data instead of set_data

bzr revid: al@openerp.com-20140501165004-0e6xp8e9hdpifofj

10 years ago[IMP] Lossless PNG compression. Reduced size by 3 with pngquant
Fabien Pinckaers [Thu, 1 May 2014 16:14:52 +0000 (18:14 +0200)]
[IMP] Lossless PNG compression. Reduced size by 3 with pngquant

bzr revid: fp@tinyerp.com-20140501161452-0pw17e2v0cjjlupm

10 years ago[MERGE] saas-4 report_webkit missing dependency on report
Antony Lesuisse [Thu, 1 May 2014 16:11:56 +0000 (18:11 +0200)]
[MERGE] saas-4 report_webkit missing dependency on report

bzr revid: al@openerp.com-20140501152604-4cobh5ui47dt4pem
bzr revid: al@openerp.com-20140501155633-gefnc3zqcsr2rhaz
bzr revid: al@openerp.com-20140501161156-4wbsvhh8gz4r22h3

10 years ago[FIX] report_webkit missing dependency on report
Antony Lesuisse [Thu, 1 May 2014 16:11:08 +0000 (18:11 +0200)]
[FIX] report_webkit missing dependency on report

bzr revid: al@openerp.com-20140501161108-50yidx30rm6z7d10

10 years ago[FIX] tests race condition in phanthomjs tests
Antony Lesuisse [Thu, 1 May 2014 15:06:41 +0000 (17:06 +0200)]
[FIX] tests race condition in phanthomjs tests
A deadlock occurs when
- phantomjs_test1 is executedd, enter_test_mode is activated
- console.log('ok') is issued, sigterm is sent to phantomjs_test1 process
- phantomjs_test1 is finished and leave_test_mode restores the registrymanager lock
- phantomjs_test1 process, just before dying, makes a last http request phantomjs_test1_last_request
- phantomjs_test1_last_request thread will wait for the registrymanager lock, when all tests will be completed
- phantomjs_test2 is run, enter_test_mode is activated
- phantomjs_test2 is reach its end and _wait_remaining_requests is called
- phantomjs_test2 _wait_remaining_requests hangs forever waiting for phantomjs_test1_last_request

bzr revid: al@openerp.com-20140501150641-ua0b7pntesgm3n5p

10 years ago[MERGE] Forward-port of latest saas-3 bugfixes, up to rev. 4007 revid:dle@openerp...
Denis Ledoux [Thu, 1 May 2014 12:19:15 +0000 (14:19 +0200)]
[MERGE] Forward-port of latest saas-3 bugfixes, up to rev. 4007 revid:dle@openerp.com-20140501121633-6umc2sxwi0h0lhay

bzr revid: dle@openerp.com-20140430123818-zzdxmat4c5yg9gg7
bzr revid: dle@openerp.com-20140501121915-q88k37nd25ietw8c