3824 |
04 Apr 16 |
nicklas |
var MarkCompleted = function() |
3824 |
04 Apr 16 |
nicklas |
2 |
{ |
3824 |
04 Apr 16 |
nicklas |
var mark = {}; |
3824 |
04 Apr 16 |
nicklas |
var debug = 0; |
3824 |
04 Apr 16 |
nicklas |
5 |
|
3824 |
04 Apr 16 |
nicklas |
// Page initialization |
3824 |
04 Apr 16 |
nicklas |
mark.initPage = function() |
3824 |
04 Apr 16 |
nicklas |
8 |
{ |
3824 |
04 Apr 16 |
nicklas |
Events.addEventHandler('completedDate', 'blur', Wizard.validateDate); |
3824 |
04 Apr 16 |
nicklas |
10 |
|
3824 |
04 Apr 16 |
nicklas |
Buttons.addClickHandler('close', App.closeWindow); |
3824 |
04 Apr 16 |
nicklas |
Buttons.addClickHandler('btnOk', mark.markCompleted); |
3824 |
04 Apr 16 |
nicklas |
13 |
} |
3824 |
04 Apr 16 |
nicklas |
14 |
|
3824 |
04 Apr 16 |
nicklas |
mark.markCompleted = function() |
3824 |
04 Apr 16 |
nicklas |
16 |
{ |
3824 |
04 Apr 16 |
nicklas |
var frm = document.forms['options']; |
3824 |
04 Apr 16 |
nicklas |
if (!Wizard.isValid('completedDate')) |
3824 |
04 Apr 16 |
nicklas |
19 |
{ |
3826 |
05 Apr 16 |
nicklas |
Forms.showNotification('completedDate', frm.completedDate.value == '' ? 'Please specify a date' : 'Not a valid date'); |
3824 |
04 Apr 16 |
nicklas |
return; |
3824 |
04 Apr 16 |
nicklas |
22 |
} |
4993 |
02 Oct 18 |
nicklas |
var acceptDoNotUse = Doc.element('acceptDoNotUse'); |
4993 |
02 Oct 18 |
nicklas |
if (acceptDoNotUse && !acceptDoNotUse.checked) |
4993 |
02 Oct 18 |
nicklas |
25 |
{ |
4993 |
02 Oct 18 |
nicklas |
Forms.showNotification('acceptDoNotUse', 'Please verify that DoNotUse items should be marked as completed'); |
4993 |
02 Oct 18 |
nicklas |
return; |
4993 |
02 Oct 18 |
nicklas |
28 |
} |
3824 |
04 Apr 16 |
nicklas |
29 |
|
3824 |
04 Apr 16 |
nicklas |
var options = {}; |
3824 |
04 Apr 16 |
nicklas |
options.completedDate = frm.completedDate.value; |
3824 |
04 Apr 16 |
nicklas |
32 |
|
3824 |
04 Apr 16 |
nicklas |
window.opener.YellowLabel.markAsCompleted(null, options); |
3824 |
04 Apr 16 |
nicklas |
App.closeWindow(); |
3824 |
04 Apr 16 |
nicklas |
35 |
} |
3824 |
04 Apr 16 |
nicklas |
36 |
|
3824 |
04 Apr 16 |
nicklas |
37 |
|
3824 |
04 Apr 16 |
nicklas |
return mark; |
3824 |
04 Apr 16 |
nicklas |
39 |
}(); |
3824 |
04 Apr 16 |
nicklas |
40 |
|
3824 |
04 Apr 16 |
nicklas |
Doc.onLoad(MarkCompleted.initPage); |
3824 |
04 Apr 16 |
nicklas |
42 |
|