mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
Paketmarke bugfix versandart send no email
This commit is contained in:
parent
bba2f6e56f
commit
4f8e5958ef
@ -18,7 +18,7 @@ abstract class Versanddienstleister
|
||||
protected int $projectId;
|
||||
protected ?int $labelPrinterId;
|
||||
protected ?int $documentPrinterId;
|
||||
protected bool $shippingMail;
|
||||
protected int $shippingMail;
|
||||
protected ?int $businessLetterTemplateId;
|
||||
protected ?object $settings;
|
||||
|
||||
@ -454,6 +454,17 @@ abstract class Versanddienstleister
|
||||
$this->app->Tpl->addMessage('error', 'Länderliste ist leer. Siehe Einstellungen -> Länderliste.', false, 'PAGE');
|
||||
}
|
||||
|
||||
switch ($this->shippingMail) {
|
||||
case -1:
|
||||
$address['email'] = '';
|
||||
break;
|
||||
case 1:
|
||||
// User text template (not implemented)
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
$json['form'] = $address;
|
||||
$json['countries'] = $countries;
|
||||
$json['products'] = $products;
|
||||
@ -469,6 +480,7 @@ abstract class Versanddienstleister
|
||||
$json['form']['services'] = [
|
||||
Product::SERVICE_PREMIUM => false
|
||||
];
|
||||
|
||||
$this->app->Tpl->Set('JSON', json_encode($json));
|
||||
$this->app->Tpl->Set('CARRIERNAME', $this->GetName());
|
||||
$this->app->Tpl->Parse($target, 'createshipment.tpl');
|
||||
|
Loading…
Reference in New Issue
Block a user