Skip to content
Snippets Groups Projects
  1. Apr 25, 2023
    • Rodrigo's avatar
      [CLA] signature for RodrigoBM · 025507b0
      Rodrigo authored
      
      closes odoo/odoo#119134
      
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      025507b0
    • Rodrigo's avatar
      [IMP] account: improve tax name search · ad2682c5
      Rodrigo authored
      This commit allows the exact search of a text that is searched between dashes.
      Examples:   0EUM      => VAT 0% EU M.
                  21M       => 21% M , 21% EU M, 21% M.Cocont and 21% EX M.
                  21 M"    => 21% M and 21% M.Cocont.
                  21" M"co  => 21% M.Cocont.
      
      Part-of: odoo/odoo#119134
      ad2682c5
    • niyasraphy's avatar
      [FIX] product: traceback on deleting category · 20b55181
      niyasraphy authored
      before this commit, when deleting a product
      category from a db where expense category
      is already deleted before this commit [1]
      is raising exception
      
      after this commit, exception wont be shown
      in existing db where expense category is
      deleted.
      
      1 https://github.com/odoo/odoo/commit/09e4b2fb586ac83adb984672e027ce6dd62affb2
      
      
      
      closes odoo/odoo#118763
      
      X-original-commit: 7c1a96eb
      Signed-off-by: default avatarYannick Tivisse (yti) <yti@odoo.com>
      20b55181
    • Pablo Montenegro's avatar
      [FIX] l10n_latam_check: prevent selecting checks on payments belonging to other company · 6d6e385a
      Pablo Montenegro authored
      
      Task: 30336
      
      Description of the issue/feature this PR addresses:
      In a payment when selecting checks it is allowed to select checks belonging to different companies but it is necessary to allow only to select companies from the same company (the company of the payment).
      
      Current behavior before PR:
      In a payment when selecting checks it is allowed to select checks belonging to different companies.
      
      Desired behavior after PR is merged:
      In a payment not allow to select checks belonging to different companies
      
      closes odoo/odoo#118683
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      6d6e385a
    • Stanislas Gueniffey's avatar
      [IMP] web_editor: allow pasting HTML tables · c30b0555
      Stanislas Gueniffey authored
      
      Previously, when a clipboardData contained both files and html content,
      we prioritised files. This is correct when the original content is an
      image (in which case the clipboard html may contain an image tag or be
      empty, depending on the source). This is however incorrect in at least
      one known case: copying a table from a spreadsheet app, as those usually
      generate an image of the table alongside the actual html table. In that
      case, we would rather keep the table.
      
      This commit differentiates the specific case where the HTML represents a
      table from other cases. In the former, priority is now given to the HTML
      content. In the latter, we keep the files as we did before.
      
      task-3165757
      
      closes odoo/odoo#118324
      
      X-original-commit: a1e358a9
      Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
      c30b0555
    • Yolann Sabaux's avatar
      [FIX] purchase: prevent unnecesary change of currency · 51ff9c60
      Yolann Sabaux authored
      Steps to reproduce:
      - put the currency of the bill to eur
      - change the partner with a partner with no purchase currency set
      
      Issue:
      The bill is re-set to usd
      
      Note:
      addendum to https://github.com/odoo/odoo/pull/116852
      
      
      
      opw-3233527
      
      closes odoo/odoo#117939
      
      Signed-off-by: default avatarCedric Snauwaert <csn@odoo.com>
      51ff9c60
    • Yolann Sabaux's avatar
      [FIX] purchase: enable correct currency on onchange partner_id · 213e22c6
      Yolann Sabaux authored
      Steps to reproduce:
      - company currency = USD
      - set a partner P with a `property_purchase_currency_id` in EUR
      - create a bill with Azure partner and set an bill line
      - change to partner P
      issue -> the currency of the line has not been change
      - change to Azure
      issue -> no change about the currency
      
      Cause:
      - We update the move.currency_id but not the line_ids.currency_id
      - after setting Partner P, we try to set a partner that no `property_purchase_currency_id`, we do not enter in the condition
      
      opw-3233527
      
      X-original-commit: 8985426b
      Part-of: odoo/odoo#117939
      213e22c6
    • Ivan Yelizariev's avatar
      [FIX] website_sale: clean RTL mess with Comparison Price feature · af25b39f
      Ivan Yelizariev authored
      Odoo 16 has new feature *Comparison Price*. It allows to show striked price
      after the main price. E.g. `$555 -$666-`.
      
      It doesn't work well however on using RTL languages because of *Unicode
      Bidirectional Algorithm*. For example, in Egyptian localizations it shows some
      mess of striked and not striked characters: `LE -LE-666- 555`. The correct
      display should be `-LE-666- LE 555`. (Examples are even more complicated with
      symbol E£ that is currently used by default for EGP).
      
      As a solution, use `<bdi>` element to isolate stiked value. Also we have to use attribute
      `dir="inherit"` to avoid changing direction for currencies that use LTR
      characters, otherwise the result would be `-666-LE- LE 555`.
      
      STEPS:
      
      - Go to settings > website: Activate *Comparison Price*
      - Go to Sales > Pricelist: add extra pricelists with EGP currency and mark it
      as **Selectable**
      - Go to Setting > Languages: activate the Arabic language and add it to the website.
      - Go to the product form: add **Compare to Price**
      - Go to the website > products, select pricelist EGP
      
      opw-3188129
      https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
      
      
      
      closes odoo/odoo#113261
      
      Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
      af25b39f
    • Rodolpho Lima's avatar
      [FIX] mass_mailing: add missing tour for new mailing from campaign · 13373b36
      Rodolpho Lima authored
      
      This commit adds a basic tour for creating a mailing from a campaign's
      "Mailing" tab, via the list view of the `mailing_mail_ids` one2Many field.
      
      closes odoo/odoo#116403
      
      Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
      13373b36
    • Rodolpho Lima's avatar
      [FIX] mass_mailing: allow create mailing from campaign · b722fdb1
      Rodolpho Lima authored
      The campaign's "Mailing" page displays the one2Many `mailing_mail_ids` field
      in a list view. When creating a new mailing from this view, a new record is
      created with the fields from the comodel(`mailing.mailing`)'s form view, which
      does not have the necessary "body_html" field.
      
      This resulted in a traceback when attempting to save changes to the newly
      created record, as `MassMailingHtmlField.commitChanges` calls `Record.update`
      for such field.
      
      This commit ensures the `body_html` field is present by adding it as a
      dependency of MassMailingHtmlField.
      
      Task-3225211
      OPW-3204686
      
      Part-of: odoo/odoo#116403
      b722fdb1
    • roen-odoo's avatar
      [FIX] point_of_sale: correctly show discount on receipt · 9bb482c2
      roen-odoo authored
      
      Current behavior:
      When a fiscal position is applied on an order in the PoS, the change of
      price was interpreted as a discount. This shouldn't be the case.
      
      Steps to reproduce:
      - Create a tax that is included in the price (e.g. 10%)
      - Create a fiscal position that match this tax and change it to no tax
      - Change the pricelist option to show discount
      - Create a product with a price of 100€
      - Open the PoS and add the product to the order
      - Apply the fiscal position
      - Pay the order, and go to the receipt screen
      - There is a discount showed on the receipt
      
      opw-3154499
      
      closes odoo/odoo#118841
      
      X-original-commit: 2fa37b32794f7efc058c6ab13b8bbd9a533b6d28
      Signed-off-by: default avatarHeinz Robin (rhe) <rhe@odoo.com>
      Signed-off-by: default avatarEngels Robin (roen) <roen@odoo.com>
      9bb482c2
    • Hansun (hale)'s avatar
      [FIX] sale_timesheet: revenue aggregated wrongly · 8898452d
      Hansun (hale) authored
      
      1. Install [Timesheet], [Sales]
      2. Settings > Time Encoding > Encoding Method > Days/Half-days
      + Make sure the company has more than 1 employee from Employee app
      3. On Products, edit Service product type to have:
      - invoicing policy: based on timesheets
      - create on order: project
      - uom: Days
      4. On Sales app, create a SO and add a service with a price
      - automatically a project will be created
      5. On Timesheet app, create a project linked to the SOL
      6. Create a task and set timesheet 1 day
      7. Go to [Timesheet] > [Reporting] > [By Employee]
      8. Group by SOL and dipslay the MEASURE 'Timesheet Revenues'
      
      Issue: Revenue is multipled by the unit measure of day in hours
      
      Impacted version: 16-master
      opw-3255928
      
      closes odoo/odoo#118718
      
      Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
      8898452d
    • tsm-odoo's avatar
      [FIX] bus: fix non-deterministic bus tests · de02a623
      tsm-odoo authored
      Since [1], some bus tests were failing in a non-deterministic
      way. This PR fixes the issue.
      
      [1]: https://github.com/odoo/odoo/pull/119525
      
      
      Fixes runbot errors: 20755, 20756, 19933.
      
      closes odoo/odoo#119615
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      de02a623
    • divy-odoo's avatar
      [FIX] website: keep language selector flag size ratio · 5d655921
      divy-odoo authored
      
      There was an issue before this commit where some flags (basically all
      the ones which are not tribands) would appear "broken".
      This is the case for the China one where the symbol on the flag would be
      squashed.
      Using `object-fit` css property will keep the original flag ratio.
      
      task-2929438
      
      closes odoo/odoo#119560
      
      X-original-commit: 32aca111
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      5d655921
    • Zeel Patel's avatar
      [IMP] l10n_in_ewaybill: send service product details · d98d13d2
      Zeel Patel authored
      
      We can send service product details if there are any one goods in the Invoice.
      
      task - 3276398
      
      closes odoo/odoo#119517
      
      X-original-commit: 32b65ffc
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      d98d13d2
    • Mountain Tran's avatar
      [FIX] point_of_sale: correctly translate some UI elements · d5ade9a1
      Mountain Tran authored
      
      Before some translations didn't work in the point_of_sale because in owl
      you can't use t-set to manage translations. In cashMovePopup, _t was
      used at a time when loading translations is not yet guaranteed.
      
      Now we have changed _t to _lt to ensure that the translation is done
      correctly. For the t-set, we have added the translations in static
      properties of the concerned components.
      
      closes odoo/odoo#119291
      
      Signed-off-by: default avatarJoseph Caburnay (jcb) <jcb@odoo.com>
      d5ade9a1
    • MerlinGuillaume's avatar
      [FIX] web: keep datepicker open on mobile devices · bd6ed025
      MerlinGuillaume authored
      
      On some mobile devices (eg Samsung Galaxy S22), the datepicker
      immediately closes when trying to apply a custom date filter
      
      Steps to reproduce:
      1. Install Sales
      2. Open Sales
      3. Click on the search icon then on the filter icon
      4. Click on 'Filters' and add a custom filter on field creation date
      5. Click on one of the dates
      6. The datepicker opens and then closes immediately
      
      Solution:
      Do not hide the datepicker when a scroll is made on mobile devices
      
      Problem:
      When opening the datepicker, the keyboard would show up, scrolling the
      view which triggers the closing of the datepicker
      
      opw-3166801
      
      closes odoo/odoo#118951
      
      Signed-off-by: default avatarJulien Mougenot (jum) <jum@odoo.com>
      bd6ed025
    • Pierre Masereel's avatar
      [FIX] website: migrate popover in BS5 · 0cff1dc2
      Pierre Masereel authored
      
      Since we've changed Bootstrap version from 4 to 5 the way to create a
      popover has changed.
      
      So we adapt it to the new way to declare popovers in the website form
      
      closes odoo/odoo#118938
      
      Signed-off-by: default avatarMasereel Pierre <pim@odoo.com>
      0cff1dc2
    • Quentin De Paoli's avatar
      [FIX] spreadsheet_account: don't include unposted entries by default · 84b57995
      Quentin De Paoli authored
      
      All figures coming from the accounting dashboard should be, by default, excluding the unposted entries since this is the default filter when opening the reports.
      
      opw - 3268676
      
      closes odoo/odoo#119513
      
      Signed-off-by: default avatarLucas Lefèvre (lul) <lul@odoo.com>
      Co-authored-by: default avatarLucasLefevre <lul@odoo.com>
      84b57995
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] account: traceback on empty label (import) · f983e0f9
      Andrea Grazioso (agr-odoo) authored
      
      - Import bank statement from the file not having label/partner
      - Access an existing reconciliation model and add a partner mapping
      - Try to reconcile bank statements
      
      Traceback
      
      ```
      [...]
      File
      "/home/odoo/src/odoo/16.0/addons/account/models/account_reconcile_model.py",
      line 855, in _get_partner_from_mapping
      match_payment_ref = re.match(partner_mapping.payment_ref_regex,
      st_line.payment_ref) if partner_mapping.payment_ref_regex else True
      File "/usr/lib/python3.10/re.py", line 190, in match
      return _compile(pattern, flags).match(string)
      TypeError: expected string or bytes-like object
      ```
      
      opw-3235015
      
      closes odoo/odoo#118820
      
      Signed-off-by: default avatarBrice Bartoletti (bib) <bib@odoo.com>
      f983e0f9
    • Arthur Detroux (ard)'s avatar
      [FIX] website: prevent traceback when redirecting to different domain · 127bb584
      Arthur Detroux (ard) authored
      Prior to this commit, after [1], when a user is trying to visit or view
      their website from a domain that is not their current website, a
      traceback would appear if the redirect took too long.
      
      This is because when redirecting, we do not set any URL as the iframe
      iframe source, so it loads the `about:blank` page. When trying to push
      that page into the history (done to change the name and url displayed in
      the browser), the browser crashes and displays a CORS error.
      
      On top of that, it seems some users do not understand what is happening
      and feel like they are being logged out if they're not logged into their
      custom domains.
      
      This commit prevents replacing the history state if the page displayed
      in the iframe is `about:blank`.
      
      It also displays a dialog before redirecting, explaining to the user why
      it is necessary.
      
      Steps to reproduce:
      - Go to website settings
      - Set a domain for your website that's different from the one you are
      currently using to access Odoo (Could be anything but for a realistic
      setup, if accessing from localhost, use 127.0.0.1 or the other way
      around, or use different 127.0.0.X ips)
      - Toggle a slow network mode from your browser's dev tools
      (This is to ensure the traceback appears as it does not if the network
      is quick enough with its redirect)
      - Go on the website app
      => A traceback appears (and disappears as the page is unloaded)
      
      [1]: https://github.com/odoo/odoo/commit/59b96b0742fe8da31eecf896f7a6157811d49de5
      
      
      
      opw-3250663
      
      closes odoo/odoo#118228
      
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      127bb584
    • Alexandre Kühn's avatar
      [FIX] mail: no crash when uploading attachment on draft record · 0cdcacb4
      Alexandre Kühn authored
      
      Before this commit, when uploading an attachment on a draft record,
      there was the following crash.
      
      This happens because the file uploader in use was the one from when
      the record was in draft. The file uploader is changed when the
      record is no longer in draft, so the new file uploader should be used
      instead.
      
      This commit fixes the issue by delaying slightly saving of record in
      chatter model, so that we are sure the chatter record is no longer
      temporary (= record not longer in draft), which in consequence create
      a new file uploader that actually works.
      
      opw-3280676
      
      closes odoo/odoo#119515
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      0cdcacb4
  2. Apr 24, 2023
Loading