OSDN Git Service

1.0.0.6バグ修正
authorAndouTomo <tomando.clar02@gmail.com>
Sun, 15 Jun 2014 06:20:58 +0000 (15:20 +0900)
committerAndouTomo <tomando.clar02@gmail.com>
Sun, 15 Jun 2014 06:20:58 +0000 (15:20 +0900)
EndCommandにおいて、repeat時に対象のカテゴリが無い場合にエラーとなる現象を修正

KyberNetes/command/Control/EndCommand.cs

index 438bf80..7ffc38b 100644 (file)
@@ -29,7 +29,8 @@ namespace com.andoutomo.kybernetes.command
                         _newData.TaskID = TaskDataAccessor.getObject.getMaxTaskID();\r
                         _newData.SortID = TaskDataAccessor.getObject.getMaxSortID();\r
 \r
-                        _newData.CategID = CategoryDataAccessor.getObject.getCategoryFromName(_newData.Category).CategId;\r
+\r
+                        //_newData.CategID = CategoryDataAccessor.getObject.getCategoryFromName(_newData.Category).CategId;\r
 \r
                         TaskDataAccessor.getObject.insertTask(_newData);\r
 \r