<script type="text/javascript">
cf.ready(function () {
cf.addEventHook(cf.EVENT_HOOKS.BEFORE_SUBMIT, function (next) {
var detailWidgetValue = cf.form.getFieldValue('_S_INT_LEAVE_DETAILED');
if (detailWidgetValue && detailWidgetValue.widgetValue) {
var widgetValue = detailWidgetValue.widgetValue;
var totalLeaveDays = 0;
for (var i = 0; i < widgetValue.length; i++) {
var item = widgetValue[i];
totalLeaveDays += Number(item['_S_INT_LEAVE_DAYS']) || 0;
}
if (totalLeaveDays >= 3) {
var payload = {
title: "温馨提示",
content: "请合理安排休假时间,提前做好工作交接",
confirmBtnTxt: '我知道了'
};
cf.call("alert", payload)
.then(() => {
next();
});
} else {
next();
}
}
});
});
</script>
