- Dec 04, 2014
-
-
Sandy Carter authored
Check if id is valid by searching record columns when a key error is raised If the record has the column, the key error is actually an error on a missing or inaccessible id. Signed-off-by:
Sandy Carter <sandy.carter@savoirfairelinux.com> Closes #3658
-
- Nov 28, 2014
-
-
Andrius Preimantas authored
When deleting a partner with some contacts, if the contacts had selected the "use parent address" checkbox, the address of the contacts was stucked in readonly mode (no checkbox to disable it). Disable use_parent_address for orphan partners. Fixes #3611 #3613
-
- Nov 27, 2014
-
-
Sandy Carter authored
The name_get of res.partner.bank uses the format_layout to generate the name of the bank. As every field is not required, we may get 'False' in the name. Replace these missing values by an empty string. Fixes #3590
-
- Nov 05, 2014
-
-
Olivier Dony authored
Stems from prebiblical commit f083aa2b. Fixes #3480
-
- Nov 04, 2014
-
-
Manuel Vázquez Acosta authored
-
- Oct 24, 2014
-
-
Cecile Tonglet authored
Fixes #3237 cherry-pick of 8e720494
-
Christophe Simonis authored
[FIX] When using "--stop-after-init", set the return code correctly. A non zero return code reflect the number of databases that fail to load/update Backport of 2c4e370b and 33ce0e73
-
- Oct 22, 2014
-
-
Cédric Snauwaert authored
Remove the hardcoded precision of 12 on factor and factor_inv, to use the complete natural precision of NUMERIC types, preserving all significant digits. e.g. a UoM with a factor_inv of 6.0 used to be computed as: factor_inv: 6.0 -> factor: 0.166666666667 (1.0/6.0, rounded to 12 digits) -> factor_inv: 5.999999999988 (1.0/factor) which could lead to errors such 12*0.166666666667 = 2.000000000004 instead of 2.0 Slightly changed the way the ORM handles float fields to allow setting `digits=0` as a way to explicitly require a NUMERIC value but without enforcing/rounding the values at the ORM level, i.e. a truly full-precision field. NUMERIC type has unlimited precision but is less efficient so should not be used as the default behaviour, which is why we keep float8 as an alternative. Modified the view to display the product UOM factor with a 5 digits value by default. This value is for usability purpose only, the field still accepts bigger precision, by setting the `digits` option on the field in the form view. This change is safe in a stable series, the `digits=0` alternative is treated the same as the default `digits=None` everywhere in the framework, except when creating the database field.
-
Martin Trigaux authored
Add rounding_method parameter on float_round method to offer HALF-UP (default, usual round) or UP (ceiling) rounding method. Use the second method instead of math.ceil() for product reservations. For UP, the python math.ceil() method uses "torwards infinity" rounding method while we want "away from zero". Therefore we use the absolute value of normalized_value to make sure than -1.8 is rounded to -2.0 and not -1. Fixes #1125 #2793 This is a cherry-pick of d4972ffd which was reverted at 333852e1 due to remaining issue with negative values.
-
- Oct 21, 2014
-
-
Martin Trigaux authored
Save the NumberedCanvas state before doing a page reset. The order of execution when rendering an rml report is the following: 1. init canevas (_pageNumber = 1) 2. render the page element 3. if still pages to render, afterPage method 4. if still pages to render, showPage method (_pageNumber += 1) 5. back to step 2 for each page 6. draw the ResetPage element (setting flag _doPageReset=True) 7. end the document build with afterPage & showPage method The PageReset element should be executed at the end of the rendering of a story (subdocument) to reinitialize the page numbers to 0 (for new story) and insert the pageCount element for that story with the total number of pages (needed if want to use tag <pageCount/> in rml). In case of NumberedCanvas (e.g. used in Trial Balance report), the numbering is generated at the end of the build using the _saved_page_states dict in the canevas. To have an accurate _saved_page_states content, it needs to be saved before the pageReset. Fixes #2225
-
- Oct 20, 2014
-
-
Julien Legros authored
In some cases (e.g. with record rules), the name_get might not have access to the parent name. Therefore a parent_name related field solves the issue (as it read with as superuser).
-
- Oct 10, 2014
-
-
Olivier Dony authored
Rev f2cf6ced modified RFC2822 parsing in order to better support unicode characters inside the Name part of an address header. However the patch broke handling of multiple addresses (comma separated) - silently discarding all recipients except the first one, as soon as any non-ASCII character was present. This patch restores the functionality while preserving the fix from f2cf6ced, and simplifies the code using email.utils utility functions. Fixes (again) lp:1272610, OPW 607683
-
- Oct 09, 2014
-
-
Denis Ledoux authored
-
Martin Trigaux authored
If an email contains several text/html parts inside a multipart email, the previous code was only keeping the last content part. The Content-Type: multipart/mixed allows several independent part (RFC1341 7.2.2), so two html is technically valid. With this patch, the two parts are concatenated. (opw 614755) Modify append_content_to_html regex to make sure the regex keeps the content of the html instead of removing it. e.g.: "123 <html> 456 </html> 789" used to be stripped to "123 789" while we expect "123 456 789"
-
- Oct 03, 2014
-
-
Denis Ledoux authored
tools.ustr(None) returns u'None', res[0] can be None.
-
Denis Ledoux authored
This is possible that control characters (such as line returns) are inserted wrongly in translations These should not influence on the web interface
-
- Oct 02, 2014
-
-
Denis Ledoux authored
-
- Sep 29, 2014
-
-
Olivier Dony authored
-
- Sep 26, 2014
-
-
Denis Ledoux authored
This reverts commit d4972ffd. Seems to break some cases, at least in _product_reserve from stock/stock.py Actual use case: SELECT product_uom, sum(product_qty) AS product_qty FROM stock_move WHERE location_dest_id=%s AND location_id<>%s AND product_id=3645 AND state='done' GROUP BY product_uom; returning 1 | 6 SELECT product_uom,-sum(product_qty) AS product_qty FROM stock_move WHERE location_id=%s AND location_dest_id<>%s AND product_id=%s AND state in ('done', 'assigned') GROUP BY product_uom; returning 1 | -6 results += cr.dictfetchall() total = 0.0 results2 = 0.0 for r in results: amount = uom_obj._compute_qty(cr, uid, r['product_uom'], r['product_qty'], context.get('uom', False)) results2 += amount total += amount Total = 1, amount = -5 It should actually be Total = 0, amount = -6
-
Denis Ledoux authored
As in most cases, we do not want this doall
-
- Sep 25, 2014
-
-
Denis Ledoux authored
-
- Sep 24, 2014
-
-
Cédric Snauwaert authored
Modified product ceiling() to use float_round() with special mode for rounding UP (away from zero), avoiding pathological cases where float representations errors were ceiling to the superior unit. Also added correspding tests for rounding_method=UP Fixes issue #1125, and replaces PR #1126.
-
- Sep 17, 2014
-
-
Olivier Dony authored
If the server was started without -i or -u and happened to initialize a fresh database, auto-installed modules that depend on `base` only would stay in status "to install" without actually being installed (until the next installation round was triggered). This was of little consequence in 7.0, but causes a crash in 8.0. Fixes #953
-
Denis Ledoux authored
[FIX] orm write: do not try to store computed & stored fields for relational records deleted by *2many fields opw-613772
-
- Sep 15, 2014
-
-
Martin Trigaux authored
During the update of a module, the existing foreign keys are dropped if they have a different ondelete_rule than the one specified on the field. The foreign keys for many2one transiant -> non-transiant are created with cascade rule by default (see `m2o_add_foreign_key_checked` method) so the check needs to be realised in the same conditions.
-
Denis Ledoux authored
-
- Sep 10, 2014
-
-
Martin Trigaux authored
When sending an email, both formats 'Name <email>' or '"Name" <email>' can be used for fields 'From', 'To' and others. If the name contains unicode characters, a regex only matching '"Name" <email>' was used to encode the name with RFC2047. That meant that the name was not encoded and eventually dropped, using only the email part. Instead of using a limited regex, use the parseaddr method from email library. Fixes lp:1272610, opw 607683
-
Denis Ledoux authored
-
- Sep 09, 2014
-
-
Denis Ledoux authored
-
- Sep 08, 2014
-
-
Denis Ledoux authored
if the model of an attachement no longer exists (the according module have been uninstalled, for instance), ignore the security check
-
- Sep 05, 2014
-
-
Denis Ledoux authored
Backport of 8.0 fix was not enough for 7.0, because it still fails for the legacy reference match (model+res_id), which is not used in 8.0
-
- Aug 28, 2014
-
-
Christophe Simonis authored
-
- Aug 27, 2014
-
-
Leonardo Donelli authored
Fixes #811
-
- Aug 26, 2014
-
-
Denis Ledoux authored
-
Denis Ledoux authored
-
Denis Ledoux authored
without having the rights to read ir.config_parameter
-
Denis Ledoux authored
-
- Aug 21, 2014
-
-
Martin Trigaux authored
When a new ir.model.field is created, add the new field in the fields_by_model (cache of custom fields). This is required as the __init__ method would not retrieve the new field if fields_by_model is already set. Otherwise, the _columns would not contain the new fields and we could not access it without restarting the server (e.g. the installation of a module adds ir.model.fields and use it in the a view.
-
Binjal Desai authored
-
Martin Trigaux authored
Comparing an id and a browse record will always fail so the exception would have always been raised when changing a model (e.g. updating a module with custom fields).
-