Search found 28 matches

by Wall0fDeath
06 Mar 2024, 14:56
Forum: Laravel package
Topic: Admin page product mtime update when i savesubparts
Replies: 1
Views: 18407

Re: Admin page product mtime update when i savesubparts

In postgres we solved this with some database triggers. :))
by Wall0fDeath
06 Mar 2024, 08:10
Forum: Laravel package
Topic: Admin page product mtime update when i savesubparts
Replies: 1
Views: 18407

Admin page product mtime update when i savesubparts

Php version: 8.2
Aimeos version: 2023.10.11 - headless
OS version: Debain 11 Bullseye
Laravel version: 10.43.0

Dear Aimeos Team,

How can I manage to update product mtime when i change product subparts, (like text, media etc)?

I would have to make it in Jsonadm, jqadm, xml import.
by Wall0fDeath
22 Feb 2024, 11:04
Forum: Laravel package
Topic: It only shows products if they have at least 1 price with euro currency
Replies: 6
Views: 56365

Re: It only shows products if they have at least 1 price with euro currency

Thank you! I forgot to mention, the customer wanted headless, so we are using the headless version now. Things work a little differently, but I could extend the shop.php to make this work. I enabled multilocale and changed the jsonapi route and I can get the HUF prices now. During this I saw that if...
by Wall0fDeath
21 Feb 2024, 11:09
Forum: Laravel package
Topic: It only shows products if they have at least 1 price with euro currency
Replies: 6
Views: 56365

Re: It only shows products if they have at least 1 price with euro currency

The code is the original code. Version: "name": "aimeos/ai-client-jsonapi", "version": "2023.10.3", My settings: https://i.imgur.com/vstBEIF.png HUF, HU are enabled too. Product with prices: https://i.imgur.com/EyiTa4p.png On the admin panel I have a product w...
by Wall0fDeath
21 Feb 2024, 08:58
Forum: Laravel package
Topic: It only shows products if they have at least 1 price with euro currency
Replies: 6
Views: 56365

It only shows products if they have at least 1 price with euro currency

Php version: 8.2 Aimeos version: 2023.10.11 Ai-admin-jsonadm version: 2023.10.2 OS version: Debain 11 Bullseye Laravel version: 10.43.0 Dear Aimeos Team, I have a little problem, with the currencies. We should use the shop with HU language and HUF currency. We loaded products and prices through XML ...
by Wall0fDeath
21 Feb 2024, 08:44
Forum: Laravel package
Topic: JsonAdm Include changes problem
Replies: 2
Views: 25169

Re: JsonAdm Include changes problem

I've checked this version: aimeos/ai-admin-jsonadm:2023.10.x-dev
It seems to be working without the order now. :))
Thank you!
by Wall0fDeath
09 Feb 2024, 09:24
Forum: Laravel package
Topic: JsonAdm Include changes problem
Replies: 2
Views: 25169

JsonAdm Include changes problem

Php version: 8.2 Aimeos version: 2023.10.11 Ai-admin-jsonadm version: 2023.10.2 OS version: Debain 11 Bullseye Laravel version: 10.43.0 Dear Aimeos Team, I had an older system (Aimeos version : 2022.10), where I used JsonAdm for management as an api. (new routes next to the original routes, same bac...
by Wall0fDeath
09 Jan 2024, 11:16
Forum: Laravel package
Topic: Grapesjs update
Replies: 1
Views: 2783

Grapesjs update

Php : 8.2 Os: Debian GNU/Linux 11 (Bullseye) Aimeos 2022.10.12 Laravel 9.52.16 Dear Aimeos Team, I would like to replace the grapes.js ( version 0.18 ) built into Aimeos ( 2022.10 ) with the current one (version: 0.21)? (The table management in the original grapes js seems to be working much better....
by Wall0fDeath
04 Dec 2023, 14:17
Forum: Laravel package
Topic: Customer's email change on his profile
Replies: 2
Views: 1734

Re: Customer's email change on his profile

Thank you!
But I should make it on the profile page and not on another page.
I have an extension for product return, what should extend customer anyway. So I changed this:

$item->getCode() => ($billingAddress->getEmail() ? : $item->getCode())
This did the trick for me. ^^