Skip to content
Snippets Groups Projects
  1. Apr 10, 2022
  2. Apr 08, 2022
    • dbkosky's avatar
      [FIX] l10n_it_edi_sdicoop: fix confusing successful transmission message · 9b3f2a52
      dbkosky authored
      
      closes odoo/odoo#88301
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      9b3f2a52
    • Pouya Malekinejad's avatar
      [fix] l10n_nz: fix incorrect formula in tax report · 146bf63b
      Pouya Malekinejad authored
      
      closes odoo/odoo#88292
      
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      146bf63b
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] l10n_fr_fec: use invoice/bill date when generating FEC · f693f118
      Andrea Grazioso (agr-odoo) authored
      
      Install FR accounting and have a FR company setup with VAT
      Create a bill with bill date different from accounting date
      Export FEC under Accounting>Reporting>FEC
      
      For the created bill the accounting date will be used, while it should
      be taken first the bill date
      
      opw-2680288
      
      closes odoo/odoo#88281
      
      X-original-commit: 2b1fc6a9
      Signed-off-by: default avatarQuentin De Paoli <qdp@odoo.com>
      Signed-off-by: default avatarGrazioso Andrea (agr) <agr@odoo.com>
      f693f118
    • momegahed's avatar
      [FIX] sale_coupon: discount applied on the price exc. taxes · 84e2ea24
      momegahed authored
      
      If applied, this commit will fix the following bug by using the correct
      total based on whether the price is tax inc. or exc.
      
      Steps to reproduce:
      - Install sale
      - Create a tax with "included in price" set on it
      - Create a promotion program with any value higher than
        [100/(1+VAT/100)]% discount on total order
      - Create a SO and add product with the created tax
      - Add promotion program
      
      Result:
      - The discount applied is capped at [100/(1+VAT/100)]%
        Eg, for a 35% included tax, the max discount will be 74.07%,
        regardless if the discount % is higher like 90%.
      Expected result:
      - The correct discount should be applied
      
      Bug:
      The ```price_subtotal``` is used to calculate the order total amount
      whether the price is tax inc. or tax exc.
      
      Fix:
      Use ```price_total``` when the price is tax inc.
      
      opw-2765883
      
      closes odoo/odoo#88066
      
      X-original-commit: a99b4438
      Signed-off-by: default avatarRomain Derie (rde) <rde@odoo.com>
      Co-authored-by: default avatarAndrea Grazioso (agr-odoo) <agr@odoo.com>
      84e2ea24
    • Jairo Llopis's avatar
      [IMP] odoo_referral_portal: remove unneded addon · c77c7d0b
      Jairo Llopis authored
      This garbage adds no value and blocks some deployments. See https://github.com/Tecnativa/doodba/issues/485
      
      .
      
      @moduon MT-295
      
      closes odoo/odoo#85823
      
      Signed-off-by: default avatarThibault Francois <tfr@odoo.com>
      c77c7d0b
    • Audric Onockx (auon)'s avatar
      [FIX] hr_holidays : keep leave out of approver's calendar · 69a6f373
      Audric Onockx (auon) authored
      
      Steps :
      Install modules hr_holidays and google_calendar;
      Log into Odoo with two different users, one manager and one employee (subordinated): f.e. Admin e Demo;
      Set Google Client ID and Google Secret with a OAuth2.0;
      Check if in Odoo's Calendar the Synched with Google tag compares on the right (with manager);
      From employee user, go to Time Off -> My Time Off -> My Time Off Requests and Create with a date;
      From manager user, go to Time Off -> Managers -> Time Off and accept the time off created;
      Go to manager's Google Calendar.
      
      Current behavior:
      Google event is created and visible for manager, employee has an event since is an attendee of the first.
      
      Expected behavior:
      Google event is created and visible for employee, manager is not involved.
      
      Fix:
      Group the leaves with user and create events with this user.
      We could not modify easily the behavior of the calendar sync modules.
      The following approach was tested: odoo/odoo#86385
      But it has some side effects on recurring events, oultier events
      (events not following the recurrence) and could bring performance issues.
      The solution of this fix was chosen because it is less intrusive.
      
      opw-2761158
      
      closes odoo/odoo#88124
      
      Signed-off-by: default avatarArnaud Joset <arj@odoo.com>
      69a6f373
    • dbkosky's avatar
      [FIX] l10n_it_edi: minimise filename duplication · d0f8ca31
      dbkosky authored
      
      The problem is that we have a limited space in the filename for
      differentiating one file from the other. Only the five characters at the
      end of the filename are used, this looks like:
      
          <CODICE_FISCALE>_NNNNN.xml (where N is a character a-zA-Z0-9)
      
      The current version utilises the invoice id to get the unique filename.
      This has a couple of problems:
       - It doesn't utilise the (lowercase) a-z characters
       - Draft invoices still have invoice ids
       - In a multicompany environment, the invoice ids are not unique to the
         company (i.e. another company creating an invoice will increment the
         value of the invoice.id on your company)
      These above problems mean that we're not currently utilising the hashing
      space available to us by the characters of the filename.
      
      The solution is to utilise an ir.sequence, that is used to determine
      each filename. This has the benefit of being editable by the user, so if
      they continue to get duplications, they can offset them by adjusting the
      value of the sequence's next number.
      
      A more descriptive error message and its translation term have also been
      added for when a filename duplication occurs.
      
      relates to
      
      closes odoo/odoo#88005
      
      Task-id: 2813957
      Ticket-id: 2788927
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      d0f8ca31
    • dbkosky's avatar
      [FIX] l10n_it_edi: add tests for price included taxes and discounted lines · a0a8bdf4
      dbkosky authored
      
      closes odoo/odoo#86971
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      a0a8bdf4
  3. Apr 07, 2022
  4. Apr 06, 2022
  5. Apr 05, 2022
  6. Apr 04, 2022
    • Merlin (megu)'s avatar
      [FIX] l10n_id_efaktur: round amounts · 81b2f526
      Merlin (megu) authored
      
      The e-faktur contains amounts that are not well rounded
      
      Steps to reproduce:
      1. Install Accounting app and l10n_id_efaktur module
      2. Switch to ID Company
      3. Open Accounting
      4. Go to Customers > e-Faktur
      5. Create a new range (at least one number available)
      6. Create a new Customer Invoice for a customer in Indonesia with ID PKP
      enabled, specify a 'Kode Transaksi' and add a product with a price of
      147.5 and a tax of 10%
      7. Download the e-faktur
      8. The amounts on the product line are not rounded but truncated
      
      Solution:
      Round the amounts that are translated to int
      
      opw-2793009
      
      closes odoo/odoo#87924
      
      X-original-commit: dbe11ced
      Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
      81b2f526
    • Andrea Grazioso (agr-odoo)'s avatar
      [FIX] l10n_cl: unable to issue credit note (vendor bill) · 0f1edf4d
      Andrea Grazioso (agr-odoo) authored
      Have a CL company setup
      Issue a vendor bill
      Then generate the credit note via 'Add Credit Note' wizard
      Add a reason and confirm
      Error will raise “You can not use a invoice document type with a refund
      invoice”
      
      As
      https://github.com/odoo/odoo/commit/c9ff9d28ab75c02093ca54d9fbd1d2e203c5ee2e
      
      
      for the invoice case
      we need to add specific logic to handle credit notes in l10n_cl
      
      opw-2801576
      
      closes odoo/odoo#87910
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      0f1edf4d
    • Umesh Gupta's avatar
      [FIX] web_tour: properly display all test tour tooltips · 922370ff
      Umesh Gupta authored
      
      Currently, if the tip does not have any content set in step (happens a
      lot in test tours), the tip is not displayed properly. This happens
      because the height of the tip is set based on the tip content which is
      not available in our case.
      
      This commit fixes the behavior by providing a default content in such
      cases saying "Click here to go to the next step.". It has two benefits
      (in case someone is manually walking through a test tour):
      - The tip is displayed properly.
      - We can guide the devs with a friendly message.
      
      task-2792218
      
      closes odoo/odoo#87322
      
      Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
      922370ff
    • Merlin (megu)'s avatar
      [FIX] mass_mailing: show the snippets menu in the editor · a012019c
      Merlin (megu) authored
      
      In the editor menu, the buttons 'Blocks', 'Style', and 'Select a
      template' are not visible because they are hidden by the theme selector
      When clicking on 'Change Style' in fullscreen, the dropdown menu hides
      the button so it is impossible to exit the theme selector without
      choosing one
      
      Steps to reproduce:
      1. Install Email Marketing
      2. Create new mailing
      3. Select a Mail Body (except 'Plain Text')
      4. The buttons are hidden by the button 'Change Style'
      5. Go in fullscreen and click on 'Change Style'
      6. The dropdown menu hides the button so we cannot exit the theme
      selector properly
      
      Solution:
      Delete the absolute position of the theme selector
      Put the dropdown menu lower so that it doesn't hide the 'Change Style'
      button
      Hide the 'Select a template' button because it is useless
      
      opw-2743460
      
      closes odoo/odoo#85672
      
      Signed-off-by: default avatarAntoine Guenet <age@odoo.com>
      a012019c
    • Hubert Van de Walle (huvw)'s avatar
      [FIX] web: radio widget ignores required attribute · 65f4c4f2
      Hubert Van de Walle (huvw) authored
      
      opw-2729810
      
      closes odoo/odoo#87872
      
      X-original-commit: ca4300d5
      Signed-off-by: default avatarLucas Perais (lpe) <lpe@odoo.com>
      Signed-off-by: default avatarHubert Van De Walle <huvw@odoo.com>
      65f4c4f2
    • Abdelouahab (abla)'s avatar
      [FIX] l10n_it_edi : fix _l10n_it_onchange_vat · b8b63490
      Abdelouahab (abla) authored
      
      To reproduce
      ============
      
      - Create one french company and one italian company with their respective localization packages.
      - Go to the French company and create a contact, first set the country and then the VAT.
      An error message will appear referring to Codice Fiscale but this information is not relevant on the French Company.
      
      Purpose
      =======
      
      The VAT field has an onchange trigger `_l10n_it_onchange_vat`  to set `l10n_it_codice_fiscale` value.
      on `_l10n_it_onchange_vat` there is no verification if the VAT number is Italian, so we try to get
      a Codice Fiscale from it, which leads to error if the VAT number is not Italian.
      
      Specification
      =============
      
      To solve the issue we added a verification on the VAT number to make sure that it is an Italian one before
      trying to get Codice Fiscale from it.
      
      opw-2777519
      
      closes odoo/odoo#87603
      
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      b8b63490
    • Laurent Smet's avatar
      [FIX] account: Fix traceack when registering a 0 amount payment · 14894623
      Laurent Smet authored
      
      => Create an invoice in foreign currency
      => Register a payment of 0 using the currency of the company and select "Keep open"
      A traceback is raised
      
      closes odoo/odoo#87768
      
      Signed-off-by: default avatarOlivier Colson <oco@odoo.com>
      14894623
    • Laurent Smet's avatar
      [FIX] account: Fix division by zero on register payment wizard · c86faecc
      Laurent Smet authored
      - Create an invoice having a foreign currency
      - Register a payment of 0.0 using a different currency with a write-off of any account
      => traceback
      
      Task: 2809565
      Part-of: odoo/odoo#87768
      c86faecc
    • Mathieu Walravens's avatar
      [FIX] base: shadowed attachment filename · 55e60975
      Mathieu Walravens authored
      
      When a filename is given to the function binary_content it was shadowed
      by _binary_ir_attachment_redirect_content if it is an ir.attachment.
      
      To reproduce:
        1. Start a brand new database in V14, install any app on which you can add an attachment (like Project or CRM)
        2. Add a file as an attachment
        3. Try to call the route "/web/content/<string:model>/<int:id>/<string:field>/<string:filename>"
      
      closes odoo/odoo#87725
      
      Solution: Use another variable to store the return value of _binary_ir_attachment_redirect_content and use it if the filename is not provided.
      X-original-commit: 0eb69d75
      Signed-off-by: default avatarJulien Castiaux <juc@odoo.com>
      Signed-off-by: default avatarWanderscheid Mathieu (mawa) <wama@odoo.com>
      55e60975
  7. Apr 03, 2022
  8. Apr 01, 2022
    • Adrien Widart's avatar
      [FIX] stock: avoid inter-warehouse transfer only if planned · 440c259f
      Adrien Widart authored
      
      Improve 06188f61
      
      The user does not have the possibility to create a delivery to the
      inter-warehouse transit location (the destination location is
      invisible). Same for the receipt.
      
      So, the user should only avoid transferring some products between two
      warehouses if the internal transfer is a planned one.
      
      closes odoo/odoo#87797
      
      X-original-commit: 09fd3867
      Signed-off-by: default avatarArnold Moyaux <arm@odoo.com>
      Signed-off-by: default avatarAdrien Widart <awt@odoo.com>
      440c259f
    • dbkosky's avatar
      [FIX] l10n_it_edi: demo data bank and partner · f8da2dbe
      dbkosky authored
      
      Demo data to improve the flow of testing the edi. A bank account and a
      partner with a street/city/zipcode/codice fiscale are required for the
      edi, so having these as demo data is useful.
      The demo company vat code and codice fiscale are also changed to those
      of a valid company, so that they will be accepted by the sdi testing
      environment. The address of the demo company is updated so that, if by
      accident, an invoice is sent using the demo company, through the
      official channel, the address will make it an obvious test.
      
      closes odoo/odoo#87249
      
      Task-id: 2809328
      Signed-off-by: default avatarJosse Colpaert <jco@odoo.com>
      f8da2dbe
    • Ipsita Borisagar's avatar
      [FIX] mail: regarding scheduling activity in list view · 6436950b
      Ipsita Borisagar authored
      
      Open a activity view(record modal), that will show records, clicking on the
      'o_activity_btn' of a record will show dropdown and make sure that there are
      many scheduled activity there .
      
      Before this commit:
      
      The dropdown was bigger than the record modal which had a scroll bar. It was not
      scrollable properly and "+ Schedule Activity" button is not accessible.
      
      After this commit:
      
      The dropdown follows the scroll, and it will be possible to click the button.
      
      Task- 2528111
      
      closes odoo/odoo#72441
      
      Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
      6436950b
Loading