Skip to content
Snippets Groups Projects
  1. May 29, 2017
  2. May 28, 2017
  3. May 26, 2017
  4. May 24, 2017
    • Nicolas Lempereur's avatar
      [FIX] account: children in Invoiced partner button · 64d44527
      Nicolas Lempereur authored
      When we are on a partner form view, we get the total invoiced containing
      the child contact of the current partner. But when clicking the button
      we only see the invoices of exactly the current partner.
      
      In most locations of the code this has changed (since 347c784d) and
      this part should also contain the descendants contacts.
      
      opw-744929
      closes #17188
      64d44527
    • Nicolas Lempereur's avatar
      [FIX] mail: can't open mail composer on virtual event · 026d25e9
      Nicolas Lempereur authored
      In the case of a chatter on a calendar virtual event, there was a number
      of issue because the record ID was of the type "[REAL ID]-[VIRTUAL ID]".
      
      This caused issue when fetching and posting message with the composer.
      
      opw-744405
      closes #17179
      026d25e9
    • Martin Trigaux's avatar
      [FIX] account: revert 6de2990f and proper fix · 126df41f
      Martin Trigaux authored
      Revert "[FIX] account: reset the move reference on bank statement"
      
      This reverts commit 6de2990f.
      
      The previous patch was removing the reference of the move.
      However, the reference is useful to reuse the name if the line is reconciled
      again.
      
      Instead, remove the constrain. To delete the move, account_cancel is already
      needed. It is useful to allow removing statement lines to match the statements
      form the bank and the one on Odoo.
      In the future, allowing to set the amounts to zero should be added as a way to
      correct the lines.
      
      opw-741205
      126df41f
    • Nicolas Martinelli's avatar
      [FIX] account: writeoff sign · 521edf90
      Nicolas Martinelli authored
      - Set-up multi-currency with the following rates:
        MXN: 1.0
        USD (2017-04-10): 0.052632
        USD (2017-04-27): 0.051680
      
      - Create an invoice of 1779.55 USD on 2017-04-10
      - Register a payment of 1779.48 USD on 2017-04-27
      - Set the invoice as fully paid
      
      It is impossible to validate the payment because of the following error:
      "The amount expressed in the secondary currency must be positive when
      account is debited and negative when account is credited."
      
      We make sure to align the writeoff amount sign with the writeoff amount
      sign in the company currency.
      
      opw-741520
      521edf90
  5. May 23, 2017
    • qsm-odoo's avatar
      [FIX] web_editor: properly match snippet options' DOM · 5331a87f
      qsm-odoo authored
      The snippet options are attached to `closest`, `all` and `is` functions
      to be able to find/check DOM they are associated to. Their behavior
      depend on the snippet option type: the search in the DOM is either done
      in the body, the editable parts, the editable children only, ....
      
      The problem is that when searching from a given DOM element, jQuery
      won't match the elements whose selector contains this given DOM element.
      Or in code terms, jQuery find function behavior is:
      `$('A').find('A B')` <=> `$('A A B')` (not `$('A B')`)
      
      This was indeed a problem on the job position apply form pages where the
      main editable element is the <form/> element itself. Indeed, the snippet
      options' selectors which began by 'form' were not able to match. Worse,
      the selector is used for a jQuery search for drag & drop and saving but
      not for initialization (where it is used as a `is` check on clicked
      elements). So, some DOM were able to be modified by options but not
      properly (re)configured before saving.
      
      opw-705902
      opw-741305
      5331a87f
    • Martin Trigaux's avatar
      [FIX] stock: display variant fields on variant form · 92be0df4
      Martin Trigaux authored
      The structure of the product.{product,template} form is the following:
      
      product.product_template_form_view* (both)
      |-- product.product_template_only_form_view* (template)
      |   \-- stock.product_template_form_view_procurement_button
      |
      |-- product.product_normal_form_view* (product)
      |   \-- stock.product_form_view_procurement_button
      |
      \-- stock.view_template_property_form (both)
      
      Previous view was adding weight, volume fields on both view with a attrs that
      applies only to the product.template (display only if no template).
      
      This means that the weight was not displayed on product.product form if opened
      from a Many2one (using the default product.product view) while the attrs should
      not hide it.
      
      Closes #16541
      Fixes #16428
      92be0df4
    • Martin Trigaux's avatar
      [FIX] base: include installed module in inheriting views retrival · fc2daaea
      Martin Trigaux authored
      In a scenario with the following views:
      
      Mod A, view 1*
      |-- Mod B, view 2
      \-- Mod B, view 3*
      
      view 3 can not rely on the elements added by view 2 in xpath
      If view 3 is a primary view, view 1 must be fully resolved first (apply view 2)
      before resolving view 3.
      
      Next commit describes a real use-case with product.
      
      Linked to #16541 and #16428
      fc2daaea
    • Nicolas Martinelli's avatar
      [FIX] membership: invoice tree view · 385de391
      Nicolas Martinelli authored
      When a membership is created, a redirection is done to the tree view of
      the vendor bills. It should be the tree view of the customer invoices.
      
      opw-743241
      385de391
    • Jesús Alan Ramos Rodríguez's avatar
      c99b48d1
    • Gabriela Mogollón's avatar
      [CLA] update Vauxoo's CLA · 395c08fd
      Gabriela Mogollón authored
      add gavymg
      
      Done at #17148
      395c08fd
  6. May 22, 2017
    • Christophe Matthieu's avatar
      [FIX] website: The default language does not use the configuration · 174d7e8e
      Christophe Matthieu authored
      The request language must be a fallback if the current website does not
      have a default language
      174d7e8e
    • Nicolas Lempereur's avatar
      [FIX] web_editor: inline space in source code · 57f7c681
      Nicolas Lempereur authored
      The prettifying of html when editing sources (user need to be in debug
      mode to see the button) was removing too much spaces in some instances.
      
      For example if someone got in a case such as:
      
        <span>hello<b> cruel </b>world!</span>
      
      The spaces between text and tag would be removed (this would work fine
      with the space outside of the tag).
      
      This code add a special case so this doesn't happen anymore.
      
      opw-743565
      closes #17142
      57f7c681
    • Martin Trigaux's avatar
      [I18N] payment: correctly format pot · ea4d2935
      Martin Trigaux authored
      Introduced at c80a32f9
      ea4d2935
    • Jeremy Kersten's avatar
      [FIX] website_sale: add support for decimal_precision = 0 · 87d12bb2
      Jeremy Kersten authored
      Before this commit data-precision='0' was ignored by qweb rendering.
      Now we force the data-precision to be set even if 0. (cast in str)
      And add a temporary fallback JS side to catch this case while people don't
      update the qweb template.
      
      This commit closes #17050 and closes #17046
      87d12bb2
    • Yenthe V.G's avatar
      [FIX] payment: untranslated message · c80a32f9
      Yenthe V.G authored
      Without this the error message will always be in English, no matter the language
      of the end-user.
      
      Closes #17141
      c80a32f9
    • Lucas Perais (lpe)'s avatar
      [FIX] purchase: prevent rounding during currency conversion · 02ce25ba
      Lucas Perais (lpe) authored
      With the settings:
      - Anglo saxon accounting
      - real price on product, perpetual accounting,
      - multicurrency
      - a product with a very small uom (like gram or kilograms and you want to sell many of them, like 500kg)
      
      Flow: purchasing something in another currency
      
      Before this commit, the rounding of the unit price took place right at the conversion level
      which led the rounding errors to be amplified by the quantities when the total price was computed
      
      After this commit, the conversion is done on the unit price but is not rounded yet
      Only the prices are rounded, as late as possible
      
      OPW 742293
      
      Closes #17015
      02ce25ba
Loading