Modify

Opened 14 years ago

Last modified 14 years ago

#7443 new defect

When setting ResourceName, always PercentComplete become 0 percent.

Reported by: Yuji OKAZAKI Owned by: Yuji OKAZAKI
Priority: normal Component: VisualBasicTracConnectorIntegration
Severity: normal Keywords:
Cc: Trac Release: 0.11

Description


Attachments (0)

Change History (1)

comment:1 Changed 14 years ago by anonymous

In ProjectConnector::addTicket

-    If complete <> "" Then
-        t.PercentComplete = complete
-    Else
-        If status = "resolved" Or status = "closed" Then
-            t.PercentComplete = "100"
-        End If
-    End If
+    If complete = "" Then
+        If status = "resolved" Or status = "closed" Then
+            complete = "100"
+        End If
+    End If
+    t.PercentComplete = complete
     If tasknum = m_pj.Tasks.count Then '葉タスクの場合のみ
         t.ResourceNames = owner 'リソースを追加する
+        t.PercentComplete = complete
     End If

Modify Ticket

Change Properties
Set your email in Preferences
Action
as new The owner will remain Yuji OKAZAKI.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.