Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15451767
D18601.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D18601.diff
View Options
diff --git a/src/applications/maniphest/controller/ManiphestReportController.php b/src/applications/maniphest/controller/ManiphestReportController.php
--- a/src/applications/maniphest/controller/ManiphestReportController.php
+++ b/src/applications/maniphest/controller/ManiphestReportController.php
@@ -88,23 +88,40 @@
$data = queryfx_all(
$conn,
- 'SELECT x.oldValue, x.newValue, x.dateCreated FROM %T x %Q
- WHERE transactionType = %s
+ 'SELECT x.transactionType, x.oldValue, x.newValue, x.dateCreated
+ FROM %T x %Q
+ WHERE transactionType IN (%Ls)
ORDER BY x.dateCreated ASC',
$table->getTableName(),
$joins,
- ManiphestTaskStatusTransaction::TRANSACTIONTYPE);
+ array(
+ ManiphestTaskStatusTransaction::TRANSACTIONTYPE,
+ ManiphestTaskMergedIntoTransaction::TRANSACTIONTYPE,
+ ));
$stats = array();
$day_buckets = array();
$open_tasks = array();
+ $default_status = ManiphestTaskStatus::getDefaultStatus();
+ $duplicate_status = ManiphestTaskStatus::getDuplicateStatus();
foreach ($data as $key => $row) {
-
- // NOTE: Hack to avoid json_decode().
- $oldv = trim($row['oldValue'], '"');
- $newv = trim($row['newValue'], '"');
+ switch ($row['transactionType']) {
+ case ManiphestTaskStatusTransaction::TRANSACTIONTYPE:
+ // NOTE: Hack to avoid json_decode().
+ $oldv = trim($row['oldValue'], '"');
+ $newv = trim($row['newValue'], '"');
+ break;
+ case ManiphestTaskMergedIntoTransaction::TRANSACTIONTYPE:
+ // NOTE: Merging a task does not generate a "status" transaction.
+ // We pretend it did. Note that this is not always accurate: it is
+ // possble to merge a task which was previously closed, but this
+ // fake transaction always counts a merge as a closure.
+ $oldv = $default_status;
+ $newv = $duplicate_status;
+ break;
+ }
if ($oldv == 'null') {
$old_is_open = false;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 29, 11:41 PM (5 d, 11 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7720993
Default Alt Text
D18601.diff (2 KB)
Attached To
Mode
D18601: Correct an issue where Maniphest's awful legacy "reports" UI was extra broken on merges
Attached
Detach File
Event Timeline
Log In to Comment