Search found 14 matches

by matteovg7
01 Sep 2022, 13:55
Forum: Help
Topic: Upgrade from 2021.10 to 2022.07 with custom extension
Replies: 2
Views: 749

Re: Upgrade from 2021.10 to 2022.07 with custom extension

I opened a pull request: https://github.com/aimeos/aimeos-core/pull/297

I used it locally for some days and seem to be ok.
by matteovg7
25 Aug 2022, 07:50
Forum: Help
Topic: Upgrade from 2021.10 to 2022.07 with custom extension
Replies: 2
Views: 749

Upgrade from 2021.10 to 2022.07 with custom extension

Hi, i'm trying to upgrade Aimeos from 2021.10 to 2022.07 version. I have a custom extensions under ext folder with some overrided classes with different names. The 2022.07 version doesn't find the classes of the submanagers because of a wrong namespace. This is the config/mshop.php file of the exten...
by matteovg7
26 Mar 2020, 15:17
Forum: Help
Topic: JSONADM combine filter
Replies: 1
Views: 973

JSONADM combine filter

Hi, I have some trouble using the combined filter of the JSONADM API. I followed this guide https://aimeos.org/docs/Developers/Admin/JSONAPI/Search_items I can get the filtered results without the combine operator, but when I try to use the combine operator i receive an error. For example, I'm tryin...
by matteovg7
19 Mar 2020, 08:55
Forum: Help
Topic: JSONADM API and rebuild index
Replies: 4
Views: 1933

Re: JSONADM API and rebuild index

In the next days I will do a PR also for DELETE method.
by matteovg7
18 Mar 2020, 11:56
Forum: Help
Topic: JSONADM API and rebuild index
Replies: 4
Views: 1933

Re: JSONADM API and rebuild index

https://github.com/aimeos/ai-admin-jsonadm/pull/6 I tried in my extension and this code works when adding a product in a category, so it works also when any other relationships of the product is patched. I don't know if there are other stuff to take care (other domains that needs to rebuild the inde...
by matteovg7
18 Mar 2020, 11:24
Forum: Laravel package
Topic: Add column to mshop_order_base
Replies: 8
Views: 3056

Re: Add column to mshop_order_base

Ok, now it works, thank you!
by matteovg7
17 Mar 2020, 16:52
Forum: Help
Topic: JSONADM API and rebuild index
Replies: 4
Views: 1933

JSONADM API and rebuild index

Hi, when a new product is associated with a category in catalog, for example, it is necessary to rebuild the index in order to view it in the frontend.
When this operation is made with JSONADM API, how is possible to rebuild the index, for example every time the new relationship is patched?
Thank you.
by matteovg7
17 Mar 2020, 09:35
Forum: Laravel package
Topic: Add column to mshop_order_base
Replies: 8
Views: 3056

Re: Add column to mshop_order_base

Yes, now I want to decorate only order base product.

The getObject() method is referring of the order base product manager class, and with my configuration I expect that return the OrderBaseProductIdPrint decorator, but return the order base product manager itself.
by matteovg7
16 Mar 2020, 11:04
Forum: Laravel package
Topic: Add column to mshop_order_base
Replies: 8
Views: 3056

Re: Add column to mshop_order_base

Ok, I removed the item configuration, but the problem is still here. I tried to investigate more accurately and I found that, for example in the method saveItem() of the manager of order/base/product, when executes $columns = $this->getObject()->getSaveAttributes(), $columns is empty because getObje...
by matteovg7
04 Mar 2020, 16:56
Forum: Laravel package
Topic: Add column to mshop_order_base
Replies: 8
Views: 3056

Re: Add column to mshop_order_base

Now I tried to decorate mshop_order_base_product and I have the same problem. This is ext/vg7/config/mshop.php: <?php return [ 'order' => [ 'manager' => [ 'name' => 'OrderVG7', 'decorators' => [ 'local' => ['OrderIdPrint'] ], 'base' => [ 'name' => 'OrderBaseVG7', 'address' => [ 'name' => 'OrderBaseA...