diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-12 09:56:40 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-03-12 09:56:40 +0000 |
commit | 361b65854cce25f5667d417a8739b5b234a9bd49 (patch) | |
tree | bf7a7923879ad064f1410d6c2a70313c018d4382 /app/models | |
parent | 18631c1da34ada01a7dbd1b2e04fddfb692723d4 (diff) | |
download | redmine-361b65854cce25f5667d417a8739b5b234a9bd49.tar.gz redmine-361b65854cce25f5667d417a8739b5b234a9bd49.zip |
Merged r15131 (#21867).
git-svn-id: http://svn.redmine.org/redmine/branches/3.2-stable@15203 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/issue_import.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/models/issue_import.rb b/app/models/issue_import.rb index 5a8748cd0..30b373add 100644 --- a/app/models/issue_import.rb +++ b/app/models/issue_import.rb @@ -128,6 +128,9 @@ class IssueImport < Import if due_date = row_date(row, 'due_date') attributes['due_date'] = due_date end + if estimated_hours = row_value(row, 'estimated_hours') + attributes['estimated_hours'] = estimated_hours + end if done_ratio = row_value(row, 'done_ratio') attributes['done_ratio'] = done_ratio end |