Search found 89 matches

by mantik
05 Jan 2018, 09:40
Forum: TYPO3 extension
Topic: no Company output in the checkout-summary
Replies: 12
Views: 4203

Re: no Company output in the checkout-summary

thnx. that works
by mantik
05 Jan 2018, 09:02
Forum: TYPO3 extension
Topic: Extend Order and add a new Field to JQadm
Replies: 23
Views: 12343

Re: Extend Order and add a new Field to JQadm

- i can open an order and see the values of order.base.myid BUT if i change something after reload the old values stays. I would have a look into the JQAdm template if your new propery is passed correctly as "order.base.myid" in frontend: as soon i put something in the basket (why basket ...
by mantik
04 Jan 2018, 10:55
Forum: TYPO3 extension
Topic: Extend Order and add a new Field to JQadm
Replies: 23
Views: 12343

Re: Extend Order and add a new Field to JQadm

its not about the customer manager i extend the oder base manager. and i do all that what you write. here is my whole code so you can check it typo3conf/ext/my_shop/Resources/Private/Extensions/my_shop/lib/custom/config/mshop/order.php <?php return array( 'manager' => array( 'base' => array( 'name'=...
by mantik
03 Jan 2018, 12:50
Forum: TYPO3 extension
Topic: no Company output in the checkout-summary
Replies: 12
Views: 4203

Re: no Company output in the checkout-summary

i do this: typo3conf/ext/my_shop/Resources/Private/Extensions/my_shop/client/html/src/Client/Html/Checkout/Standard/Address/Billing/Myaddress.php namespace Aimeos\Client\Html\Checkout\Standard\Address\Delivery; /** * Default implementation of checkout billing address HTML client. * * @package Client...
by mantik
03 Jan 2018, 12:24
Forum: TYPO3 extension
Topic: Extend Order and add a new Field to JQadm
Replies: 23
Views: 12343

Re: Extend Order and add a new Field to JQadm

ok i've solve it by take the second script and add the whole searchConfig-Array from the whole class. Now just the problem with the saving. i can read a value from the database but not update... and i got a new problem. since i activate my own order.bas.manager my basket does not work anymore. Call ...
by mantik
02 Jan 2018, 08:41
Forum: TYPO3 extension
Topic: Extend Order and add a new Field to JQadm
Replies: 23
Views: 12343

Re: Extend Order and add a new Field to JQadm

Hmm the name attribute i've earlier deleted for some tests but forgott to paste it back. Now the getter working. but the setter not... it dosent save (i just need to update because on create this field can be empty) and there is a problem with this method from your example: public function getSearch...
by mantik
01 Jan 2018, 15:48
Forum: TYPO3 extension
Topic: Extend Order and add a new Field to JQadm
Replies: 23
Views: 12343

Re: Extend Order and add a new Field to JQadm

...It dosent works... whatever i do.
Call to undefined method Aimeos\MShop\Order\Item\Base\Standard::getCrmid()
by mantik
22 Dec 2017, 08:39
Forum: TYPO3 extension
Topic: no Company output in the checkout-summary
Replies: 12
Views: 4203

Re: no Company output in the checkout-summary

how can i do that? same way like extend a manager?
by mantik
22 Dec 2017, 07:19
Forum: TYPO3 extension
Topic: Extend Order and add a new Field to JQadm
Replies: 23
Views: 12343

Re: Extend Order and add a new Field to JQadm

is there a working example? in the documentaion there are just what you must do but not how. for exmaple the constructor of my parents object looks like this: /** * Initializes the shopping cart. * * @param \Aimeos\MShop\Price\Item\Iface $price Default price of the basket (usually 0.00) * @param \Ai...
by mantik
21 Dec 2017, 11:14
Forum: TYPO3 extension
Topic: Extend Order and add a new Field to JQadm
Replies: 23
Views: 12343

Re: Extend Order and add a new Field to JQadm

i dont get the second point (extend item and manager) My Item <?php namespace Aimeos\MShop\Order\Item\Base; class Myorder extends Standard{ private $values; private $modified = false; public function __construct(){ parent::__construct(); } public function getCrmid(){ if( isset( $this->values['order....