Search found 25 matches

by lockhart97
30 Aug 2024, 05:25
Forum: Laravel package
Topic: Change product custom atttribute value in basket
Replies: 2
Views: 735

Re: Change product custom atttribute value in basket

I have created a basket plugin to manage this. SO I can now update a specific custom attribute as required by my application. Thanks.
by lockhart97
26 Aug 2024, 04:17
Forum: Laravel package
Topic: Change product custom atttribute value in basket
Replies: 2
Views: 735

Change product custom atttribute value in basket

Laravel: 11.0 Aimeos: 2024.04 PHP: 8.2 Environment: Linux I have a custom attribute which I set to some value when adding product to cart. After the product is added to cart I am not able to update the value for that attribute. In documentation its mentioned that we can update only quantity of the p...
by lockhart97
18 Jun 2024, 13:39
Forum: Laravel package
Topic: Basket data in Payment Provider
Replies: 8
Views: 73462

Re: Basket data in Payment Provider

Thank you for your response.
by lockhart97
17 Jun 2024, 16:06
Forum: Laravel package
Topic: Basket data in Payment Provider
Replies: 8
Views: 73462

Re: Basket data in Payment Provider

Yes, this is exactly what I thought. However, implementing this would require changes to the core Aimeos codebase. If this solution is acceptable, I would like to submit a pull request to the Aimeos project.
by lockhart97
12 Jun 2024, 12:14
Forum: Laravel package
Topic: Basket data in Payment Provider
Replies: 8
Views: 73462

Re: Basket data in Payment Provider

I am using JsonAPI to place order by making post request to basket. While writing a payment provider, the $order object is "order/service" object and it does not have address. https://github.com/aimeos/ai-client-jsonapi/blob/7283865c3efe0335e7e3273ef2a4843e280ac253/src/Client/JsonApi/Order...
by lockhart97
12 Jun 2024, 12:04
Forum: Laravel package
Topic: Basket data in Payment Provider
Replies: 8
Views: 73462

Re: Basket data in Payment Provider

This does not work. It returns null.
by lockhart97
12 Jun 2024, 03:58
Forum: Laravel package
Topic: Basket data in Payment Provider
Replies: 8
Views: 73462

Re: Basket data in Payment Provider

I am using following method to access address in payment provider. Let me know if there is a better way public function process( \Aimeos\MShop\Order\Item\Iface $order, array $params = [] ): ?\Aimeos\MShop\Common\Helper\Form\Iface { // perform your actions $context = $this->context(); $orderId = $par...
by lockhart97
10 Jun 2024, 03:19
Forum: Laravel package
Topic: Basket data in Payment Provider
Replies: 8
Views: 73462

Basket data in Payment Provider

Laravel: 11.0 Aimeos: 2024.04 PHP: 8.2 Environment: Linux Hello, I am developing a Payment Service provider. I need customer data to capture the payment as per the Payment gateway that I am using. The process method for the provider take Order Invoice object as parameter. How do I get basket address...
by lockhart97
10 Jun 2024, 02:52
Forum: Laravel package
Topic: Is it possible to create and manage baskets programatically?
Replies: 6
Views: 64666

Re: Is it possible to create and manage baskets programatically?

What if I remove web middleware from jsonapi endpoint. This removes the need for sending cors request before every API request to backend. However, this leads to another problem, the /basket endpoint requires csrf token to track the basket details over the current session. So, is there a way to mana...