Files
EasySoft-ZenTaoPMS/module/task/js/recordestimate.js
T
2022-09-22 15:14:22 +08:00

52 lines
1.4 KiB
JavaScript

$(function()
{
$('.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 .input-group-addon').on('click', function()
{
$(this).prev().datetimepicker('show');
});
})