Changes between Initial Version and Version 1 of Ticket #14338


Ignore:
Timestamp:
Mar 29, 2024, 10:52:53 PM (7 weeks ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14338 – Description

    initial v1  
    1 Setting custom stat_date and due_date doesn't work.
     1Setting custom `start_date` and `due_date` doesn't work.
    22
    33Setting example:
    44
    5 **
    6 {{{
     5{{{#!ini
    76[ticketcalendar]
    87ticket.start_date = due_assign
     
    1312**
    1413
    15 After analyze source code, detect wrong parameters are passed to _to_date function in web_ui.py file.
     14After analyze source code, detect wrong parameters are passed to `_to_date` function in `web_ui.py` file.
    1615
    17 **
    18 {{{
     16{{{#!python
    1917125     def _to_date(self, d, format='%d/%m/%Y'):
    2018}}}
    21 **
    2219
    23 After remove the self parameter custom date start working.
     20After removing the self parameter, custom date started working.