$(function() { $('#copyProjects a').click(function(){setCopyProject($(this).data('id')); $('#copyProjectModal').modal('hide')}); $('#longTime').change(function() { if($(this).prop('checked')) { $('#end').val('').attr('disabled', 'disabled'); $('#days').val(''); } else { $('#end').removeAttr('disabled'); } }); if(typeof(currentPlanID) == 'undefined') { $('#productsBox select[id^="products"]').each(function() { var branchID = 0; if($(this).closest('.input-group').find('select[id^="branch"]').size() > 0) { var branchID = $(this).closest('.input-group').find('select[id^="branch"]').val(); } loadPlans($(this), branchID); }); } }); function setCopyProject(copyProjectID) { location.href = createLink('program', 'PRJCreate', 'model=' + model + '&programID=' + programID + '&from=' + from + '©ProjectID=' + copyProjectID); } function setAclList(programID) { if(programID != 0) { $('.aclBox').html($('#PGMAcl').html()); } else { $('.aclBox').html($('#PRJAcl').html()); } } /** * Load branches. * * @param int $product * @access public * @return void */ function loadBranches(product) { $('#productsBox select').each(function() { var $product = $(product); if($product.val() != 0 && $product.val() == $(this).val() && $product.attr('id') != $(this).attr('id')) { alert(errorSameProducts); $product.val(0); $product.trigger("chosen:updated"); return false; } }); if($('#productsBox .input-group:last select:first').val() != 0) { var length = $('#productsBox .input-group').size(); $('#productsBox .row').append('
' + $('#productsBox .col-sm-4:last').html() + '
'); if($('#productsBox .input-group:last select').size() >= 2) $('#productsBox .input-group:last select:last').remove(); $('#productsBox .input-group:last .chosen-container').remove(); $('#productsBox .input-group:last select:first').attr('name', 'products[' + length + ']').attr('id', 'products' + length); $('#productsBox .input-group:last .chosen').chosen(); adjustProductBoxMargin(); } var $inputgroup = $(product).closest('.input-group'); if($inputgroup.find('select').size() >= 2) $inputgroup.removeClass('has-branch').find('select:last').remove(); if($inputgroup.find('.chosen-container').size() >= 2) $inputgroup.find('.chosen-container:last').remove(); var index = $inputgroup.find('select:first').attr('id').replace('products' , ''); $.get(createLink('branch', 'ajaxGetBranches', "productID=" + $(product).val()), function(data) { if(data) { $inputgroup.addClass('has-branch').append(data); $inputgroup.find('select:last').attr('name', 'branch[' + index + ']').attr('id', 'branch' + index).attr('onchange', "loadPlans('#products" + index + "', this.value)").chosen(); } }); loadPlans(product); } function loadPlans(product, branchID) { if($('#plansBox').size() == 0) return false; var productID = $(product).val(); var branchID = typeof(branchID) == 'undefined' ? 0 : branchID; var index = $(product).attr('id').replace('products', ''); if(productID != 0) { if(typeof(planID) == 'undefined') planID = 0; planID = $("select#plans" + productID).val() != '' ? $("select#plans" + productID).val() : planID; $.get(createLink('product', 'ajaxGetPlans', "productID=" + productID + '&branch=' + branchID + '&planID=' + planID + '&fieldID&needCreate=&expired=' + ((config.currentMethod == 'create' || config.currentMethod == 'edit') ? 'unexpired' : '')), function(data) { if(data) { if($("div#plan" + index).size() == 0) $("#plansBox .row").append('
'); $("div#plan" + index).html(data).find('select').attr('name', 'plans[' + productID + ']').attr('id', 'plans' + productID).chosen(); adjustPlanBoxMargin(); } }); } } function adjustProductBoxMargin() { var productRows = Math.ceil($('#productsBox > .row > .col-sm-4').length / 3); if(productRows > 1) { for(i = 1; i <= productRows - 1; i++) { $('#productsBox .col-sm-4:lt(' + (i * 3) + ')').css('margin-bottom', '10px'); } } } function adjustPlanBoxMargin() { var planRows = Math.ceil($('#plansBox > .row > .col-sm-4').length / 3); if(planRows > 1) { for(j = 1; j <= planRows - 1; j++) { $('#plansBox .col-sm-4:lt(' + (j * 3) + ')').css('margin-bottom', '10px'); } } }