Move workflow to free section
This commit is contained in:
parent
130f560349
commit
fa053d36b7
|
|
@ -410,7 +410,6 @@ const List<String> kAdvancedSettings = [
|
||||||
kSettingsGeneratedNumbers,
|
kSettingsGeneratedNumbers,
|
||||||
kSettingsInvoiceDesign,
|
kSettingsInvoiceDesign,
|
||||||
kSettingsTemplatesAndReminders,
|
kSettingsTemplatesAndReminders,
|
||||||
kSettingsWorkflowSettings,
|
|
||||||
kSettingsSubscriptions,
|
kSettingsSubscriptions,
|
||||||
kSettingsUserManagement,
|
kSettingsUserManagement,
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -140,6 +140,10 @@ class _SettingsListState extends State<SettingsList> {
|
||||||
section: kSettingsExpenses,
|
section: kSettingsExpenses,
|
||||||
viewModel: widget.viewModel,
|
viewModel: widget.viewModel,
|
||||||
),
|
),
|
||||||
|
SettingsListTile(
|
||||||
|
section: kSettingsWorkflowSettings,
|
||||||
|
viewModel: widget.viewModel,
|
||||||
|
),
|
||||||
// TODO Re-entable
|
// TODO Re-entable
|
||||||
/*
|
/*
|
||||||
if (showAll)
|
if (showAll)
|
||||||
|
|
@ -205,10 +209,6 @@ class _SettingsListState extends State<SettingsList> {
|
||||||
section: kSettingsSubscriptions,
|
section: kSettingsSubscriptions,
|
||||||
viewModel: widget.viewModel,
|
viewModel: widget.viewModel,
|
||||||
),
|
),
|
||||||
SettingsListTile(
|
|
||||||
section: kSettingsWorkflowSettings,
|
|
||||||
viewModel: widget.viewModel,
|
|
||||||
),
|
|
||||||
/*
|
/*
|
||||||
if (showAll)
|
if (showAll)
|
||||||
SettingsListTile(
|
SettingsListTile(
|
||||||
|
|
@ -417,6 +417,16 @@ class SettingsSearch extends StatelessWidget {
|
||||||
'expense_categories',
|
'expense_categories',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
|
kSettingsWorkflowSettings: [
|
||||||
|
[
|
||||||
|
'auto_email_invoice',
|
||||||
|
'auto_archive_invoice',
|
||||||
|
'lock_invoices',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'auto_convert',
|
||||||
|
],
|
||||||
|
],
|
||||||
kSettingsImportExport: [
|
kSettingsImportExport: [
|
||||||
[
|
[
|
||||||
'import',
|
'import',
|
||||||
|
|
@ -546,16 +556,6 @@ class SettingsSearch extends StatelessWidget {
|
||||||
'subscriptions',
|
'subscriptions',
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
kSettingsWorkflowSettings: [
|
|
||||||
[
|
|
||||||
'auto_email_invoice',
|
|
||||||
'auto_archive_invoice',
|
|
||||||
'lock_invoices',
|
|
||||||
],
|
|
||||||
[
|
|
||||||
'auto_convert',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
kSettingsUserManagement: [
|
kSettingsUserManagement: [
|
||||||
[
|
[
|
||||||
'users',
|
'users',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue