Add activities
This commit is contained in:
parent
d43d4bad51
commit
7647f6eb06
|
|
@ -753,4 +753,8 @@ const String kActivityCancelledInvoice = '59';
|
|||
const String kActivityViewCredit = '60';
|
||||
const String kActivityUpdateClient = '61';
|
||||
const String kActivityUpdateVendor = '62';
|
||||
const String kActivityEmailReminder1 = '63';
|
||||
const String kActivityEmailReminder2 = '64';
|
||||
const String kActivityEmailReminder3 = '65';
|
||||
const String kActivityEmailReminderEndless = '66';
|
||||
|
||||
|
|
|
|||
|
|
@ -603,6 +603,10 @@ abstract class ActivityEntity
|
|||
kActivityMarkSentInvoice,
|
||||
kActivityReversedInvoice,
|
||||
kActivityCancelledInvoice,
|
||||
kActivityEmailReminder1,
|
||||
kActivityEmailReminder2,
|
||||
kActivityEmailReminder3,
|
||||
kActivityEmailReminderEndless,
|
||||
].contains(activityTypeId)) {
|
||||
return EntityType.invoice;
|
||||
} else if ([
|
||||
|
|
|
|||
|
|
@ -1333,6 +1333,13 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
|||
'activity_57': 'System failed to email invoice :invoice',
|
||||
'activity_58': ':user reversed invoice :invoice',
|
||||
'activity_59': ':user cancelled invoice :invoice',
|
||||
'activity_60': ':contact viewed quote :quote',
|
||||
'activity_61': ':user updated client :client',
|
||||
'activity_62': ':user updated vendor :vendor',
|
||||
'activity_63': ':user emailed first reminder for invoice :invoice to :contact',
|
||||
'activity_64': ':user emailed second reminder for invoice :invoice to :contact',
|
||||
'activity_65': ':user emailed third reminder for invoice :invoice to :contact',
|
||||
'activity_66': ':user emailed endless reminder for invoice :invoice to :contact',
|
||||
'one_time_password': 'One Time Password',
|
||||
'emailed_quote': 'Successfully emailed quote',
|
||||
'emailed_credit': 'Successfully emailed credit',
|
||||
|
|
|
|||
Loading…
Reference in New Issue