diff --git a/lib/data/models/import_model.dart b/lib/data/models/import_model.dart index f87edc565..f62dabdc9 100644 --- a/lib/data/models/import_model.dart +++ b/lib/data/models/import_model.dart @@ -201,6 +201,14 @@ class ExportType extends EnumClass { static const ExportType products = _$products; static const ExportType tasks = _$tasks; static const ExportType profitloss = _$profitloss; + static const ExportType aged_receivable_detailed_report = + _$aged_receivable_detailed_report; + static const ExportType aged_receivable_summary_report = + _$aged_receivable_summary_report; + static const ExportType client_balance_report = _$client_balance_report; + static const ExportType client_sales_report = _$client_sales_report; + static const ExportType tax_summary_report = _$tax_summary_report; + static const ExportType user_sales_report = _$user_sales_report; static BuiltSet get values => _$exportValues; diff --git a/lib/data/models/import_model.g.dart b/lib/data/models/import_model.g.dart index 3e9c79afa..2085b103b 100644 --- a/lib/data/models/import_model.g.dart +++ b/lib/data/models/import_model.g.dart @@ -62,6 +62,17 @@ const ExportType _$payments = const ExportType._('payments'); const ExportType _$products = const ExportType._('products'); const ExportType _$tasks = const ExportType._('tasks'); const ExportType _$profitloss = const ExportType._('profitloss'); +const ExportType _$aged_receivable_detailed_report = + const ExportType._('aged_receivable_detailed_report'); +const ExportType _$aged_receivable_summary_report = + const ExportType._('aged_receivable_summary_report'); +const ExportType _$client_balance_report = + const ExportType._('client_balance_report'); +const ExportType _$client_sales_report = + const ExportType._('client_sales_report'); +const ExportType _$tax_summary_report = + const ExportType._('tax_summary_report'); +const ExportType _$user_sales_report = const ExportType._('user_sales_report'); ExportType _$exportValueOf(String name) { switch (name) { @@ -95,6 +106,18 @@ ExportType _$exportValueOf(String name) { return _$tasks; case 'profitloss': return _$profitloss; + case 'aged_receivable_detailed_report': + return _$aged_receivable_detailed_report; + case 'aged_receivable_summary_report': + return _$aged_receivable_summary_report; + case 'client_balance_report': + return _$client_balance_report; + case 'client_sales_report': + return _$client_sales_report; + case 'tax_summary_report': + return _$tax_summary_report; + case 'user_sales_report': + return _$user_sales_report; default: throw new ArgumentError(name); } @@ -117,6 +140,12 @@ final BuiltSet _$exportValues = _$products, _$tasks, _$profitloss, + _$aged_receivable_detailed_report, + _$aged_receivable_summary_report, + _$client_balance_report, + _$client_sales_report, + _$tax_summary_report, + _$user_sales_report, ]); Serializer _$preImportResponseSerializer = diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index b20bf58bc..6e824c41b 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -18,6 +18,12 @@ mixin LocalizationsProvider on LocaleCodeAware { static final Map> _localizedValues = { 'en': { // STARTER: lang key - do not remove comment + 'aged_receivable_detailed_report': 'Aged Receivable Detailed Report', + 'aged_receivable_summary_report': 'Aged Receivable Summary Report', + 'client_balance_report': 'Client Balance Report', + 'client_sales_report': 'Client Sales Report', + 'tax_summary_report': 'Tax Summary Report', + 'user_sales_report': 'User Sales Report', 'run_template': 'Run Template', 'task_extension_banner': 'Add the Chrome extension to manage your tasks', 'watch_video': 'Watch Video',