Skip to content
Snippets Groups Projects
  1. May 12, 2016
  2. May 11, 2016
  3. May 10, 2016
    • Denis Ledoux's avatar
      [FIX] google_calendar: do not copy user Google info · a0366b3a
      Denis Ledoux authored
      If a user syncs his calendar with Google,
      and a second user is created in the database by copying this first
      user, the Google information of the first user was copied
      (The Google account to sync, the token to use, the last
      syncrhonization date, ...), which is obviously wrong.
      
      On calendar syncrhonization, which can be done
      manually or automatically with the according cron, all
      events of the first user were created a second time,
      as a second user synchronized the same Google Calendar.
      
      opw-674141
      a0366b3a
    • Nicolas Martinelli's avatar
      [FIX] base: no-break space in qweb · 34f09a0e
      Nicolas Martinelli authored
      A non-breaking space is used between the amount and the currency.
      However, if a space is used as a separator, there is a possibility that
      the amount will be split into several lines.
      
      opw-674535
      34f09a0e
    • Nicolas Martinelli's avatar
      [FIX] account payment difference sign · 93484168
      Nicolas Martinelli authored
      When a payment is registered on an invoice, the payment difference must
      be considered differently if we receive the payment or pay a bill. This
      is necessary at the creation of the 'Counterpart' entry. For example,
      an invoice of 100 is considered as paid with a payment of 90. The
      difference of 10 should be booked as a debit in case of a customer
      invoice, but it should be booked as a credit in case of a vendor bill.
      
      opw-675641
      93484168
    • Denis Ledoux's avatar
      [FIX] calendar: edition of events duration · 77cb5f0e
      Denis Ledoux authored
      In event not during all day, it looks like
      `start_date` could be defined, but `stop_date` not.
      
      Despite the fact this is not such a normal state, this should
      not prevent the save of the event with the
      `_check_closing_date` constraint, checking that the ending
      date is after the starting date
      (in the case of an event not during the whole day,
      this is ensured with the `start_datetime` and the
      `stop_datetime`
      
      opw-676245
      77cb5f0e
    • Joren Van Onder's avatar
      [FIX] barcodes: also allow barcodes triggering buttons in dropdowns · 28a9336a
      Joren Van Onder authored
      On smaller screens some buttons will be hidden. An example of this is
      the 'Validate' button in the stock.picking form view. It is not :visible
      but it should still be possible to trigger through scanning a
      'O-BTN.validate' barcode.
      
      opw-676741
      28a9336a
    • Martin Trigaux's avatar
      [FIX] tools: keep comment in CSV export · 59982a04
      Martin Trigaux authored
      The comments field was ignored (because reasons) when exporting terms in CSV.
      This was an issue when using the wizard 'Synchronize Terms' as it first export
      the terms of every module in CSV.
      
      opw-673853
      Unverified
      59982a04
    • Nicolas Martinelli's avatar
      [FIX] web: search input of date · 50b94ef0
      Nicolas Martinelli authored
      When the user searches for date (or a datetime) in the search bar, the
      suggested date can become completely wrong. For example, in the French
      localization where the date format is DD/MM/YYYY, the system will search
      for the date MM/DD/YYYY. This is even worse when the date is not fully
      written: DD/MM could be converted to MM/DD/0000, which doesn't make any
      sense. This is related to the moment issue
      https://github.com/moment/moment/issues/1407.
      
      The fix is to make sure that the input date has a correct format thanks
      to `parse_value`. The latter converts the date into a fixed format.
      
      Fixes #11876
      opw-676604
      50b94ef0
    • Goffin Simon's avatar
      [FIX] account_asset: deferred_revenue_category_id and asset_category_id · c140f9f5
      Goffin Simon authored
      When creating an customer invoice with a product linked to a deferred revenue
      category, the account used in the invoice line must be the account_asset_id.
      
      When creating an vendor bill with a product linked to an asset
      category, the account used in the invoice line must be the account_depreciation_id.
      
      Inspired from 0287c1e1
      
      opw:677098
      c140f9f5
Loading