Skip to content
Snippets Groups Projects
  1. Jun 10, 2016
    • Xavier Morel's avatar
      [FIX] report: Backport of 6d73087d to 9.0 · b466a9ee
      Xavier Morel authored
      Closes #12131
      [FIX] report: don't hide errors in custom reports
      
      If a custom report's render_html raises a KeyError for some
      reason, Report.get_html would swallow the exception and fallback
      on generic HTML rendering, usually blowing up with unfathomable
      errors of missing rendering context data.
      
      Check if a custom report object exists instead of waiting for a
      KeyError.
      Unverified
      b466a9ee
    • Olivier Dony's avatar
    • Dhinesh D's avatar
      [FIX] stock_calendar: missing parameter in write · deb439fe
      Dhinesh D authored
      Surprisingly it doesn't work to write without ids
      Closes #12369
      Unverified
      deb439fe
    • Joren Van Onder's avatar
      [FIX] point_of_sale: ensure that there is always an order creation_date · 298fc213
      Joren Van Onder authored
      Introduced by e9b1254a. This commit made
      sense but there are certain POS modules that send the order to the
      backend before validation and thus depend on there always being a
      creation date, even if the order has not been validated yet.
      
      This ensures that we don't end up with an undefined creation_date in the
      backend.
      
      opw-680590
      298fc213
    • Simon Lejeune's avatar
      [FIX] report: thread-safe barcode generation · 02484f89
      Simon Lejeune authored
      A lock occurs when the user wants to print a report having multiple barcode while the server is
      started in threaded-mode. The reason is that reportlab has to build a cache of the T1 fonts
      before rendering a barcode (done in a C extension) and this part is not thread safe. We attempt
      here to init the T1 fonts cache at the start-up of Odoo so that rendering of barcode in multiple
      thread does not lock the server.
      
      Another workaround was to set an explicit lock around the reportlab's function call, but it's
      more dangerous as it may introduce undetectable lock between python and postgresql.
      
      Thanks to @odony and @KangOl.
      
      Fixes #12236
      02484f89
  2. Jun 09, 2016
    • Denis Ledoux's avatar
      [FIX] project: project duplicate message followers · d6e93d06
      Denis Ledoux authored
      This is related to revision
      c8aac116
      
      `message_follower_ids` is a one2many field
      on the thread. To copy them, you must
      create new `mail.followers` records, and not
      linking the followers of the project
      being duplicated to the duplicated project.
      d6e93d06
    • Denis Ledoux's avatar
      [FIX] report, account: invoice reset to draft attachments · 291561a1
      Denis Ledoux authored
      When cancelling and resetting to draft an invoice,
      delete only the invoice report attachment from the
      attachment, not all of them.
      
      The reason why the report is removed from the
      attachments on the invoice resetted to draft
      is explained in
      db0def38
      
      opw-680295
      291561a1
    • Denis Ledoux's avatar
      [FIX] project: duplicate project must copy followers · c8aac116
      Denis Ledoux authored
      Since duplicating a project copies the project
      tasks, with the followers, the project followers must
      remain as well.
      
      This is done in the already overriden method
      `copy` instead of simply adding `copy=True`
      on the according one2many field, since this field
      is defined on the inherited model
      `mail.thread`, and to add `copy=True`, in the old api,
      we would have to re-define the `message_follower_ids`
      field within the `project.project`
      model completely, making sure to copy all properties
      
      opw-680313
      c8aac116
    • Nicolas Martinelli's avatar
      [FIX] base_import: file type on Windows · 8049d1e8
      Nicolas Martinelli authored
      When a user imports a CSV file on Windows, the "CSV Format Options…"
      field does not appear. This is an issue since it might be necessary to
      tune these options depending on the file, e.g. change the encoding.
      
      For some unknown reason, on Windows, the file type is empty whatever the
      browser used. Therefore, we fall back on the extension of the file.
      
      opw-680347
      8049d1e8
    • Goffin Simon's avatar
      [FIX] delivery, stock: carrier_id field in incoming stock picking · a46f3616
      Goffin Simon authored
      The field "carrier_id" must be hidden for the incoming stock picking.
      
      In stock picking view form,
      for an incoming stock picking, the Destination Location Zone must be hidden
      for an outgoing stock picking, the Source Location Zone must be hidden
      Introduced by 2cb3a90c
      
      opw:676411
      a46f3616
    • Jeremy Kersten's avatar
      [FIX] mail: display date and datetime in tracking value with the right timzeone. · 6f223edf
      Jeremy Kersten authored
      When tracking value is converted to be rendered as a message_post, we convert
      the date/datetime with the current local from momentjs.
      
      Related to #12327
      
      Courtesy of @aab-odoo for help and review.
      6f223edf
    • Quentin De Paoli's avatar
    • Nicolas Martinelli's avatar
      [FIX] account: duplicate journal entry · af2c69f0
      Nicolas Martinelli authored
      When a journal entry includes taxes, it is impossible to duplicate it
      because of an unbalanced entry error.
      Indeed, by default the taxes are computed at the creation of the account
      move lines, leading to the creation of a new tax line, therefore
      unbalancing the account move.
      
      Fixes #11919
      opw-676788
      af2c69f0
  3. Jun 08, 2016
  4. Jun 07, 2016
    • Nicolas Lempereur's avatar
      [FIX] stock: reordering_{min,max}_qty &several ids · 5ea4937e
      Nicolas Lempereur authored
      dict.fromkeys doesn't duplicate the passed 'values', hence the code
      created a table with several times the same instance of values dict.
      
      opw-679203
      5ea4937e
    • Jos De Graeve's avatar
      [FIX] sale_timesheet: set wrong code on analytic line · 2098b703
      Jos De Graeve authored
      The product_id is the one of the timesheet line, not the one of the order (which
      actually is the one of the first line).
      Closes #12013
      Unverified
      2098b703
    • Denis Ledoux's avatar
      [FIX] web: prevent search dropdowns to close on click inside · 4601b044
      Denis Ledoux authored
      In the Filters, Group By and Favorites dropdowns,
      when clicking outside the `li` elements but still
      inside the dropdown menu itself
      (like on the dividers,
      or next to the advanced search `Apply` button),
      the dropdowns was closed.
      
      This behavior was annoying when doing an advanced search
      with a field using the datetime picker, as, to close the datetime
      picker, you have to click outside it, and when you did, it closed
      automatically the filter dropdown... So you had to open it again to
      finally apply the filter.
      
      opw-674310
      4601b044
    • Olivier Dony's avatar
      [FIX] website_{quote,sale}: payment tx handling consistency · af470098
      Olivier Dony authored
      Both website_sale and website_quote have logic to independently
      confirm sales orders when a successful payment transaction is
      processed.
      Rev 46c5f93b introduced an extra
      check and logging for transactions with mismatching amounts in
      website_sale, but the same change was not done in website_quote.
      
      Consequently, when both modules were installed, the tx mismatch
      check was bypassed by website_quote, and a spurious logging message
      was emitted by website_sale if the website_quote logic had executed
      first.
      
      This patch makes tx handling consistent in both modules, and avoids
      the misleading log message when both modules are installed.
      Unverified
      af470098
    • Christophe Simonis's avatar
      [FIX] web,auth_signup: prevent login autocapitalization · 7889d7e0
      Christophe Simonis authored
      Mobile virtual keyboards will often capitalize the first letter of
      an input text field, which is annoying as odoo logins are case-sensitive.
      This will no longer happen thanks to this new attribute.
      
      X-port of commit odoo/enterprise@b8632f8bb62c5507c67bf30ca184f06b3ddd1cb3
      7889d7e0
    • Nicolas Martinelli's avatar
      [FIX] product: pricelist based on supplier price · 7613cb36
      Nicolas Martinelli authored
      In the case of a purchase pricelist based on the supplier price, the
      price selected is incorrect if the supplier is not in the list of
      suppliers of the product. Indeed, in this case, the price of the first
      supplier is chosen.
      
      We also need to make sure to go through all the pricelist items found.
      
      opw-678440
      7613cb36
    • Jeremy Kersten's avatar
      [FIX] web_calendar: use local format for week in title of calendar view. · 2179f53a
      Jeremy Kersten authored
      Commit odoo/odoo@9be7a9535ca1c5a9884ef06b7a567bf42ebdce0a changes the week number
      computation to match calendar and pivot views.
      
      Now, calendar don't use isoWeek format by default, but the weekNumber from locale(),
      So we need to adapt also the format for title.
      
      closes #12068, closes #9629
      2179f53a
    • Nicolas Martinelli's avatar
      [FIX] account_analytic_analysis: fpos of invoices · 6140300d
      Nicolas Martinelli authored
      When an invoice is created automatically thanks to the cron task, the
      superuser is used. However, this implies that the company of the
      superuser will be used for the account invoice creation, leading to
      potentially incorrect taxes and fiscal positions.
      
      opw-669714
      6140300d
    • Martin Trigaux's avatar
      [FIX] hr_evaluation: badly rendered form · ff3a0b12
      Martin Trigaux authored
      The date was positioned inside the h1 and was badly rendered (field too small)
      Fixes #2476
      Unverified
      ff3a0b12
    • Xavier Morel's avatar
      [IMP] delivery: allow to set delivery price from XML-RPC call · ef1fb844
      Xavier Morel authored
      (a method that returns nothing is not callable through XML-RPC)
      
      Backport of dc043cf1 to 9.0
      
      Fixes #12289 and tinyerp/erppeek#87
      ef1fb844
  5. Jun 06, 2016
    • Denis Ledoux's avatar
      [FIX] purchase: exclude cancelled invoice for billed qty · 1d1debf6
      Denis Ledoux authored
      The billed quantity field on the purchase order line
      must exclude the cancelled invoice, as a cancelled invoice
      is not considered as invoiced.
      
      `draft` could be considered as well, but we do not
      take the chance now, as this field is used
      when creating a new invoice, to determine the
      quantity to invoice. Therefore, if there are
      draft invoices with some quantities invoiced,
      it can make sense to reduce the quantity
      in this new invoice. Nevertheless, it must not be the case
      for cancelled invoices.
      
      opw-679363
      1d1debf6
    • Denis Ledoux's avatar
      [FIX] account: Invoices & Refunds filters together · fc8d96d2
      Denis Ledoux authored
      When both selected, these filters are expected
      to display Invoices - OR - Refunds.
      
      It was not the case, because the web client
      expects to receive the domains normalized
      when concatenating domains together with a
      `|` statement.
      
      Selecting both filters resulted in the below domain:
      
      ```
      [
          '|',
          ('state','in',['open','paid']),
          ('type','in',('out_invoice','in_invoice'))`,
          ('state','in',['open','paid']),
          ('type','in',('out_refund','in_refund')),
      ]
      ```
      Instead of
      ```
      [
          '|',
          '&', ('state','in',['open','paid']), ('type','in',('out_invoice','in_invoice'))`,
          '&', ('state','in',['open','paid']), ('type','in',('out_refund','in_refund')),
      ]
      ```
      
      opw-679246
      fc8d96d2
    • Goffin Simon's avatar
      [FIX] website_event: endDate appeared twice in event_details · 19dcd7c3
      Goffin Simon authored
      endDate appeared twice in event_details
      
      opw:678823
      19dcd7c3
    • Christophe Simonis's avatar
    • Goffin Simon's avatar
      [FIX] product_extended: bom_count field in product template view · cce3fce3
      Goffin Simon authored
      To apply this domain ('bom_count', '=', 0) in the product template view,
      the field bom_count must be in the view.
      
      opw:679095
      cce3fce3
    • Denis Ledoux's avatar
      [FIX] account: Exchange test failing on Jun 6 · b9a006c1
      Denis Ledoux authored
      The test `test_balanced_exchanges_gain_loss`
      failed on Jun 6, because it created a specific rate
      for today's date at midnight
      (e.g. on Jun 6, 201x-06-06 00:00:00) for the test purpose,
      but a rate is created in the demo data for Jun 6 midnight exactly:
      `base.rateUSDbis`, making the test confused about which rate
      to use.
      
      We solve this by making the test use the rate `base.rateUSDbis`,
      modifying the rate for its own need, instead of creating a new
      rate.
      b9a006c1
    • Jérome Maes's avatar
    • Goffin Simon's avatar
      [FIX] account_asset: compute_depreciation_board · bb6013f6
      Goffin Simon authored
      The last depreciation date must be take from the last posted depreciation
      line.
      
      opw:679212
      bb6013f6
  6. Jun 05, 2016
  7. Jun 03, 2016
Loading