Don't show delivery note option when emailing
This commit is contained in:
parent
6f743974ce
commit
59095a1c9d
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in New Issue