Skip to content
Snippets Groups Projects
  1. May 23, 2017
  2. 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
  3. May 21, 2017
  4. May 19, 2017
  5. May 18, 2017
    • maitaoriana's avatar
      [CLA] update Vauxoo's CLA · b753265a
      maitaoriana authored
      add maitaoriana
      
      Done at #17078
      b753265a
    • Nicolas Martinelli's avatar
      [FIX] account: avoid with_context in loop · 46bb7921
      Nicolas Martinelli authored
      Because it uses a different cache for each iteration, which slows down
      the process.
      46bb7921
    • Goffin Simon's avatar
      [FIX] crm: quick create in crm.lead · 95533556
      Goffin Simon authored
      When making a quick create for a crm.lead record, the field user_id is set
      with its default value (introduced by aa44700d)
      But the date_open('Assigned') was not set.
      
      When creating a challenge with goal="New opportunities", the new opportinities
      are counted with date_open. But when creating an opportunity with the quick create,
      it was not counted as date_open was empty.
      
      opw:742751
      95533556
    • Goffin Simon's avatar
      [FIX] purchase: _anglo_saxon_purchase_move_lines · fa87b0d6
      Goffin Simon authored
      Let's consider a stockable product P with a product category PC with costing method = real price,
      valuation = perpetual, stock valuation account = SVA and price diff account = PDA.
      The cost defined for P in product.template is equal to 1$.
      
      Steps
      
      -Create a PO for P with a price unit = 5$
      -Confirm PO and generate the invoice
      -Update the qty for P in the invoice and validate it(price unit is still 5$)
      
      Bug:
      
      In the general ledger: a move with a debit of 1$ is created for SVA and a debit of 4$
      is created for PDA which is wrong. The expected result is: just a move of 5$ created
      for SVA and nothing for PDA because the difference between the purchase price and the
      invoiced price is 0.
      
      This commit fixes this problem.
      
      NB: in real price and average price, the considered cost must be the purchase price
      and not the cost defined in the product template.
      
      opw:740879
      fa87b0d6
    • Nicolas Martinelli's avatar
      [FIX] account: Sales team on refund · 4cbbbadd
      Nicolas Martinelli authored
      When doing a refund of an invoice, the sales team is not kept. At the
      same time, remove fields which don't exist anymore.
      
      opw-743093
      4cbbbadd
    • Goffin Simon's avatar
      [FIX] account_bank_statement_import: journal without default credit/debit account · 64eb5ce4
      Goffin Simon authored
      A traceback was raised when importing a statement for a journal without default credit/debit account.
      
      opw:742196
      64eb5ce4
  6. May 17, 2017
    • Josse Colpaert's avatar
    • Martin Trigaux's avatar
      [FIX] point_of_sale: round taxes as in amount_tax · ae1aec32
      Martin Trigaux authored
      amount_tax compute method uses `price * (1 - (discount or 0.0) / 100.0)`
      _create_account_move_line method used `price * (100.0 - discount) / 100.0`
      
      with price = 9.95 and discount = 0.1 it makes a difference
      >>> 9.95 * 0.9
      8.955
      >>> 9.95 * 90.0 / 100.0
      8.954999999999998
      
      Cumulative errors makes a 1 cent difference between totals of the orders and
      computed amounts.
      
      The session could not be closed as debit != credit
      
      opw-743188
      ae1aec32
    • Martin Trigaux's avatar
      [FIX] account: reset the move reference on bank statement · 6de2990f
      Martin Trigaux authored
      When removing a move previously linked to a bank statement, the move_name value
      must be removed too.
      This field is set when reconciling the entries.
      When move_name is set, it is not possible to delete the bank statement line,
      even if the refered move no longer exists.
      
      opw-741205
      6de2990f
    • Sylvain GARANCHER's avatar
      [IMP] stock: allow to define `from_date` · 57b3894c
      Sylvain GARANCHER authored
      The context key `from_date` can be retrived from `self.env.context,
      while the context key `to_date` can be defined for each procurement
      group.
      
      We extend the code so that `from_date` can also be defined for each
      procurement group.
      
      Closes #16803
      opw-743013
      57b3894c
    • Edser Solís's avatar
      [CLA] Iterativo signs CCLA · f17bc70f
      Edser Solís authored
      Done at #16967
      f17bc70f
    • qsm-odoo's avatar
      [FIX] mass_mailing, web_editor: increase mail clients compatibility · a83f8123
      qsm-odoo authored
      Following bee3253b, this commit is made
      to increase the mail clients compatibility for the mails that are
      created with the odoo mail editor.
      
      Three new problems are handled:
      
      - Font family of titles had to be forced too as outlook was not
        inheriting parent font family on those either.
      
      - Default text font-size had to be forced as was not detected in
        transcoding correctly.
      
      - text-decoration rule was decomposed in text-decoration(-line,
        -style and -color) in transcoding. Outlook is ignoring those
        three rules for some reason. As the decomposition is useless,
        the transcoder now forces the recomposition of these three rules.
      a83f8123
  7. May 16, 2017
Loading