Skip to content
Snippets Groups Projects
  1. Mar 21, 2017
  2. Mar 20, 2017
    • Goffin Simon's avatar
      [FIX] product: get_names with empty record set · 34853563
      Goffin Simon authored
      Steps to reproduce:
      
      -Go to accounting dashboard
      -Click on "More" in vendor bills dashboard
      -Click on "bills analysis"
      
      Bug: it opened the account.invoice.report view, which crashed.
      
      Reason: The function get_names in addons/product/models/product.py got an empty record set
      product.category(None,) and returned [False] so when joining " \ " with [False], it crashed.
      The empty record set was returned  when the categ_id of an account.invoice.report() was None.
      
      opw:724783
      34853563
  3. Mar 18, 2017
  4. Mar 17, 2017
    • Christophe Simonis's avatar
      b2fa9f2a
    • Christophe Simonis's avatar
    • Christophe Simonis's avatar
      aefdf96c
    • Martin Trigaux's avatar
      wow · 2c1257fe
      Martin Trigaux authored
      Unverified
      2c1257fe
    • Martin Trigaux's avatar
      [FIX] crm: remove unused field from fields to merge · 13bfc8ee
      Martin Trigaux authored
      The field email is no longer present on the crm.lead object
      
      opw-725112
      Unverified
      13bfc8ee
    • qsm-odoo's avatar
      [FIX] web_editor: copy/paste in the editor · 74018075
      qsm-odoo authored
      Commit 906875fc (followed by commit
      76be5eed) tried to tweak to copy/paste
      functionality of the editor.
      Indeed, in PDF file, when copying a paragraph, a line feed is added at
      each forced line break (page width end). This forced a line feed and
      a new paragraph in the pasted text. The goal was to get rid of those
      useless linebreaks when pasting.
      
      The ideal solution would be to detect that the text was copied from
      a PDF but it is not possible. However, this commit improves the
      heuristic: if this is not plain text, then nothing is done, the content
      is pasted normally. If it is plain text (like when copying from pdf),
      then each line break which is surrounded by letters or numbers is
      considered an useless line break and replaced by a space. This is
      obviously not perfect but the previous implementation was really wrong
      (it was removing line breaks which were not preceeded by punctuation in
      all cases, which was removing lots of useful line breaks).
      
      Note: this commit also fixes a bug -> text was not able to be pasted
      with Internet Explorer.
      
      opw-715920
      74018075
    • Martin Geubelle's avatar
      [FIX] web_kanban: only give fields in view to record · 22e7b6be
      Martin Geubelle authored
      This commit partially reverts 5b4f7c13 where `fields_view.fields`
      had been replaced by `fields`, which could have been set to all
      fields in the model.
      
      This modification can sometimes lead to a problem, during the
      fields value transformation. The ID, which wasn't given previously
      is now parsed. When creating a new record, the field ID is not an
      integer but a string (representing the virtual ID). If the field
      is in the arch, it will be postprocessed
      (see https://github.com/odoo/odoo/blob/saas-11/addons/web/static/src/js/framework/data_manager.js#L201)
      and its type will become `id`. As this postprocessing is not done
      if the field in the view, the parsing was on the original type
      (integer) and not the special id type.
      22e7b6be
    • Nicolas Martinelli's avatar
      [FIX] base: no-break hyphen · af64780a
      Nicolas Martinelli authored
      - Create an invoice with two products
      - Each line has a long description (spread on 2 lines)
      - The second line has a negative value
      - Print the invoice (PDF)
      
      The amount spreads on two lines, split as:
      $ -
      1,000.00
      
      This is due to the wkhtmltopdf version with patched QT. Unfortunately,
      upgrading to the latest version 0.12.4 doesn't solve the problem.
      
      The solution is to replace the '-' by a non-breakable hyphen.
      
      opw-711002
      af64780a
    • Nicolas Lempereur's avatar
      [FIX] web_editor: glitch english several times · 508a002e
      Nicolas Lempereur authored
      When using the iframed editor with multilang selector (present if there
      is another lang installed than en_US) an "English" language was present
      before each translation language.
      
      opw-696891
      508a002e
  5. Mar 16, 2017
    • Nicolas Lempereur's avatar
      [FIX] web_calendar: events not appearing in arabic · fb05d884
      Nicolas Lempereur authored
      Fullcalendar expect as `start` and `end` property of an event object:
      
      > When specifying Event Objects for events or eventSources, you may
      > specify a string in IETF format (ex: "Wed, 18 Oct 2009 13:00:00 EST"),
      > a string in ISO8601 format (ex: "2009-11-05T13:15:30Z") or a UNIX
      > timestamp.
      
      (as seen in https://fullcalendar.io/docs1/event_data/Event_Object/)
      
      Before this commit we could for example in arabic provide an invalid
      date string "٢٠١٧-٠٣-١٦ ١٦:٠٠:٠٦" instead of "2017-03-16 16:00:06".
      
      This commit solves this by always providing fullcalendar an ISO8601 date
      string.
      
      opw-705752
      fb05d884
    • Nicolas Lempereur's avatar
      [FIX] web_editor: handle margin:initial correctly · f50ba68b
      Nicolas Lempereur authored
      The transcoder (which transforms stylesheet rules to inline style) did
      some compression of the padding and margin css properties to not always
      have margin-top + margin-right + margin-bottom + margin-left.
      
      This could cause an issue when the value of margin or padding contained
      an initial or inherit value because browsers (at least firefox and
      google chrome) doesn't allow it. Thus the preview could for example have
      bigger veritcal spaces arround `<p />` tag than what was seen when
      editing.
      
      With this fix instead of invalid:
      
          margin:initial initial initial initial
      
      we have:
      
          margin:initial
      
      And instead of invalid:
      
          margin:initial 5px 6px 7px
      
      we have:
      
          margin-top: initial; margin-right: 5px; margin-bottom: 6px; margin-left: 7px;
      
      opw-706535
      f50ba68b
    • Simon Lejeune's avatar
      [FIX] stock: inventory adjustment and negative quants · be9dce62
      Simon Lejeune authored
      It is still possible to have negative and positive quants in the same
      location because of returns: if you send something to the customer that
      is not there and you return it, you will still be able to reserve the
      returned goods to send to another client.
      
      Before, if you would do an inventory adjustment, it would not take into
      account these returned quants and their negative counterpart, which made
      them difficult to get out of the system.
      
      This fix takes them into account by creating two movements for one
      inventory line: move the positive counterpart to the inventory location
      before getting back from this location the same quantity.
      
      This way, even if you have 0 as quantity on hand but you have those 2
      quants, it will eliminate them. (if you are increasing the stock, part
      of the process might have done it automatically already).
      
      Test cases contributed by @jir-odoo
      be9dce62
    • Christophe Simonis's avatar
      5f9d382e
    • Nicolas Martinelli's avatar
      [FIX] mrp_repair: tax included · 0590af8b
      Nicolas Martinelli authored
      - Create a product with price tax included
      - Create Repair order
      - Add the product in tabs "Operation" or "Invoicing"
      
      The tax is added twice in the total.
      
      opw-709608
      0590af8b
    • Nicolas Martinelli's avatar
      [FIX] sale_stock: duplicate qty · e542b450
      Nicolas Martinelli authored
      - Create a stockable product, create a SO selling 1 unit.
      - Confirm the SO, validate the Picking 1 => delivered qty is 1
      - Return Picking 1 and validate Picking 2 => delivered qty is 1
      - Return Picking 2 and validate Picking 3 => delivered qty is 2
      
      The delivered quantity should remain 1.
      
      opw-715685
      e542b450
    • Nicolas Lempereur's avatar
      [FIX] expression: improve o2m with m2o integer · cc1c1532
      Nicolas Lempereur authored
      We sometimes use in Odoo a One2many field with an inverse Integer
      field instead of a usual Many2one.
      
      This allow for example in several instances to have a "Many2one" which
      can be reference from several models, eg:
      
      Model Ranking:
      	name = String field
      	res_id = Integer field
      	res_model = String field
      
      Model Toy:
      	rank = One2many [inverse: Ranking -> res_id]
                              [domain: res_model == Toy]
      
      Model Tool:
      	rank = One2many [inverse: Ranking -> res_id]
                              [domain: res_model == Tool]
      
      This enable us to have a shared feature between otherwise unrelated models.
      
      But there was several issue when searching on these One2many:
      
      1) if the Integer Many2one was not stored (eg. it came from an inherits) on
         the searched model, this could lead to an error.
      
      2) when we searched:
      
         - by IDs (rank in ['55']) with at least one id not respecting the domain
         - by IDs with a negative operator
         - with a negative operator on unfound string (rank != "no rank has this")
         - with a false value (rank = False)
      
         we would not apply the One2many domain (eg. res_model == Toy) and thus
         possibly getting Toy 3 errenously because a Tool 3 was found without
         the domain being applied.
      
      This fix modify the search on One2many and for:
      
      1. if the inverse is an Integer not stored field instead of Many2one
         manage it.
      
      2. if the field is an Integer field instead of Many2one and there is a
         domain on the One2many: apply the domain on the inverse model found.
      
      So only some search on One2many with a domain whose inverse field is an
      Integer could be impacted.
      
      This would also be nice to have for all One2many with a domain but the
      probability of it being useful versus risk for performance is not judged
      high enough.
      
      opw-710508
      cc1c1532
    • Thibault Delavallée's avatar
      [FIX] mail: improve exception management when sending emails · cee15f7d
      Thibault Delavallée authored
      Commit 00bd7274 introduced speed improvements when
      sending emails through batching and reusing an SMTP connection for a
      given batch.
      
      However exception management was slightly changed during that patch.
      Previously to this patch all errors in the sending process were considered
      as MailDeliveryException, except for MemoryError and psycopg errors.
      However now mail_mail.send() may raise another kind of exception in the
      SMTP connect process. Moreover a raise_exception parameter allows to
      choose to either raise an exception, or just set emails in exception
      state without raising an error. However since the patch it is not taken
      into account correctly.
      
      This leads to several issues, notably
      
       * auth_signup waits for a MailDeliveryException when sending a password
         request email. A badly configured SMTP server leads to a connection
         error that is not caught. This prevents creating users, which could
         be annoying.
       * chatter does not handle exceptions as notification emails are sent
         using raise_exception being False. Having an issue in the connect
         process crashes the chatter.
      
      This commit fixes the exception management so that it behaves like
      before the patch.
      cee15f7d
  6. Mar 15, 2017
  7. Mar 14, 2017
    • Denis Vermylen's avatar
      [FIX] website_sale: extra step access rights · 328a5a7e
      Denis Vermylen authored
      Public users were stuck at the extra step during the checkout
      process if enabled due to not having the access rights to write on
      the sale.order.
      328a5a7e
    • Pierre Masereel's avatar
      [FIX] stock: warehouse check_reception_resupply · 94567917
      Pierre Masereel authored
      When we are trying to change the reception route of a warehouse when
      there are existing resupply routes, we are getting a traceback.
      
      This bug comes from a migration error introduced in rev: https://github.com/odoo-dev/odoo/commit/70e1d5d5bc1a3cb325dbcb091fc2135e23084145
      94567917
    • Nicolas Martinelli's avatar
      [FIX] mass_mailing: link in kanban · a873890f
      Nicolas Martinelli authored
      - Go to Mass Mailing > Configuration > Mail Templates
      - In the Kanban view, find a template which contains a link (http,
        mailto, whatever)
      - Click on the link
      
      You are redirected to the link instead of being redirected to the
      record.
      
      opw-706047
      a873890f
    • Martin Trigaux's avatar
      [FIX] stock: do not write on picking type · 8adc2ef4
      Martin Trigaux authored
      When creating a stock.picking, the related fields picking_type_entire_packs and
      picking_type_code were both updated.
      This was an issue was required write access on stock.picking.type (warehouse
      manager) to create a stock.picking (warehouse user).
      
      The fields were updated as they were present in the view and filled with the
      related value. Even if the value was unchanged, it was triggering a write
      anyway.
      
      The two fields were in invisible="1" and used only in attrs for other fields.
      
      Making these two fields in readonly does not prevent to use it in the attrs but
      avoid to send a value to the server and trigger a useless write.
      
      Fixes #15769
      Unverified
      8adc2ef4
    • qsm-odoo's avatar
      [FIX] web: force red color for invalid form elements · d32e275a
      qsm-odoo authored
      When an input is saved with an invalid value, it gets the
      `o_form_invalid` class. This makes the border red. In enterprise, there
      was a bug as required inputs have also a different border color and the
      rule was more important. Unfortunately there is no avoiding
      the !important rule here. Indeed, other solutions would require to make
      more rules in enterprise or to change the order of files (which would
      create many problems).
      d32e275a
    • Martin Geubelle's avatar
      [FIX] web_kanban: many2many tag style · 3feb1a82
      Martin Geubelle authored
      Setting a max-height on the tags section is not a good idea ; this
      causes the tags to overlap the record.
      
      If something (like a text) is put in the section instead of the
      tags, the height is not correctly adapted.
      3feb1a82
    • Martin Geubelle's avatar
      [FIX] web_kanban: use string when group by selection · 5b4f7c13
      Martin Geubelle authored
      In the kanban view, if we try to group by a selection field that is
      not defined in the arch, the key will be used as column name (instead
      of the string).
      
      A fix has already been pushed to load all the fields in this case
      (see 0e6eb968) but these fields were not correctly used in this
      particular case.
      5b4f7c13
    • Nicolas Martinelli's avatar
      [FIX] account: cancel reconciliation traceback · 65814e26
      Nicolas Martinelli authored
      Since commit ee2c76a4, `journal_entry_ids` is an `account.move.line`,
      not an `account.move` anymore.
      
      opw-724421
      65814e26
    • Moises Lopez's avatar
      [FIX] base: avoid variable referenced before assignment error · 93bb6f32
      Moises Lopez authored
      If the company currency is not active (that should not happen but nothing
      prevents it, probably happening with some CoA installation), the variable
      company_currency_format is undefined and an error is raised.
      
      Closes #15799
      Unverified
      93bb6f32
  8. Mar 13, 2017
Loading