Merge branch 'main' into module/stock
This commit is contained in:
@@ -246,11 +246,13 @@ public class Task implements Mappable {
|
||||
|
||||
private int totalPrio() {
|
||||
if (status >= Status.COMPLETE.code()) return 0; // task is done, do no longer highlight
|
||||
if (dueDate == null) return priority;
|
||||
var diff = (int) (dueDate.toEpochDay()-LocalDate.now().toEpochDay());
|
||||
if (diff <= 0) return priority + 100; // due date has passed
|
||||
if (diff < 100) return priority + 100 - diff; // due within the next 100 days
|
||||
return Math.min(100,priority);
|
||||
int total = priority;
|
||||
if (dueDate != null) {
|
||||
var diff = (int) (dueDate.toEpochDay()-LocalDate.now().toEpochDay());
|
||||
if (diff <= 0) total += 100; // due date has passed
|
||||
if (diff < 100) total += 100 - diff; // due within the next 100 days
|
||||
}
|
||||
return Math.min(100,total);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -61,5 +61,6 @@
|
||||
<label>
|
||||
{t('content')}
|
||||
<Markdown bind:value={content} simple={true} />
|
||||
<button type="submit">{t('save')}</button>
|
||||
</label>
|
||||
</form>
|
||||
Reference in New Issue
Block a user