Skip to content
Snippets Groups Projects
  1. Jun 14, 2016
    • Goffin Simon's avatar
      [FIX] website_sale: price_tax and amount_tax in confirmation page · ff1845bf
      Goffin Simon authored
      All the information about the taxes must be displayed in the  confirmation page.
      
      opw:679316
      ff1845bf
    • Patrik Lermon's avatar
      [FIX] base: position of SEK currency after amount · 01a81b97
      Patrik Lermon authored
      Source: http://lh.2xlibre.net/locale/sv_SE/ (p_cs_precedes)
      
      Closes #12414, related to #12350
      01a81b97
    • Richard Mathot's avatar
      [FIX] account_voucher: allow the web client to catch the warning instead of... · 54cf8d0c
      Richard Mathot authored
      [FIX] account_voucher: allow the web client to catch the warning instead of returning the whole traceback
      
      Actually, it was a Python ``Warning`` exception that was returned, and
      not an ``openerp.exceptions.Warning``, that is an alias of ``openerp.exceptions.UserError``.
      54cf8d0c
    • Martin Trigaux's avatar
      [FIX] web: close popup after backup · 0ec664d1
      Martin Trigaux authored
      All actions of the database manager redirect the user after an action except the
      backup option which returns an octet stream.
      Close the modal after form submission to mimic the same behaviour.
      
      Do not close the modal for other actions than database manager to avoid waiting
      time for create that may be long to process.
      
      Add message to warn the user about backup waiting time after cliking on submit
      to be less confusing for big databases that may take a lot of time to be ready.
      
      Fixes #10803
      0ec664d1
    • Nicolas Martinelli's avatar
      [FIX] web: new record on editable list · e0c4ec54
      Nicolas Martinelli authored
      On an editable list view, an issue occurs with the following procedure:
      - Click "Add an item", write something
      - Press "Enter" key --> a new item is added, write something
      - Click outside of the list, then click on the last item created
      - Press "Enter" key --> the cursor is set at the beginning of the list
      
      This is an issue for two reasons. First, the behavior is not the same if
      we have clicked outside of the list before pressing "Enter", which is
      not logical. Then, in some undetermined cases, the focus can be lost
      then retrieved on the last record. It means that suddenly, the cursor
      goes back at the beginning of the list without notice.
      
      The latter issue is problematic when batch-encoding data, for example
      encoding the lot numbers of incoming products thanks to a scanner.
      
      opw-680758
      e0c4ec54
    • Olivier Dony's avatar
      [FIX] base_import: handle other cases of wrong CVS mime types · 285deb9a
      Olivier Dony authored
      Improves 8049d1e8 for other detected
      cases, e.g. on Firefox + OSX.
      
      opw-680347
      285deb9a
    • Denis Ledoux's avatar
      [FIX] account_voucher: `get_product_accounts` expects a browse record · 811771d3
      Denis Ledoux authored
      The method `get_products_accounts` obviously requires
      a fiscal position browse record for its `fiscal_pos` parameter:
      
      ```
          @api.multi
          def get_product_accounts(self, fiscal_pos=None):
              accounts = self._get_product_accounts()
              if not fiscal_pos:
                  fiscal_pos = self.env['account.fiscal.position']
              return fiscal_pos.map_accounts(accounts)
      ```
      
      But the method `product_id_change` called it with a fiscal
      position id, through its own class method `_get_account`
      
      This probably happened during the merge at revision
      75d7bbb4
      
      which has not been correctly rebased on the acounting 9.0
      revision
      c04065ab
      
      opw-678735
      811771d3
    • Damien Bouvy's avatar
      [FIX] website_payment: fetch default provider + render issue · 87717509
      Damien Bouvy authored
      * Fixes a bug that prevented the system to fetch the default provider
      because the default_get call was wrong (wrong model + missing
      company_id kwarg)
      * Displays the amount as a monetary widget (to do that, the amount
      must be sent as a float in the controller)
      * Display the acquirer 'pre_msg' field to display eventual fees
      87717509
  2. Jun 13, 2016
    • Olivier Dony's avatar
      [FIX] payment: render acquirer form values even if partner is missing · 0f5f960c
      Olivier Dony authored
      When no `partner_id` was passed to `render()` and the acquirer
      had a fees computation method, (e.g. Paypal), it would crash.
      Could happen when coming through the /website_payment/pay
      controller, for instance.
      0f5f960c
    • Denis Ledoux's avatar
      [FIX] account: invoice reset to draft when the default report is removed · c95e46ee
      Denis Ledoux authored
      When the report `account.report_invoice` was being deleted,
      it was no longer possible to reset an invoice to draft.
      
      This is related to revision
      291561a1
      c95e46ee
    • Denis Ledoux's avatar
      [FIX] link_tracker: page title encoding · 2d47ea25
      Denis Ledoux authored
      When tracking a page with special characters
      in the title (e.g. `Ä`), the title
      of the page in the tracked links was
      badly encoded, because the
      encoding was not handled correctly
      when parsing the given website page.
      
      opw-679993
      2d47ea25
    • Denis Ledoux's avatar
      [FIX] account: multiple journal items to fix in full batch reconciling · 3b4560cf
      Denis Ledoux authored
      In a batch reconciliation of journal items,
      it could happen that multiple journal items
      in a foreign currency required the creation
      of an exchange entry
      `aml_to_balance_currency |= aml`
      
      But the statement `aml.matched_debit_ids[0] or aml.matched_credit_ids[0]`
      requires a single browse record (singleton) to work
      
      The partial  reconciliation is supposed to be the same for all
      the journal items to fix, we can therefore safely do
      `aml = aml_to_balance_currency[0]` to overcome this issue.
      
      In addition, in this condition, the full reconcile must be
      skipped to avoid passing multiple times in the `create_exchange_rate_entry`
      method (which is called in the method `create` of `account.partial.reconcile`
      
      This has been reviewed by qdp.
      
      opw-680044
      3b4560cf
    • Simon Leblanc's avatar
      [FIX] anonymization: default anonymization fields · ec005af5
      Simon Leblanc authored
      res_partner.name was twice : remove one
      res_users.name doesn't exist (now, it use the partner name) : remove
      remove training.* fields that do not exists
      
      Closes #11806
      ec005af5
    • Simon Leblanc's avatar
      [FIX] anonymization: allow anonymization on HTML fields · 45483b96
      Simon Leblanc authored
      Was missing in the (old) list of fields
      45483b96
    • Simon Leblanc's avatar
      [CLA] Sign CLA of leblanc-simon · 42aa79d6
      Simon Leblanc authored
      Done at #11806
      42aa79d6
    • Goffin Simon's avatar
      [FIX] account: deleting a default tax(ir.values) · 96621a34
      Goffin Simon authored
      When a chart of account is created, ir.values for the fields taxes_id
      and supplier_taxes_id in the model 'product.template' are created.
      But if one of this two taxes are deleted, there was a crash when
      creating a new product template because the default tax was missing.
      
      opw:680576
      96621a34
    • Goffin Simon's avatar
      [FIX] crm: force view_id in window action · 67a9ea20
      Goffin Simon authored
      When clicking on "Your Pipeline" in Sale app and clicking afterwards
      on an opportunity, the form view "crm.crm_case_form_view_oppor".
      But if you refreshed, the form view of a lead was used.
      
      opw:677962
      67a9ea20
    • Nicolas Martinelli's avatar
      [FIX] account: analytic line amount · 3389b5f2
      Nicolas Martinelli authored
      When an analytic account is added on an invoice line, the amount
      recorded on the analytic line can be wrong if the invoice is not in the
      company currency.
      
      The issue is that the debit/credit amount is converted from the company
      currency to the account move currency.
      
      opw-679947
      3389b5f2
  3. Jun 12, 2016
  4. Jun 11, 2016
  5. Jun 10, 2016
    • Simon Lejeune's avatar
      [FIX] packaging: debian: update-python-module is no more · efe37469
      Simon Lejeune authored
      The command is not installed by default. It was available in the
      python-support library which we didn't depend on and now this library
      is no more in debian jessie/ubuntu xenial.
      
      fixes #11785
      efe37469
    • Simon Lejeune's avatar
      [REF] ir_qweb: less webasset: compress output instead of minifying it · 123e51f4
      Simon Lejeune authored
      * Remove dependency on less-plugin-clean-css which distribution
        packages are broken on debian stretch and derivated.
      * Updated documentation.
      * Lessc provides a `--compress` argument that could solve this issue.
        According to the documentation at http://lesscss.org/usage/: "[...]
        Compress using less built-in compression. This does an okay job but
        does not utilise all the tricks of dedicated css compression[...]"
        However, using this argument works on lessc 2.5.3 but not on 1.4.2
        (`--compress` arg is present but seems to be break some rules
        i haven't been able to put my finger on).
      * Finally, use the minification of the StylesheetAsset that takes care
        of removing the spaces, the comments and the sourcemap with regexes.
      
      fixes issue #9113
      123e51f4
    • 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.
      b466a9ee
    • Marius Vaišvila's avatar
      [CLA] signature for MariusVaisvila · 1412a73d
      Marius Vaišvila authored
      Closes #12131
      1412a73d
    • 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
      deb439fe
    • Dhinesh D's avatar
      [CLA] Signature for Dhinesh D · 65308e74
      Dhinesh D authored
      Closes #12370
      65308e74
    • 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
  6. 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
  7. Jun 08, 2016
Loading