Don't show delivery note option when emailing

This commit is contained in:
Hillel Coren 2023-11-12 11:40:52 +02:00
parent 6f743974ce
commit 59095a1c9d
1 changed files with 11 additions and 10 deletions

View File

@ -262,18 +262,19 @@ class _InvoicePdfViewState extends State<InvoicePdfView> {
: null,
body: Column(
children: [
Material(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 8),
child: Row(
children: [
if (supportsDesignTemplates()) designPicker,
activityPicker,
if (invoice.isInvoice && _activityId == null) deliveryNote,
],
if (widget.showAppBar)
Material(
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 8),
child: Row(
children: [
if (supportsDesignTemplates()) designPicker,
activityPicker,
if (invoice.isInvoice && _activityId == null) deliveryNote,
],
),
),
),
),
Expanded(
child: _isLoading || _response == null
? LoadingIndicator()