Search found 153 matches
- 07 Apr 2025, 19:43
- Forum: Laravel package
- Topic: Confirmation pdf as download link
- Replies: 1
- Views: 2899
Confirmation pdf as download link
Hi, we'd like to add a confirmation-pdf (for download) to both the order confirmation page, and the order history page. I know there is already a job for sending confirmation-pdf as an email attachment. Is there also an option to add a pdf link (for downlaod) to the history and checkout confirmation...
- 01 Apr 2025, 20:30
- Forum: Laravel package
- Topic: How to link customer accounts to a "master account" (central buyer)
- Replies: 1
- Views: 24635
How to link customer accounts to a "master account" (central buyer)
Hi, we are looking for a solution with which several customer accounts can be temporarily linked to "master accounts". Our requirements: Each customer or customer location has its own customer account. Some of these customer accounts may belong together for a limited period of time and be ...
- 09 Dec 2024, 10:26
- Forum: Laravel package
- Topic: How to optimize text search? Scout, Algolia, Typesense?
- Replies: 1
- Views: 34424
How to optimize text search? Scout, Algolia, Typesense?
Hi, we have only a small number of products (< 3.000 items), but we want to optimize the search behavior, because the standard SQL (PostgreSQL) text search doesn't meet our requirements. So the available aimeos extension #gigacommerce with ElasticSearch would be "too much" and the other ex...
- 06 Dec 2024, 09:21
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 12
- Views: 472270
- 03 Dec 2024, 19:19
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 12
- Views: 472270
Re: Basket locale() error after upgrade to 2024.10
Can you try this change: https://github.com/aimeos/aimeos-core/commit/81a48c57542361649d1ade494f3be3a62e13e3fa Maybe it's already enough. Unfortunately this did not resolve the error, the message remains unchanged: Typed property Aimeos\MShop\Price\Item\Standard::$precision must not be accessed bef...
- 02 Dec 2024, 20:21
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 12
- Views: 472270
Re: Basket locale() error after upgrade to 2024.10
Unfortunately, I'm not sure how to do this. I replaced the Base.php and Standard.php 2024.10 version with the 2023.10 in /packages/<my extension>/src/MShop/Price/Item but this caused: Class Aimeos\MShop\Price\Item\Standard contains 1 abstract method and must therefore be declared abstract or impleme...
- 02 Dec 2024, 13:08
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 12
- Views: 472270
Re: Basket locale() error after upgrade to 2024.10
one step further, but unfortunately not yet solved - after updateing src/MShop/Order/Item/Base.php we get Typed property Aimeos\MShop\Price\Item\Standard::$precision must not be accessed before initialization in packages/<my extension>/src/MShop/Order/Item/Base.php:865 in getPrice(), at line 865 $pr...
- 02 Dec 2024, 08:02
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 12
- Views: 472270
Re: Basket locale() error after upgrade to 2024.10
I made a comparison of both (2023.10 and 2024.10) mshop_order_basket.content. From my point of view all local-data are present, but the structure is different in 2023: * locale and child of O:32:"Aimeos\MShop\Order\Item\Standard" in 2024: .locale, child of s:8:" * bdata" notepad+...
- 28 Nov 2024, 09:02
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 12
- Views: 472270
Re: Basket locale() error after upgrade to 2024.10
May I ask you for any hint as I'm still struggling with this. when I copy mshop_order_basket.content from 2023.10 to 2024.10 DB (of course same user id (eg.: 1-default-de-EUR-default)) => causing: Aimeos\MShop\Order\Item\Base::locale(): Return value must be of type Aimeos\MShop\Locale\Item\Iface, nu...
- 25 Nov 2024, 07:54
- Forum: Laravel package
- Topic: Basket locale() error after upgrade to 2024.10
- Replies: 12
- Views: 472270
Basket locale() error after upgrade to 2024.10
Hi, our customers have to log in before they can add products to their basket. To save their basekts from one login to the next, we changed from $token to $userid: in /src/MShop/Order/ Base.php $context = $this->context(); //$token = $context->user(); $userid = $context->token(); $locale = $context-...