Commit Graph

89297 Commits

Author SHA1 Message Date
Antony Lesuisse 765de73082 [FIX] odoo.py debian add postgresql 2014-06-25 13:23:06 +02:00
Antony Lesuisse f854e3cea9 [FIX] odoo.py debian packages 2014-06-25 13:18:55 +02:00
Christophe Simonis 1eaa69d342 [MERGE] forward port of branch saas-5 up to 9e8e365 2014-06-25 12:44:13 +02:00
Christophe Simonis 9e8e3653f2 [MERGE] forward port of branch saas-4 up to f68c835 2014-06-25 12:43:41 +02:00
Christophe Simonis f68c83545a [MERGE] forward port of branch saas-3 up to a66f3dd 2014-06-25 12:33:17 +02:00
Christophe Simonis a66f3dd992 [MERGE] forward port of branch 7.0 up to df6b37c 2014-06-25 12:27:43 +02:00
dhr-odoo df6b37c472 [FIX] account: add multicompany rule to account.subscription.line
The wizard to generate recurring entries did not respect multicompany rules as the request was done in plain sql.
Add ir.rule and use the orm (opw 607782)
2014-06-25 12:07:02 +02:00
Denis Ledoux dee969929a [FIX] purchase_requisition: duplicated stock moves
When a purchase requisition is created from a procurement order, a first stock move is created, not associated to any purchase orders
Then, on purchase order creation and confirmation, in the purchase requisition, new stock moves are created, associated to the purchase order.
The existing stock move issued from the procurement order which created the purchase requisition remained untouched, leading to wrong inventory values
To fix this, the destination location of the stock move of the procurement order is written on the source location
A proper fix should be to use a dedicated workflow for puchase requisition, but this can't be done in 7.0, it has to be done in master/trunk
2014-06-25 12:00:14 +02:00
Christophe Simonis a1b3e22a17 [MERGE] forward port of branch 7.0 up to 4bfcbb2 2014-06-25 11:35:11 +02:00
Christophe Simonis 5112421a93 [FIX] website: correct slug parsing 2014-06-25 11:08:51 +02:00
Alexandre Fayolle 4bfcbb2a48 [FIX] fields property: do not create empty properties
fixes #595
In the case where a property for the company exists but has no related record (e.g. in case of type m2o with no defined value), not setting a value to this field for a new record would create a new property (as browse_null is not an instance of browse_record)
2014-06-25 10:57:10 +02:00
Thibault Delavallée 50871bb4fe Merge pull request #725 from odoo-dev/7.0-bug-1235237-ypa
[FIX] crm_claim: copy: reset stage + add a copy marker to the name
2014-06-25 09:15:11 +02:00
Thibault Delavallée 71ce98b364 Merge pull request #726 from odoo-dev/master-bug-1233410-ypa
[FIX] crm_claim: track responsible, allowing automatic subscription and helping avoiding some access rights issues.
2014-06-25 08:51:28 +02:00
dhr-odoo b466e6e6b9 Displayed the name of Intrasat code in Intrasat Invoice report instead of browse record 2014-06-24 17:01:07 +02:00
Atul Patel 56ba15a3c8 [IMP]: Remove user id domain changes from ir rule 2014-06-24 19:37:00 +05:30
Martin Trigaux a6c579c4fc Merge pull request #528 from bwrsandman/patch-1
[FIX] Spawn gevent using same python executable
2014-06-24 16:06:57 +02:00
Yogesh Parekh ac5a0b046b [IMP]: Improve copy method to set stage_id in draft stage 2014-06-24 19:05:46 +05:30
Thibault Delavallée efa0e4218f Merge pull request #727 from odoo-dev/master-document-fix-issue-gan
[IMP] document: remove from knowledge + view type fixes
2014-06-24 15:33:49 +02:00
Martin Trigaux 6e91cb5f50 Merge pull request #746 from acsone/master-defer_parent_store_computation-on-write
[IMP] orm: defer_parent_store_computation in write

Take into account the context parameter 'defer_parent_store_computation' in write operation.
When executing actions with this key in the context, _parent_store_compute should be manually called afterwards. Use at your own risks...
2014-06-24 15:13:24 +02:00
Christophe Simonis 53f7a5594b Merge pull request #622 from odoo-dev/7.0-opw-592890-msh
[FIX] search on translated field: Only search on source field if not translated.
2014-06-24 15:05:53 +02:00
Laurent Mignon (aka lmi) ea00789e35 [IMP] take into account the context parameter 'defer_parent_store_computation' also on write operations 2014-06-24 14:22:41 +02:00
Mohammed Shekha 0b593ada11 Server Translation: Fixed the issue search on translated field do not return true result, search on tranlsated field fails due to expression parsing which fetches ids from ir_translation as well as working table and UNION of this makes search fruitless, also search fails for in language other then english when you enter part of a string for the field to search. 2014-06-24 17:42:48 +05:30
Denis Ledoux e1e0cfbba8 [MERGE] Forward-port of 7.0 bugfixes up to e2201369a3 2014-06-24 13:56:51 +02:00
Denis Ledoux e2201369a3 [FIX] web: format.js, toString while parsing date
When attempting to parse client date, value is not always a string.
We force the toString when adding the leading 0, as the replace method is for string
2014-06-24 13:53:02 +02:00
Martin Trigaux 90deaf386a Merge pull request #650 from yvaucher/patch-1
[7.0] sale_stock: field sale_id should be on stock.picking.out view
2014-06-24 13:49:50 +02:00
sle-odoo fd7809f97f Merge pull request #745 from odoo-dev/saas-4-update-bootswatch-sle
[MERGE] manual merge of latest bootswatch minified stylesheets
2014-06-24 13:40:58 +02:00
Denis Ledoux 8e83dbff5d [MERGE] Forward-port of 7.0 bugfixes up to 7d3453d119 2014-06-24 12:27:09 +02:00
Denis Ledoux 7d3453d119 [FIX] purchase_requisition: broken procurement wkf
If a purchase requisition is created instead of a purchase order for a procurement order, the method make_po should not return the id of this requisition, as methods calling the make_po method expects ids of purchase orders, not purchase requisition ids.

