diff --git a/Layout/default/Order/Index.php b/Layout/default/Order/Index.php index 8f31377bd..500bf6037 100644 --- a/Layout/default/Order/Index.php +++ b/Layout/default/Order/Index.php @@ -208,6 +208,7 @@
@@ -255,6 +256,107 @@ + +| Firma | +=$order->owner->company?> | +
|---|---|
| Vorname | +=$order->owner->firstname?> | +
| Nachname | +=$order->owner->lastname?> | +
| Straße | +=$order->owner->street?> | +
| PLZ | +=$order->owner->zip?> | +
| Ort | +=$order->owner->city?> | +
| Land | +=$order->owner->country?> | +
| Telefon | +=$order->owner->phone?> | +
| Mobiltelefon | +=$order->owner->mobile?> | +
| Fax | +=$order->owner->fax?> | +
| =$order->owner->email?> | +
| Firma | +=$order->billingaddress->company?> | +
|---|---|
| Vorname | +=$order->billingaddress->firstname?> | +
| Nachname | +=$order->billingaddress->lastname?> | +
| Straße | +=$order->billingaddress->street?> | +
| PLZ | +=$order->billingaddress->zip?> | +
| Ort | +=$order->billingaddress->city?> | +
| Land | +=$order->billingaddress->country?> | +
| Telefon | +=$order->billingaddress->phone?> | +
| Mobiltelefon | +=$order->billingaddress->mobile?> | +
| Fax | +=$order->billingaddress->fax?> | +
| =$order->billingaddress->email?> | +
| Pos | Anzahl | @@ -542,6 +644,7 @@ @@ -588,6 +691,107 @@ + + +
|---|
| Firma | +=$order->owner->company?> | +
|---|---|
| Vorname | +=$order->owner->firstname?> | +
| Nachname | +=$order->owner->lastname?> | +
| Straße | +=$order->owner->street?> | +
| PLZ | +=$order->owner->zip?> | +
| Ort | +=$order->owner->city?> | +
| Land | +=$order->owner->country?> | +
| Telefon | +=$order->owner->phone?> | +
| Mobiltelefon | +=$order->owner->mobile?> | +
| Fax | +=$order->owner->fax?> | +
| =$order->owner->email?> | +
| Firma | +=$order->billingaddress->company?> | +
|---|---|
| Vorname | +=$order->billingaddress->firstname?> | +
| Nachname | +=$order->billingaddress->lastname?> | +
| Straße | +=$order->billingaddress->street?> | +
| PLZ | +=$order->billingaddress->zip?> | +
| Ort | +=$order->billingaddress->city?> | +
| Land | +=$order->billingaddress->country?> | +
| Telefon | +=$order->billingaddress->phone?> | +
| Mobiltelefon | +=$order->billingaddress->mobile?> | +
| Fax | +=$order->billingaddress->fax?> | +
| =$order->billingaddress->email?> | +
| Pos | Anzahl | diff --git a/public/assets/css/thetool.css b/public/assets/css/thetool.css index 666a727e5..9eff74e00 100644 --- a/public/assets/css/thetool.css +++ b/public/assets/css/thetool.css @@ -373,14 +373,14 @@ td.controls { background-color: #f0fff0; } -.top-no-border td, -.top-no-border th { +.top-no-border > td, +.top-no-border > th { border-top: none; padding-top: 2px; } -.bottom-no-border td, -.bottom-no-border th { +.bottom-no-border > td, +.bottom-no-border > th { border-bottom: none; padding-bottom: 2px; }
|---|