Skip to content
Snippets Groups Projects
  1. Dec 04, 2014
  2. Nov 28, 2014
  3. Nov 27, 2014
    • Sandy Carter's avatar
      [FIX] base: avoid having 'False' in name of a bank · 043f7b84
      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
      043f7b84
  4. Nov 05, 2014
  5. Nov 04, 2014
  6. Oct 24, 2014
  7. Oct 22, 2014
    • Cédric Snauwaert's avatar
      [FIX] product: remove digits_precision from uom factor fields · fa2f7b86
      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.
      fa2f7b86
    • Martin Trigaux's avatar
      [FIX] base: support float rounding with rounding_method=UP (ceiling) · 7705f883
      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.
      7705f883
  8. Oct 21, 2014
    • Martin Trigaux's avatar
      [FIX] report: page numbering rml reports · 354b82be
      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
      354b82be
  9. Oct 20, 2014
  10. Oct 10, 2014
    • Olivier Dony's avatar
      [FIX] ir.mail.server: restore parsing of multiple RFC2822 addresses including non-ASCII chars · 1b49a876
      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
      1b49a876
  11. Oct 09, 2014
    • Denis Ledoux's avatar
    • Martin Trigaux's avatar
      [IMP] mail: parsing emails with several html parts · bd522980
      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"
      bd522980
  12. Oct 03, 2014
  13. Oct 02, 2014
  14. Sep 29, 2014
  15. Sep 26, 2014
    • Denis Ledoux's avatar
      Revert "[FIX] product,float_utils: perform ceiling via float_round with new rounding_method UP" · 333852e1
      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
      333852e1
    • Denis Ledoux's avatar
      [FIX] cron: doall false by default · af37b302
      Denis Ledoux authored
      As in most cases, we do not want this doall
      af37b302
  16. Sep 25, 2014
  17. Sep 24, 2014
  18. Sep 17, 2014
  19. Sep 15, 2014
  20. Sep 10, 2014
  21. Sep 09, 2014
  22. Sep 08, 2014
  23. Sep 05, 2014
  24. Aug 28, 2014
  25. Aug 27, 2014
  26. Aug 26, 2014
  27. Aug 21, 2014
    • Martin Trigaux's avatar
      [FIX] ir_model: invalidate cache when adding new fields · 0ab88f54
      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.
      0ab88f54
    • Binjal Desai's avatar
      [FIX] note: small bugs · 8fe9f07c
      Binjal Desai authored
      8fe9f07c
    • Martin Trigaux's avatar
      [FIX] base: wrong model change check · 768b3592
      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).
      768b3592
Loading