fix: adding start and target date in issue exporter
This commit is contained in:
parent
a42c69f619
commit
b72d18079f
1 changed files with 6 additions and 0 deletions
|
|
@ -157,6 +157,8 @@ def generate_table_row(issue):
|
||||||
issue["name"],
|
issue["name"],
|
||||||
issue["description_stripped"],
|
issue["description_stripped"],
|
||||||
issue["state__name"],
|
issue["state__name"],
|
||||||
|
dateTimeConverter(issue["start_date"]),
|
||||||
|
dateTimeConverter(issue["target_date"]),
|
||||||
issue["priority"],
|
issue["priority"],
|
||||||
(
|
(
|
||||||
f"{issue['created_by__first_name']} {issue['created_by__last_name']}"
|
f"{issue['created_by__first_name']} {issue['created_by__last_name']}"
|
||||||
|
|
@ -324,6 +326,8 @@ def issue_export_task(provider, workspace_id, project_ids, token_id, multiple, s
|
||||||
"name",
|
"name",
|
||||||
"description_stripped",
|
"description_stripped",
|
||||||
"priority",
|
"priority",
|
||||||
|
"start_date",
|
||||||
|
"target_date",
|
||||||
"state__name",
|
"state__name",
|
||||||
"created_at",
|
"created_at",
|
||||||
"updated_at",
|
"updated_at",
|
||||||
|
|
@ -352,6 +356,8 @@ def issue_export_task(provider, workspace_id, project_ids, token_id, multiple, s
|
||||||
"Name",
|
"Name",
|
||||||
"Description",
|
"Description",
|
||||||
"State",
|
"State",
|
||||||
|
"Start Date",
|
||||||
|
"Target Date",
|
||||||
"Priority",
|
"Priority",
|
||||||
"Created By",
|
"Created By",
|
||||||
"Assignee",
|
"Assignee",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue