Email templates
This commit is contained in:
parent
a085f6f368
commit
bf24d0c7d1
|
|
@ -105,9 +105,6 @@ abstract class AppState implements Built<AppState, AppStateBuilder> {
|
|||
String toString() {
|
||||
//return 'Is Loading: ${this.isLoading}, Invoice: ${this.invoiceUIState.selected}';
|
||||
//return 'Date Formats: ${staticState.dateFormatMap}';
|
||||
if (selectedCompany != null) {
|
||||
//return 'Template: ${selectedCompany.emailBodyInvoice}';
|
||||
}
|
||||
return 'Route: ${uiState.currentRoute}, Invoice Update: ${invoiceState.lastUpdated}';
|
||||
}
|
||||
}
|
||||
|
|
@ -74,5 +74,8 @@ String processTemplate(
|
|||
.replaceAll('\$${gatewayType}Button', sampleButton);
|
||||
});
|
||||
|
||||
print('TEMPLATE: $template');
|
||||
print('FOOTER: ${company.emailFooter}');
|
||||
|
||||
return template;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue