Skip to content
Code-Schnipsel Gruppen Projekte
Commit 95409b00 erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

feat: shipping address select at the order

Übergeordneter 54059b39
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -9,4 +9,8 @@
<event on="onQuiqqerPaymentCanUsedInOrder"
fire="\QUI\ERP\Shipping\EventHandler::onQuiqqerPaymentCanUsedInOrder"
/>
<event on="onQuiqqer::order::orderProcessCustomerDataEnd"
fire="\QUI\ERP\Shipping\EventHandler::onOrderProcessCustomerDataEnd"
/>
</events>
\ No newline at end of file
......@@ -227,7 +227,7 @@
<locale name="shipping.settings.deactivated">
<de><![CDATA[Versand deaktivieren]]></de>
<en><![CDATA[Deactivated shipping]]></en>
<en><![CDATA[Deactivate shipping]]></en>
</locale>
<locale name="shipping.settings.deactivated.description">
<de><![CDATA[
......
......@@ -148,4 +148,23 @@ public static function onQuiqqerPaymentCanUsedInOrder(
QUI::getLocale()->get('This Payment can not be used, because of the shipping rules')
);
}
/**
* @param \Quiqqer\Engine\Collector $Collector
* @param $User
* @param $Order
*/
public static function onOrderProcessCustomerDataEnd(
\Quiqqer\Engine\Collector $Collector,
$User,
$Address,
$Order
) {
$Control = new QUI\ERP\Shipping\Order\ShippingAddress([
'User' => $User,
'Order' => $Order
]);
$Collector->append($Control->create());
}
}
.quiqqer-shipping-address {
display: block;
clear: both;
float: left;
margin-top: 20px;
width: 100%;
}
.quiqqer-shipping-address [name="shipping-address-type"] {
width: 100%;
}
.quiqqer-shipping-address .shipping-address-edit {
float: right;
}
\ No newline at end of file
<h2>Versandadresse</h2>
<label>
<select name="shipping-address-type">
<option value="1">Gleiche Adresse wie Rechnungsadresse</option>
{foreach $addressList as $Address}
<option value="{$Address->getId()}">
{$Address->getText()}
</option>
{/foreach}
</select>
</label>
<a href="{$profileLink}" class="button btn shipping-address-edit">
Lieferadressen verwalten
</a>
\ No newline at end of file
<?php
/**
* This file contains QUI\ERP\Shipping\Order\ShippingAddress
*/
namespace QUI\ERP\Shipping\Order;
use QUI;
/**
* Class Shipping
*
* @package QUI\ERP\Order\Controls
*/
class ShippingAddress extends QUI\Control
{
/**
* Shipping constructor.
*
* @param array $attributes
*/
public function __construct($attributes = [])
{
parent::__construct($attributes);
$this->addCSSFile(\dirname(__FILE__).'/ShippingAddress.css');
$this->addCSSClass('quiqqer-shipping-address');
}
/**
* @return string
*/
public function getBody()
{
try {
$Engine = QUI::getTemplateManager()->getEngine();
} catch (QUI\Exception $Exception) {
return '';
}
/* @var $User QUI\Users\User */
$User = $this->getAttribute('User');
if (!$User) {
$User = QUI::getUserBySession();
}
$addressList = $User->getAddressList();
$profileLink = '';
$Engine->assign([
'addressList' => $addressList,
'profileLink' => $profileLink
]);
return $Engine->fetch(\dirname(__FILE__).'/ShippingAddress.html');
}
}
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren