Search found 15 matches

by claude27
23 Jan 2025, 17:47
Forum: Help
Topic: How to transfer back money by PayPalExpress (not backend)?
Replies: 4
Views: 69

Re: How to transfer back money by PayPalExpress (not backend)?

PS: I have also now noticed that partial refunds do not work. PayPal Express always transfers the entire amount back. Is this perhaps a bug? (I have to ask my client if cancellation fees are needed)
by claude27
23 Jan 2025, 13:59
Forum: Help
Topic: How to transfer back money by PayPalExpress (not backend)?
Replies: 4
Views: 69

Re: How to transfer back money by PayPalExpress (not backend)?

Thank you very much! It works now :-) The only things now, which also happens when refunding by the backend: The customer is receiving again the original invoice in the email and in the attached pdf and not something like a credit note (in german: Gutschrift, e.g. with negative values). Have I perha...
by claude27
22 Jan 2025, 21:38
Forum: Help
Topic: How to transfer back money by PayPalExpress (not backend)?
Replies: 4
Views: 69

How to transfer back money by PayPalExpress (not backend)?

Hi, is performing refunds still only possible in the admin backend (see attached screenshot, transaction view) or is there in the meantime a way to process it via a php controller? I've created an user restricted area where frontend users can create and edit events which are synchronised with the ai...
by claude27
08 Nov 2024, 11:53
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 76921

Re: How can I update a list item like text content

Thank you very much @aimeos! That was the right clue. Now I was able to complete the update action. For anyone who needs an example, here is the source code of the function: /** * Action for updating an aimeos product * @param \Unterleitner\Sitepackage\Domain\Model\Event $event * * @return void */ p...
by claude27
07 Nov 2024, 11:45
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 76921

Re: How can I update a list item like text content

PS: I managed to overwrite (update) a modified text item of a product: $contentManager = MShop::create($context, 'text'); $refId = 744; // example Id $text = $contentManager->create()->setId($refId)->setContent($event->getDescription())->setType('name')->setLanguageId('de')->setLabel('name/de'); $co...
by claude27
06 Nov 2024, 10:42
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 76921

Re: How can I update a list item like text content

Thank you! Unfortunately I didn't take a step forward. $listItems or $product->getListItems (the item which should be loaded from the product which is saved in the database) is always empty. Could it be because $product is in my class of type Aimeos\MShop\Product\Item\Standard but the function expec...
by claude27
04 Nov 2024, 22:15
Forum: TYPO3 extension
Topic: How can I update a list item like text content
Replies: 6
Views: 76921

How can I update a list item like text content

Hi, How can I please update a list item like text, price or categories via a php controller? My goal is to create, modify and delete events by (TYPO3) frontendusers. Creating and Deleting is actually working. I managed to create functions in the controller class to create and delete products and a f...
by claude27
04 Nov 2024, 18:47
Forum: TYPO3 extension
Topic: adding stocklevel by PHP controller to new product
Replies: 2
Views: 42265

Re: adding stocklevel by PHP controller to new product

Thank you very much! That was the solution.
by claude27
01 Nov 2024, 10:35
Forum: TYPO3 extension
Topic: adding stocklevel by PHP controller to new product
Replies: 2
Views: 42265

adding stocklevel by PHP controller to new product

Hi, I've created a secured area where frontend users can add events (for which later places will be sold with aimeos). Now I want to synchronize it automatically with the Ameos shop, starting now with creating new aimeos product items by a controller. I managed it already partially (title, type and ...
by claude27
22 Oct 2024, 13:42
Forum: Help
Topic: How to order products which are not in stock
Replies: 2
Views: 22453

Re: How to order products which are not in stock

Thank you! It works now as expected.