Search found 19 matches

by veeran ambalam
23 Aug 2021, 20:08
Forum: Laravel package
Topic: Checks for available service items in basket failed
Replies: 1
Views: 743

Checks for available service items in basket failed

I am getting this error when I save the basket, but when I get the basket it has all the details like addresses and services. It all working fine adding delivery address, billing address, carrier service, and payment services but when saving the basket it throws this error. But when I test it with t...
by veeran ambalam
14 Aug 2021, 06:34
Forum: Laravel package
Topic: Product's Rebate price is zero on basket
Replies: 2
Views: 1343

Re: Product's Rebate price is zero on basket

Very Sorry the issue was a misunderstanding of the Actual price and Rebate calculations found the bellow article and understood it.
post13218.html#p13218
by veeran ambalam
13 Aug 2021, 11:56
Forum: Laravel package
Topic: Product's Rebate price is zero on basket
Replies: 2
Views: 1343

Re: Product's Rebate price is zero on basket

Here I like to share what I have found so far, this might help you to get an Idea. 1. On debugging I found this on the product price plugin -> getPrice(); " return $price->setRebate( '0.00' ); ". Why product rebate is set to zero, for what purpose? Do we set the right price again somewhere...
by veeran ambalam
13 Aug 2021, 10:58
Forum: Laravel package
Topic: Product's Rebate price is zero on basket
Replies: 2
Views: 1343

Product's Rebate price is zero on basket

aimeos-laravel 2021.04.4
php 7.4.9

Why on localhost::8000/jsonapi/basket API returns "order.base.product.rebate: 0.00"
by veeran ambalam
13 Aug 2021, 09:05
Forum: Laravel package
Topic: Route [aimeos_shop_supplier] not defined.
Replies: 2
Views: 2182

Re: Route [aimeos_shop_supplier] not defined.

Thank you this fixed the issue
by veeran ambalam
09 Aug 2021, 13:07
Forum: Laravel package
Topic: Route [aimeos_shop_supplier] not defined.
Replies: 2
Views: 2182

Route [aimeos_shop_supplier] not defined.

I am getting this error "Route [aimeos_shop_supplier] not defined." on my log but I don't find any routes like this anywhere !!! Please help me.
by veeran ambalam
28 Jul 2021, 17:37
Forum: Laravel package
Topic: Register API for admin
Replies: 1
Views: 4452

Register API for admin

Hi Guys, is there is register API for admin, or Should I make something on my own, Please guide me. What I found so far is superuser column on the customer table helps to differentiate between admin and user, But I don't know how to mark superuser as "1" through add customer API. NOTE: I d...
by veeran ambalam
13 Jul 2021, 05:31
Forum: Laravel package
Topic: Post data missing after redirection from payment gateway confirmation
Replies: 3
Views: 7824

Re: Post data missing after redirection from payment gateway confirmation

I found the issue, it's because of HTTP to HTTPS redirection, on redirecting $_POST data is lost, when I added the correct URL it worked fine.
by veeran ambalam
09 Jul 2021, 11:08
Forum: Laravel package
Topic: Post data missing after redirection from payment gateway confirmation
Replies: 3
Views: 7824

Post data missing after redirection from payment gateway confirmation

Hi, I am using Razorpay and Omnipay, I managed to integrate with Razorpay, and it's working fine, But on callback URL "https://kobza.in/shop/confirm?code=razorpay-confirmation" on updateSync(), I am not getting the post data sent by Razorpay, I checked $_POST it is also empty. Can you plea...
by veeran ambalam
05 Jul 2021, 19:23
Forum: Laravel package
Topic: How do I integrate Razorpay Payment Gateway
Replies: 4
Views: 7968

Re: How do I integrate Razorpay Payment Gateway

Instead of ai-payments, Can I create controllers for Payment Gateway and update the status of the order? What would be the difference between creating controllers on Laravel and ai-payments?