160 lines
4.6 KiB
PHP
160 lines
4.6 KiB
PHP
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/kindeditor.html.php';?>
|
|
<?php js::set('rawMethod', $this->app->rawMethod);?>
|
|
<script>
|
|
/**
|
|
* Load product.
|
|
*
|
|
* @param int $productID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function loadProduct(productID)
|
|
{
|
|
if(typeof parentStory != 'undefined' && parentStory)
|
|
{
|
|
confirmLoadProduct = confirm(moveChildrenTips);
|
|
if(!confirmLoadProduct)
|
|
{
|
|
$('#product').val(oldProductID);
|
|
$('#product').trigger("chosen:updated");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if(typeof hasSR != 'undefined' && hasSR)
|
|
{
|
|
confirmLoadProduct = confirm(moveSRTips);//Set hasSR variable in pro and biz.
|
|
if(!confirmLoadProduct)
|
|
{
|
|
$('#product').val(oldProductID);
|
|
$('#product').trigger("chosen:updated");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
oldProductID = $('#product').val();
|
|
loadProductBranches(productID)
|
|
}
|
|
|
|
/**
|
|
* Load branch.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function loadBranch()
|
|
{
|
|
var branch = $('#branch').val();
|
|
var productID = $('#product').val();
|
|
if(typeof(branch) == 'undefined') branch = 0;
|
|
if(typeof(productID) == 'undefined' && config.currentMethod == 'edit') productID = oldProductID;
|
|
|
|
loadProductModules(productID, branch);
|
|
loadProductPlans(productID, branch);
|
|
}
|
|
|
|
/**
|
|
* Load branches when change product.
|
|
*
|
|
* @param int $productID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function loadProductBranches(productID)
|
|
{
|
|
$('#branch').remove();
|
|
$('#branch_chosen').remove();
|
|
$.get(createLink('branch', 'ajaxGetBranches', "productID=" + productID + "&oldBranch=0¶m=&projectID=" + executionID), function(data)
|
|
{
|
|
var $product = $('#product');
|
|
var $inputGroup = $product.closest('.input-group');
|
|
$inputGroup.find('.input-group-addon').toggleClass('hidden', !data);
|
|
if(data)
|
|
{
|
|
$inputGroup.append(data);
|
|
$('#branch').css('width', config.currentMethod == 'create' ? '120px' : '65px').chosen();
|
|
}
|
|
$inputGroup.fixInputGroup();
|
|
|
|
loadProductModules(productID, $('#branch').val());
|
|
loadProductPlans(productID, $('#branch').val());
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Load modules when change product.
|
|
*
|
|
* @param int $productID
|
|
* @param int $branch
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function loadProductModules(productID, branch)
|
|
{
|
|
if(typeof(branch) == 'undefined') branch = $('#branch').val();
|
|
if(!branch) branch = 0;
|
|
|
|
var currentModule = 0;
|
|
if(rawMethod == 'edit')
|
|
{
|
|
currentModule = $('#module').val();
|
|
}
|
|
|
|
var moduleLink = createLink('tree', 'ajaxGetOptionMenu', 'productID=' + productID + '&viewtype=story&branch=' + branch + '&rootModuleID=0&returnType=html&fieldID=&needManage=true&extra=¤tModuleID=' + currentModule);
|
|
var $moduleIDBox = $('#moduleIdBox');
|
|
$moduleIDBox.load(moduleLink, function()
|
|
{
|
|
$moduleIDBox.find('#module').chosen();
|
|
if(typeof(storyModule) == 'string' && config.currentMethod != 'edit') $moduleIDBox.prepend("<span class='input-group-addon'>" + storyModule + "</span>");
|
|
$moduleIDBox.fixInputGroup();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Load plans when change product.
|
|
*
|
|
* @param int $productID
|
|
* @param int $branch
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function loadProductPlans(productID, branch)
|
|
{
|
|
if(typeof(branch) == 'undefined') branch = 0;
|
|
if(!branch) branch = 0;
|
|
var expired = config.currentMethod == 'create' ? 'unexpired' : '';
|
|
planLink = createLink('product', 'ajaxGetPlans', 'productID=' + productID + '&branch=' + branch + '&planID=' + $('#plan').val() + '&fieldID=&needCreate=true&expired='+ expired +'¶m=skipParent');
|
|
var $planIdBox = $('#planIdBox');
|
|
$planIdBox.load(planLink, function()
|
|
{
|
|
$planIdBox.find('#plan').chosen();
|
|
$planIdBox.fixInputGroup();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Load reviewers when change product.
|
|
*
|
|
* @param int $productID
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function loadProductReviewers(productID)
|
|
{
|
|
var storyID = <?php echo isset($story->id) ? $story->id : 0;?>;
|
|
var reviewerLink = createLink('product', 'ajaxGetReviewers', 'productID=' + productID + '&storyID=' + storyID);
|
|
var needNotReview = $('#needNotReview').attr('checked');
|
|
$.get(reviewerLink, function(data)
|
|
{
|
|
if(data)
|
|
{
|
|
$('#reviewer').replaceWith(data);
|
|
$('#reviewer_chosen').remove();
|
|
$('#reviewer').chosen();
|
|
if(needNotReview == 'checked') $('#reviewer').attr('disabled', 'disabled').trigger('chosen:updated');
|
|
}
|
|
});
|
|
}
|
|
</script>
|