diff --git a/module/productplan/js/create.js b/module/productplan/js/create.js
index fda792d52f..99e9bae940 100644
--- a/module/productplan/js/create.js
+++ b/module/productplan/js/create.js
@@ -35,3 +35,9 @@ function computeEndDate(delta)
endDate = beginDate.addDays(delta - 1).toString('yyyy-MM-dd');
$('#end').val(endDate);
}
+
+$('#begin').on('change', function()
+{
+ $("#end").val('');
+ $("input:radio[name='delta']").attr("checked",false);
+});
\ No newline at end of file
diff --git a/module/productplan/view/view.html.php b/module/productplan/view/view.html.php
index 4591bf0913..2716b39533 100644
--- a/module/productplan/view/view.html.php
+++ b/module/productplan/view/view.html.php
@@ -72,7 +72,10 @@
| idAB);?> |
priAB);?> |
- story->title);?> |
+
+ story->module);?> |
+
+ story->title);?> |
openedByAB);?> |
assignedToAB);?> |
story->estimateAB);?> |
@@ -100,10 +103,10 @@
id));?>
story->priList, $story->pri, $story->pri)?>'>story->priList, $story->pri, $story->pri);?> |
-
- module) echo "{$modulePairs[$story->module]} "?>
- title);?>
- |
+
+ module)) echo $modulePairs[$story->module];?> |
+
+ title);?> |
openedBy);?> |
assignedTo);?> |
estimate;?> |
diff --git a/module/project/js/create.js b/module/project/js/create.js
index c663b9f235..4ecdecef3c 100644
--- a/module/project/js/create.js
+++ b/module/project/js/create.js
@@ -13,6 +13,12 @@ $(function()
{
$('#productsBox .col-sm-3').width(typeWidth);
});
+ $('#begin').on('change', function()
+ {
+ $("#end").val('');
+ $("#days").val('');
+ $("input:radio[name='delta']").attr("checked",false);
+ });
});
function showTypeTips()