Besides, on purchase requisition done or cancel, we set the procurement order accordingly, without the use of the workflow. We consider this as crappy, the proper fix should be the use of a dedicated workflow for purchase requisition, but I cannot be done in stable branches. This aims trunk/master.
2014-06-24 12:12:27 +02:00
Simon Lejeune 478a763cac [MERGE] manual merge of latest bootswatch minified stylesheets 2014-06-24 11:48:49 +02:00
qdp-odoo 113d2f95ba Merge pull request #717 from odoo-dev/master-bnk-stmt-widget-fix-csn2
Master bnk stmt widget fix csn2

reduces a lot the number of rpc call in the bank statement widget interface.
2014-06-24 11:05:55 +02:00
odony 34034a8ec1 Update CONTRIBUTING.md 2014-06-24 09:44:11 +02:00
Martin Trigaux 05a87c9f8d Merge pull request #739 from apertoso/7.0-bug-vat_intra
[FIX] l10n_be: VAT number for Intra XML declaration should not contain county code
2014-06-24 09:27:16 +02:00
Jos De Graeve b86e0a4392 [FIX] Partner VAT Intra XML delaration: Vat number format correction
The Partner VAT Intra XML delaration needs to have the VAT number
in the format without the country code prefix.

The current behaviour was to include the country code prefix in the
report which causes an SQLException error on uploading the XML file
to the Federal goverment's website.  While the error is non-descriptive
fixing the VAT number format fixes the error.
2014-06-23 18:18:42 +02:00
Josse Colpaert 5616e052cf Merge pull request #728 from odoo-dev/master-wmsstagingmig-jco
Master wmsstagingmig jco
2014-06-23 18:10:25 +02:00
Christophe Matthieu ed6becb2c0 Merge pull request #233 from odoo-dev/master-website_hr_recruitment-GeoIP-chm
[IMP] website_hr_recruitment: Search by country or/and department or/and by office. Default search by country with GeoIP
2014-06-23 17:56:38 +02:00
Christophe Matthieu be4dddca8a [IMP] website_hr_recruitment: use session geoip for country default value 2014-06-23 17:51:20 +02:00
Christophe Matthieu 176a6aad46 merge upstream 2014-06-23 17:48:55 +02:00
Christophe Matthieu 9eb3356b16 merge upstream 2014-06-23 17:44:58 +02:00
Martin Trigaux f9ce9a00d0 Merge pull request #17 from savoirfairelinux/7.0-m2m-context
[FIX] view_list: Add context propagation for m2m list view

If the _rec_name field of a model is translatable, the value was not translated when displayed in a list view through a many2many field (e.g. server_action_ids on base.action.rule).
2014-06-23 17:41:03 +02:00
Cedric Snauwaert 31f1fad0f6 [FIX]account reconciliation widget: add account_code to filter 2014-06-23 17:20:42 +02:00
Christophe Matthieu c81708a891 Merge pull request #732 from odoo-dev/master-fix-website_sale-change-price-chm
[FIX] website_sale: user can't edit the price.
2014-06-23 16:44:54 +02:00
Christophe Matthieu 1d1b6e79b5 [FIX] website_sale: user can't edit the price. 2014-06-23 16:38:04 +02:00
Thibault Delavallée f2c2deecd7 Merge pull request #680 from odoo-dev/master-remove-crm-dependancy-from-issue-rma
[REF] project_issue: remove dependency towards crm (but added dependency to sales_team). Main change: channel_id is now channel, a char field that holds the source channel.
2014-06-23 16:37:10 +02:00
Martin Trigaux d9e6a7a9ae [FIX] calendar: do not parse date to date
When creating an event from the calendar view, no need to parse a date to date (error undefined is not a function)
2014-06-23 16:33:41 +02:00
Martin Trigaux caea4a9aec Merge pull request #621 from odoo-dev/saas-4-fix_actions_server_controller_return-vta
[FIX] website: controller for server actions should accept basic werkzeug requests (e.g. redirections)
2014-06-23 16:05:04 +02:00
Peter Herczeg 1cbef2e9f5 [ADD] Hungarian Localization 2014-06-23 15:37:40 +02:00
Josse Colpaert 5ecde0fa26 [IMP] Tristates should be working even if the picking has no name 2014-06-23 15:23:20 +02:00
Richard Mathot 4871d68d2d Merge pull request #498 from odoo-dev/master-calendar-meeting-ptr
[IMP] calendar: favorite contacts list
2014-06-23 15:15:41 +02:00
Pariket Trivedi f0765121c6 [IMP] calendar: favorite contacts list
Improved calendar's favorite meeting list and added a input box to directly
insert the partner in favorite list and 'X' to remove the partner's name
from the favorite meeting list in calendar view.
2014-06-23 15:03:29 +02:00
odony 8f72a3f160 Merge pull request #716 from sve-odoo/patch-5
[MERGE] ir.ui.view: display inherited views in form view
2014-06-23 13:21:02 +02:00