Search found 10 matches

by rud99
22 Apr 2022, 10:15
Forum: Help
Topic: I added new route, but I have a problem
Replies: 2
Views: 746

I added new route, but I have a problem

AIMEOS 2021.x
PHP 8.1
WIN (OpenServer)

Hi!
I want to add one custom route into my aimeos.
I add it to routes/web.php and I have a problem.
The problem: Route works but not rigth.
I get standart page. I Did not request to my nedded action in my controller.
Thanks!
by rud99
31 Mar 2022, 10:27
Forum: Help
Topic: I want to test cancel and refund methods for my custom payment provider
Replies: 1
Views: 603

I want to test cancel and refund methods for my custom payment provider

AIMEOS 2021.x
PHP 8.1
WIN (OpemServer)

Hello!
I want to test "cancel" and "refund" methods for my custom payment provider. But I do not know how I can initialized them from my admin interface.
Thanks!
by rud99
30 Mar 2022, 11:06
Forum: Help
Topic: Help with orders list
Replies: 3
Views: 886

Re: Help with orders list

I solved problem. Problem was in my Decorator private $attr = [ 'order.transaction_id' => [ 'code' => 'order.transaction_id', 'internalcode' => 'mord."transaction_id"', 'label' => 'Bank transaction Id', 'type' => 'string', 'internaltype' => \Aimeos\MW\DB\Statement\Base::PARAM_STR, ], ]; I ...
by rud99
29 Mar 2022, 13:01
Forum: Help
Topic: Help with orders list
Replies: 3
Views: 886

Re: Help with orders list

I solved my problem with orders list, but I have new ). This code change my "order.statuspayment" in order object, but I have problem with $this->saveOrder($order); in method. It construction interupt scrip public function updateAsync() : bool { $manager = \Aimeos\MShop::create($this->getC...
by rud99
28 Mar 2022, 11:36
Forum: Help
Topic: Help with orders list
Replies: 3
Views: 886

Help with orders list

Hello! I watn to use my orders data from "mshop_order" table in updateAsync() method. I saw https://aimeos.org/docs/latest/models/managing-items/#manager-methods , but i can not apply it in my case. I did so in my custom payment provider: $context = $this->getContext(); $manager = \Aimeos\...
by rud99
28 Mar 2022, 07:19
Forum: Help
Topic: I want to extend the order entity
Replies: 2
Views: 735

Re: I want to extend the order entity

Thanks!
by rud99
25 Mar 2022, 16:37
Forum: Help
Topic: I want to extend the order entity
Replies: 2
Views: 735

I want to extend the order entity

Hello!
I want to extend the order entity.
I want to add a new field.
I don't understand which entity I need to expand order or order_base?
I want to use this https://aimeos.org/docs/2021.x/models/e ... properties

Thanks!
by rud99
22 Mar 2022, 11:37
Forum: Help
Topic: After payment (redirect to the payment page), the cart is not cleared
Replies: 2
Views: 822

Re: After payment (redirect to the payment page), the cart is not cleared

Thanks, aimeos! The issue was resolved like this: After payment, the bank gateway should redirect the customer to the successful checkout page(url). I didn't have this page(url). I provided the payment gateway this address (https://mysuperpuperaimeostestshop/shop/confirm/my_pay_type) to go after suc...
by rud99
21 Mar 2022, 10:44
Forum: Help
Topic: After payment (redirect to the payment page), the cart is not cleared
Replies: 2
Views: 822

After payment (redirect to the payment page), the cart is not cleared

Hello! After payment (redirect to the payment page), the cart is not cleared. The order is created in the system, but the basket is not cleared. This is a part of my method "process" in my provider: if (isset($response->status) && $response->status === CheckoutStatus::Created) { $o...