Search found 8414 matches
- 08 Jan 2025, 13:22
- Forum: Help
- Topic: Linking Custom Domain Manager to Media Domain in JSON:API
- Replies: 11
- Views: 35295
Re: Linking Custom Domain Manager to Media Domain in JSON:API
You have to add the ListRef trait in your item and call the initListItems() method to hand over the list items to the trait:
https://github.com/aimeos/aimeos-core/b ... Traits.php
https://github.com/aimeos/aimeos-core/b ... Traits.php
- 08 Jan 2025, 13:20
- Forum: Help
- Topic: Stock is not decrease
- Replies: 5
- Views: 7872
Re: Stock is not decrease
The order manager has an update() method which accepts the order item. It will update stock levels based on the payment status: https://github.com/aimeos/aimeos-core/b ... e.php#L101
- 08 Jan 2025, 13:18
- Forum: Help
- Topic: Issue with "List Reference ID" navsearch in jqadm list view
- Replies: 3
- Views: 3353
Re: Issue with "List Reference ID" navsearch in jqadm list view
You can add a search attribute "workshop:serviceid" your your manager that joins the list table like in the Lists manager decorator (code can be simplified in you case):
https://github.com/aimeos/aimeos-core/b ... p#L97-L121
https://github.com/aimeos/aimeos-core/b ... p#L97-L121
- 06 Jan 2025, 15:58
- Forum: Help
- Topic: Issue with "List Reference ID" navsearch in jqadm list view
- Replies: 3
- Views: 3353
Re: Issue with "List Reference ID" navsearch in jqadm list view
We are moving towards a document oriented structure so it works with all kind of storages. Therefore, searching for lists related values like "product.lists.refid" isn't supported any more. Instead, you have to use the "product:has" search function but that doesn't work in the na...
- 06 Jan 2025, 15:48
- Forum: Help
- Topic: Linking Custom Domain Manager to Media Domain in JSON:API
- Replies: 11
- Views: 35295
Re: Linking Custom Domain Manager to Media Domain in JSON:API
Add the Lists decorator to your domain: https://github.com/aimeos/aimeos-core/b ... ct.php#L13
- 06 Jan 2025, 15:14
- Forum: Help
- Topic: Stock is not decrease
- Replies: 5
- Views: 7872
Re: Stock is not decrease
When changing the payment status in the admin backend or from the web hook?
- 06 Jan 2025, 13:40
- Forum: Help
- Topic: Adding Product URL Segment in Basket Response
- Replies: 1
- Views: 3520
Re: Adding Product URL Segment in Basket Response
Unfortunately not. The basket is saved as serialized object in the DB and not in the mshop_order* tables where data can be added while retrieving them. The only option is to fetch the product data with the URL segment in a second request of the JSON:API.
- 03 Jan 2025, 11:46
- Forum: Laravel package
- Topic: How to Import customer XML?
- Replies: 1
- Views: 4380
Re: How to Import customer XML?
What is the difference between “User” and “Customer”? The Laravel "users" table is used for the Aimeos customer domain when using Laravel. In Aimeos, we are always speaking about "customers". How can I import existing customers? I have the following packages/xxxx-theme/config/co...
- 02 Jan 2025, 14:56
- Forum: Help
- Topic: Stock is not decrease
- Replies: 5
- Views: 7872
Re: Stock is not decrease
You are right, stock level is currently not decreased if you set the payment status of an order to "authorized" manually in the admin backend. We will see how we can implement that safely.
- 02 Jan 2025, 14:37
- Forum: TYPO3 extension
- Topic: Categories instead of Products? (trying to add multiple products to category)
- Replies: 3
- Views: 12281
Re: Categories instead of Products? (trying to add multiple products to category)
What's the network request when the "product" selector opens to list the suggestions? Please have a look into the network console of your browser.