42 lines
1014 B
JavaScript
42 lines
1014 B
JavaScript
$(function()
|
|
{
|
|
$('#program').change(function()
|
|
{
|
|
var programID = $(this).val();
|
|
if(!canChangeProgram || singleLinkProjects.length !== 0 || multipleLinkProjects.length !== 0)
|
|
{
|
|
$('#changeProgram').modal({show: true});
|
|
if(!canChangeProgram)
|
|
{
|
|
$('#program').val(oldProgramID);
|
|
$('#program').trigger("chosen:updated");
|
|
}
|
|
}
|
|
|
|
$.get(createLink('product', 'ajaxGetLine', 'programID=' + programID), function(data)
|
|
{
|
|
$('#line_chosen').remove();
|
|
$('#line').replaceWith(data);
|
|
$('#line').chosen();
|
|
})
|
|
})
|
|
});
|
|
|
|
/**
|
|
* Set projects of change program.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function setChangeProjects()
|
|
{
|
|
var projects = ',';
|
|
$("input[name^='projects']:checked").each(function()
|
|
{
|
|
projects += $(this).val() + ',';
|
|
$('#changeProjects').val(projects);
|
|
});
|
|
|
|
$('#changeProgram').modal('hide');
|
|
}
|