Add recurring expense to activities
This commit is contained in:
parent
f30b0edd0e
commit
8f52b152a4
|
|
@ -810,6 +810,8 @@ abstract class ActivityEntity
|
||||||
activity = activity.replaceFirst(':task', task?.description ?? '');
|
activity = activity.replaceFirst(':task', task?.description ?? '');
|
||||||
activity = activity.replaceFirst(':expense', expense?.privateNotes ?? '');
|
activity = activity.replaceFirst(':expense', expense?.privateNotes ?? '');
|
||||||
activity = activity.replaceFirst(':vendor', vendor?.name ?? '');
|
activity = activity.replaceFirst(':vendor', vendor?.name ?? '');
|
||||||
|
activity = activity.replaceFirst(
|
||||||
|
':recurring_expense', vendor?.name ?? ''); // TODO implement
|
||||||
activity = activity.replaceAll(' ', ' ');
|
activity = activity.replaceAll(' ', ' ');
|
||||||
|
|
||||||
return activity;
|
return activity;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue