1. 20 Apr, 2021 1 commit
  2. 19 Apr, 2021 2 commits
  3. 16 Apr, 2021 1 commit
    • Jérome Perrin's avatar
      xhtml_style: fix rendering of standard_error_message when site title is not ASCII · 8fffd3f8
      Jérome Perrin authored
      When rendering error page, the default header_title is computed in global_definitions
      and this is done by concatenating string:ERP5 (which is unicode) and the
      title of the portal (which is an UTF-8 encoded string), which causes an
      UnicodeDecodeError, because the portal title was decoded as ASCII.
      
      Because header_title is usually an UTF-8 encoded string, also use an UTF-8
      encoded string for 'ERP5' default value.
      8fffd3f8
  4. 15 Apr, 2021 8 commits
  5. 14 Apr, 2021 9 commits
  6. 13 Apr, 2021 6 commits
  7. 12 Apr, 2021 3 commits
  8. 09 Apr, 2021 4 commits
  9. 07 Apr, 2021 1 commit
  10. 06 Apr, 2021 1 commit
  11. 02 Apr, 2021 2 commits
  12. 01 Apr, 2021 1 commit
  13. 31 Mar, 2021 1 commit
    • Jérome Perrin's avatar
      accounting: including movements from at_date in General Ledger · 0c299482
      Jérome Perrin authored
      All reports were properly including movements from the last day,
      except general ledger which were only including movements made
      without hours:minutes (at midnight). This was not a problem for
      manually entered transactions, which are usually made at 00:00
      but when transactions are entered with hour:minutes they were
      not included.
      0c299482