Compare commits
No commits in common. "30bcfbde5a2009cfb3358d168ace593bee25abd3" and "c8edef5beb5e4334831704a2ba0a694693492d01" have entirely different histories.
30bcfbde5a
...
c8edef5beb
@ -149,7 +149,7 @@
|
||||
}
|
||||
if (this.getField("pa-end-date").value != "JJJJ-MM") {
|
||||
var endDate = new Date(this.getField("pa-end-date").value);
|
||||
if (date > endDate) {
|
||||
if (date >= endDate) {
|
||||
app.alert("Das Startdatum muss vor dem Enddatum liegen.");
|
||||
event.rc = false;
|
||||
}
|
||||
@ -169,7 +169,7 @@
|
||||
}
|
||||
if (this.getField("pa-start-date").value != "JJJJ-MM") {
|
||||
var startDate = new Date(this.getField("pa-start-date").value);
|
||||
if (startDate > date) {
|
||||
if (startDate >= date) {
|
||||
app.alert("Das Enddatum muss nach dem Startdatum liegen.");
|
||||
event.rc = false;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user