Search found 72 matches

by Ahmad
15 Aug 2021, 16:15
Forum: Help
Topic: Custom data domain
Replies: 1
Views: 917

Custom data domain

I have same question and because that this topic is in first search result in google I ask that here. my question is same but I use: aimeos/aimeos-laravel 2021.07.4 laravel/framework 8.40 I want to add my custom domain (with multi tables) and manage it from aimeos jqadm? is there any step by step do...
by Ahmad
09 Jul 2021, 13:05
Forum: Laravel package
Topic: Failure Exception when trying to upgrade from 2020.10 to 2021.07
Replies: 1
Views: 7239

Failure Exception when trying to upgrade from 2020.10 to 2021.07

I am trying to upgrade from aimeos/laravel 2020.10 to 2021.07, I use laravel/framework 7.30.4, I do steps like as aimeos docs but process failure because of some exceptions: please take a look. - first I replace "aimeos/aimeos-laravel": "~2021.07" in composer.json and "post-...
by Ahmad
30 Jun 2021, 14:11
Forum: Laravel package
Topic: How to edit order item (add/edit/remove products, chanage services, add/remove coupons?
Replies: 2
Views: 5492

How to edit order item (add/edit/remove products, chanage services, add/remove coupons?

laravel/framework v7.30 aimeos/laravel 2020.10.6 I want to edit an stored order like as add/edit/remove products, change delivery/payment service provider and add or remove coupons similar to the basket process so that order price and costs update after edit, for example change delivery service prov...
by Ahmad
18 May 2021, 14:44
Forum: Laravel package
Topic: how to update an order in the job? (merge two order or add product to an order)
Replies: 1
Views: 1249

how to update an order in the job? (merge two order or add product to an order)

aimeos/laravel 2020.10 laravel/framework 7.0 I want to make some changes to an order from code layer (for example during run a job) to do the following things: - create an order for a customer automatically - add or remove a coupon and update order payment price - add or remove a product and update ...
by Ahmad
28 Feb 2021, 16:04
Forum: Laravel package
Topic: how to prevent create new order when payment failed
Replies: 8
Views: 3523

Re: how to prevent create new order when payment failed

Did you implement a payment service provider on your own? Can you show the code of that service provider? yes i implement a payment service provider, please read my description and help me to solve this problem . here is process method of my service provider: public function process(\Aimeos\MShop\O...
by Ahmad
20 Feb 2021, 14:02
Forum: Laravel package
Topic: how to prevent create new order when payment failed
Replies: 8
Views: 3523

Re: how to prevent create new order when payment failed

You should check the docs of the payment gateway or call their support. no it there is no need to do this, i check the docs with payment gateway and after that realized that aimeos send several times requests to gateway (run separately process method of Payment Provider) when basket checkout, also ...
by Ahmad
18 Feb 2021, 11:57
Forum: Laravel package
Topic: how to prevent create new order when payment failed
Replies: 8
Views: 3523

Re: how to prevent create new order when payment failed

It's not possible because payment gateways require a new order ID for each payment. Already used order IDs are not accepted and the will return a "duplicate order ID" error in that case. my problem is when user goes back from payment gateway and I call verify method of payment gateway fro...
by Ahmad
17 Feb 2021, 16:31
Forum: Laravel package
Topic: how to prevent create new order when payment failed
Replies: 8
Views: 3523

how to prevent create new order when payment failed

Aimeos: 2020.10 Laravel: 7 PHP: 7.4 when customer redirected to payment provider and redirect back with an error, they can try again for payment (even without make any change to order/basket) but when they click on try again button new order with a new order id was added. I want to prevent this and ...
by Ahmad
14 Feb 2021, 16:10
Forum: Laravel package
Topic: how to use "&&" and "||" together in a search condition?
Replies: 1
Views: 1092

how to use "&&" and "||" together in a search condition?

i want to use "&&" and "||" together in a search condition to get orders, for example: $first_expr = array( $search->compare('<', 'order.mtime', $limit), $search->compare('==', 'order.statuspayment', \Aimeos\MShop\Order\Item\Base::PAY_PENDING), ); $second_expr = array( $s...
by Ahmad
24 Jan 2021, 16:13
Forum: Help
Topic: How to hide unique products in catalogue when they are sold?
Replies: 10
Views: 5471

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....