Search found 58 matches

by cyrotek
06 Aug 2019, 15:23
Forum: TYPO3 extension
Topic: Setup own Cronjob within Aimeos
Replies: 7
Views: 2533

Re: Setup own Cronjob within Aimeos

Okay, it's loaded and executed, however, going by the linked documentation (https://aimeos.org/docs/Developers/Libr ... y_provider), it throws an error...

"Undefined class constant 'PARTS_ALL' "
by cyrotek
06 Aug 2019, 08:21
Forum: TYPO3 extension
Topic: Setup own Cronjob within Aimeos
Replies: 7
Views: 2533

Re: Setup own Cronjob within Aimeos

Thanks for the hint, now is there a chance to call an url to process the cronjob manualy?
by cyrotek
05 Aug 2019, 09:55
Forum: TYPO3 extension
Topic: Setup own Cronjob within Aimeos
Replies: 7
Views: 2533

Re: Setup own Cronjob within Aimeos

Is there a way to "manualy" run the cronjob so i can bug track it easier, like an url to call upon? EDIT: Is there also a flag or something gonna be set so the system knows the order was processed or will it loop through all orders period and its upon me to check if the order was processed...
by cyrotek
01 Aug 2019, 13:06
Forum: TYPO3 extension
Topic: Add custom "Option" to Coupon - how to retrieve in checkout?
Replies: 16
Views: 4944

Re: Add custom "Option" to Coupon - how to retrieve in checkout?

In which context is that supposed to work?

I retrieve the Coupon with

Code: Select all

$coupons = $this->summaryBasket->getCoupons();
and loop through them with foreach, your code throws an exception?
by cyrotek
01 Aug 2019, 07:19
Forum: TYPO3 extension
Topic: Add custom "Option" to Coupon - how to retrieve in checkout?
Replies: 16
Views: 4944

Re: Add custom "Option" to Coupon - how to retrieve in checkout?

Thats the whole point of that option, we use moodle as elearning tool and there is a rest api we use to pass the course on so if i use the options, i'll just add another course with the api.

So, how would i get the options?
by cyrotek
31 Jul 2019, 11:46
Forum: TYPO3 extension
Topic: Add custom "Option" to Coupon - how to retrieve in checkout?
Replies: 16
Views: 4944

Re: Add custom "Option" to Coupon - how to retrieve in checkout?

Why cant I just hijack the Options and add my own? Thats there and should be used somewhere, I just need to know which method loads the options so i can load it and access it.
by cyrotek
30 Jul 2019, 12:39
Forum: TYPO3 extension
Topic: Add custom "Option" to Coupon - how to retrieve in checkout?
Replies: 16
Views: 4944

Re: Add custom "Option" to Coupon - how to retrieve in checkout?

Still, there gotta be a way to access the coupon options... Instead of having to add each and every course, a coupon and what not, i would still prefer to simply add an option to a coupon that holds the courses associated.

Whats the way to achieve that?
by cyrotek
30 Jul 2019, 08:40
Forum: TYPO3 extension
Topic: Add custom "Option" to Coupon - how to retrieve in checkout?
Replies: 16
Views: 4944

Re: Add custom "Option" to Coupon - how to retrieve in checkout?

Can I make the present dependend on the coupon that is added? Cause it'll have various courses in the near future that will be gifted that way, hence i considered and still consider the Coupon Option the easiest and most flexible solution...
by cyrotek
30 Jul 2019, 07:23
Forum: TYPO3 extension
Topic: Add custom "Option" to Coupon - how to retrieve in checkout?
Replies: 16
Views: 4944

Re: Add custom "Option" to Coupon - how to retrieve in checkout?

Usually a good way, however, the course is not purchasable or a product at all, its one course just made for a specific range of customer.
by cyrotek
29 Jul 2019, 12:12
Forum: TYPO3 extension
Topic: Add custom "Option" to Coupon - how to retrieve in checkout?
Replies: 16
Views: 4944

Add custom "Option" to Coupon - how to retrieve in checkout?

Hello, for a customer we have setup the shop to buy online courses, now he wants to define bonus courses that one will get if he uses a certain coupon. I figured I'd just add an option like "addCourse" to the coupon and store the id of the course, but how do i retrieve that option in the c...