Search found 13 matches

by Kevin
21 Mar 2018, 08:02
Forum: Laravel package
Topic: Safe payment with Aimeos + Stripe
Replies: 3
Views: 2217

Safe payment with Aimeos + Stripe

Hi all, I now have a stripe integration in the Aimeos shop where the user needs to input his card name, card number, valid date and CSV code. After the user has entered this info and submits, the payment is done. This is not a save way of doing payments since some banks just don't allow this way of ...
by Kevin
15 Feb 2018, 14:43
Forum: Laravel package
Topic: Aimeos manual order creation (webhook Stripe)
Replies: 6
Views: 2870

Re: Aimeos manual order creation (webhook Stripe)

Hi! Everything is working fine, except the mailing is send in English... Not in the language defined in the base item. How can I use the language that was defined in the base? $context = app( '\Aimeos\Shop\Base\Context' )->get( ); $manager = \Aimeos\MShop\Factory::createManager( $context, 'order' );...
by Kevin
17 Jan 2018, 15:43
Forum: Laravel package
Topic: PercentRebate to all products
Replies: 1
Views: 1028

PercentRebate to all products

Hi,

I want to add a percenRebate coupon to all products.
But it seems like when I add multiple times "percentrebate.productcode", only one is saved.

Can anyone advise me on the settings?

K.
by Kevin
28 Dec 2017, 09:00
Forum: Laravel package
Topic: Translate card errors
Replies: 1
Views: 957

Translate card errors

Hi,

How is it possible to translate errors when validating the card info in the checkout. Errors like:

Card has expired
Your card's security code is invalid.
...

Thanks !

K.
by Kevin
22 Dec 2017, 16:11
Forum: Laravel package
Topic: Aimeos manual order creation (webhook Stripe)
Replies: 6
Views: 2870

Re: Aimeos manual order creation (webhook Stripe)

Thank you for the feedback. Looking at your code I assume you attach an order to an already existing base item. That could work for me. But how do I use the code you provide into a standard Laravel controller? I defined context like: $context = app( '\Aimeos\Shop\Base\Context' )->get( false ); But I...
by Kevin
20 Dec 2017, 17:31
Forum: Laravel package
Topic: Object initiation
Replies: 3
Views: 1475

Re: Object initiation

Hi Aimeos,

Makes sense, thanks!
One questions, where (in what folder) do we need to write decorators?

K.
by Kevin
20 Dec 2017, 10:18
Forum: Laravel package
Topic: Aimeos manual order creation (webhook Stripe)
Replies: 6
Views: 2870

Aimeos manual order creation (webhook Stripe)

Hi all, I'm using Aimeos for single products and subscriptions. So far, everything is working pretty fine. The last step to finalize the platform is to receive a webhook from Stripe when the subscription auto-renews. When a subscription renews, I would like to add an order in the same way a normal o...
by Kevin
20 Dec 2017, 10:14
Forum: Laravel package
Topic: Company & VAT info not saved
Replies: 2
Views: 1210

Re: Company & VAT info not saved

Cool! Thanks.
by Kevin
19 Dec 2017, 17:12
Forum: Laravel package
Topic: Company & VAT info not saved
Replies: 2
Views: 1210

Company & VAT info not saved

Hi, In my checkout flow, I have a form containing the field company & vatid. I have those forms as optional in my config: 'optional' => ['order.base.address.company', 'order.base.address.vatid', 'order.base.address.telephone'], When going trough the checkout, company & vatid are not saved......
by Kevin
11 Dec 2017, 09:26
Forum: Laravel package
Topic: Default status "delivery"
Replies: 1
Views: 1033

Default status "delivery"

Hi, How do I change the default delivery status? By default this is set to -1 in the file /Applications/MAMP/htdocs/snackup/vendor/aimeos/aimeos-core/lib/mshoplib/src/MShop/Order/Item /** * Unfinished delivery. * This is the default status after creating an order and this status * should be also use...