Merge branch 'master' of https://github.com/devcode-it/openstamanager
This commit is contained in:
commit
e963e85fd9
|
@ -23,22 +23,22 @@ exemptProjects: false
|
||||||
exemptMilestones: false
|
exemptMilestones: false
|
||||||
|
|
||||||
# Set to true to ignore issues with an assignee (defaults to false)
|
# Set to true to ignore issues with an assignee (defaults to false)
|
||||||
exemptAssignees: false
|
exemptAssignees: true
|
||||||
|
|
||||||
# Label to use when marking as stale
|
# Label to use when marking as stale
|
||||||
staleLabel: in chiusura
|
staleLabel: in chiusura
|
||||||
|
|
||||||
# Comment to post when marking as stale. Set to `false` to disable
|
# Comment to post when marking as stale. Set to `false` to disable
|
||||||
markComment: >
|
markComment: >
|
||||||
Issue chiusa automaticamente in assenza di attività.
|
Issue in chiusura fra 7 giorni per mancanza di attività.
|
||||||
|
|
||||||
# Comment to post when removing the stale label.
|
# Comment to post when removing the stale label.
|
||||||
# unmarkComment: >
|
# unmarkComment: >
|
||||||
# Your comment here.
|
# Your comment here.
|
||||||
|
|
||||||
# Comment to post when closing a stale Issue or Pull Request.
|
# Comment to post when closing a stale Issue or Pull Request.
|
||||||
# closeComment: >
|
closeComment: >
|
||||||
# Your comment here.
|
Issue chiusa per inattività.
|
||||||
|
|
||||||
# Limit the number of actions per hour, from 1-30. Default is 30
|
# Limit the number of actions per hour, from 1-30. Default is 30
|
||||||
limitPerRun: 30
|
limitPerRun: 30
|
||||||
|
|
|
@ -131,6 +131,9 @@ if ($record['can_delete']) {
|
||||||
$("#notifica_cliente").attr("disabled", false);
|
$("#notifica_cliente").attr("disabled", false);
|
||||||
$("#notifica_tecnico_sessione").attr("disabled", false);
|
$("#notifica_tecnico_sessione").attr("disabled", false);
|
||||||
$("#notifica_tecnico_assegnato").attr("disabled", false);
|
$("#notifica_tecnico_assegnato").attr("disabled", false);
|
||||||
|
$(".btn[for=notifica_cliente]").attr("disabled", false);
|
||||||
|
$(".btn[for=notifica_tecnico_sessione]").attr("disabled", false);
|
||||||
|
$(".btn[for=notifica_tecnico_assegnato]").attr("disabled", false);
|
||||||
}else{
|
}else{
|
||||||
$("#email").attr("required", false);
|
$("#email").attr("required", false);
|
||||||
$("#email").attr("disabled", true);
|
$("#email").attr("disabled", true);
|
||||||
|
@ -142,6 +145,9 @@ if ($record['can_delete']) {
|
||||||
$("#notifica_cliente").val([0]);
|
$("#notifica_cliente").val([0]);
|
||||||
$("#notifica_tecnico_sessione").val([0]);
|
$("#notifica_tecnico_sessione").val([0]);
|
||||||
$("#notifica_tecnico_assegnato").val([0]);
|
$("#notifica_tecnico_assegnato").val([0]);
|
||||||
|
$(".btn[for=notifica_cliente]").attr("disabled", true);
|
||||||
|
$(".btn[for=notifica_tecnico_sessione]").attr("disabled", true);
|
||||||
|
$(".btn[for=notifica_tecnico_assegnato]").attr("disabled", true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue