Files
EasySoft-ZenTaoPMS/module/task/js/recordestimate.js
T
王怡栋 16d1f76ca0 Merge branch 'sprint/cyy_optimize' into 'master'
* Optimize record estimate style.

See merge request easycorp/zentaopms!5499
2022-09-23 02:04:15 +00:00

60 lines
1.6 KiB
JavaScript

$(function()
{
/* Hide creation logs when displaying team logs. */
$('#linearefforts .tabs ul > li').click(function()
{
var tab = $(this).find('a').attr('href');
$('#recordForm').toggleClass('hidden', tab == '#legendAllEffort');
});
$('.form-date').datetimepicker('setEndDate', today);
$("#recordForm #submit").click(function(e, confirmed)
{
if(confirmed) return true;
var $this = $(this);
$('#recordForm .left').each(function()
{
if($(this).val() !== '' && !$(this).prop('readonly')) left = $(this).val();
});
if(typeof(left) != 'undefined' && left == '0')
{
e.preventDefault();
bootbox.confirm(confirmRecord, function(result)
{
if(!result) $('#submit').attr("disabled", false);
if(result) $this.trigger('click', true);
});
}
});
$('#recordForm .showinonlybody').each(function()
{
$(this).click(function()
{
var hasRecord = false;
$('#recordForm').find('input[name^="consumed"], input[name^="left"], textarea[name^="work"]').each(function()
{
if($(this).val() !== '')
{
hasRecord = true;
return false;
}
});
if(hasRecord)
{
alert(noticeSaveRecord);
return false;
}
});
});
$('#recordForm .date-group .input-group-addon').on('click', function()
{
$(this).prev().datetimepicker('show');
});
})