Search found 72 matches

by Ahmad
29 Dec 2020, 09:02
Forum: Laravel package
Topic: what is the difference between a user and a customer table?
Replies: 15
Views: 5462

Re: what is the difference between a user and a customer table?

You can try to disable the Autofill basket plugin so the user must go through the whole checkout including the address page. With the Autofill plugin enabled and after the user logs in, the last address is automatically added to the basket which may not contain the information yet. ok, but you don'...
by Ahmad
26 Dec 2020, 12:10
Forum: Laravel package
Topic: what is the difference between a user and a customer table?
Replies: 15
Views: 5462

Re: what is the difference between a user and a customer table?

@aimeos I change copyFrom in my order address item and it works for me, but I need my custom fields in basket because I use them fro calculate delivery service price, but when I get $basket->getAddresses() in my delivery service calcPrice method, this fields are null, how can I get this fields from ...
by Ahmad
10 Dec 2020, 22:24
Forum: Help
Topic: How to hide unique products in catalogue when they are sold?
Replies: 10
Views: 5538

Re: How to hide unique products in catalogue when they are sold?

- I get an discoverable exception and check admin log and get this error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'msto.prodid' in 'on clause': after that I change this line https://github.com/aimeos/aimeos-core/commit/04e688a913263b6965b2f59b48e9a978bf85eca1#diff-7879fe552a99d1f051d...
by Ahmad
07 Dec 2020, 14:58
Forum: Help
Topic: How to hide unique products in catalogue when they are sold?
Replies: 10
Views: 5538

Re: How to hide unique products in catalogue when they are sold?

It's not available in 2020.10 but we've implemented this feature in the dev-master branch now: - https://github.com/aimeos/aimeos-core/commit/04e688a913263b6965b2f59b48e9a978bf85eca1 - https://github.com/aimeos/ai-controller-frontend/commit/4e1b507ad577fd2d07a87bbb24e661e918408557 - https://github....
by Ahmad
06 Dec 2020, 12:38
Forum: Help
Topic: How to hide unique products in catalogue when they are sold?
Replies: 10
Views: 5538

Re: How to hide unique products in catalogue when they are s

The stock level data is loaded async via AJAX. You have three options: - Extend the Javascript method that's used to add the stock levels to hide those products - Extend the catalog lists class where you retrieve the stock levels for the products and remove those that are out of stock - Write a fro...
by Ahmad
29 Nov 2020, 15:14
Forum: Laravel package
Topic: what is the difference between a user and a customer table?
Replies: 15
Views: 5462

Re: what is the difference between a user and a customer table?

There are no such methods and like said, you can get/set the properties using: $this->set( 'state_id', $item->get( 'state_id' ) ); $this->set( 'city_id' , $item->get( 'city_id' ) ); I remove my custom Customer Item and Customer Manager in my extension and add MyCustomerManagerDecorator and now I ca...
by Ahmad
25 Nov 2020, 10:09
Forum: Laravel package
Topic: how to retrieve order in session after redirect from online payment just with order id in url query string?
Replies: 4
Views: 2005

Re: how to retrieve order in session after redirect from online payment just with order id in url query string?

I don't want use SSL for my domain at this time, if you know how can I fix this problem in the continuation of this topic: https://aimeos.org/help/laravel-package-f18/not-found-order-after-payment-redirection-t3084.html please give me a solution If you don't want SSL, you should not set up a shop a...
by Ahmad
24 Nov 2020, 09:48
Forum: Laravel package
Topic: how to retrieve order in session after redirect from online payment just with order id in url query string?
Replies: 4
Views: 2005

Re: how to retrieve order in session after redirect from online payment just with order id in url query string?

you should find out why the order ID is missing in the session I know about this and find out why this happen, according to our conversation in this topic : https://aimeos.org/help/laravel-package-f18/not-found-order-after-payment-redirection-t3084.html this happen because Google Chrome has introdu...
by Ahmad
22 Nov 2020, 18:19
Forum: Laravel package
Topic: how to retrieve order in session after redirect from online payment just with order id in url query string?
Replies: 4
Views: 2005

how to retrieve order in session after redirect from online payment just with order id in url query string?

hello, I use aimeos laravel 2020.07 as I mentioned in another topic: https://aimeos.org/help/laravel-package-f18/not-found-order-after-payment-redirection-t3084.html I have my custom payment service provider, i successfully send payment request to payment provider but when payment provider redirect ...
by Ahmad
13 Nov 2020, 15:42
Forum: Laravel package
Topic: what is the difference between a user and a customer table?
Replies: 15
Views: 5462

Re: what is the difference between a user and a customer table?

Please make sure, you extend the customer manager item in the same way. To store the values from the order address item also in the customer address item, you need to overwrite the copyFrom() method in your order address item: https://github.com/aimeos/aimeos-core/blob/master/lib/mshoplib/src/MShop/...