Search found 97 matches

by krzysiekp
27 Jan 2025, 21:26
Forum: Laravel package
Topic: Generate order number before save order
Replies: 2
Views: 22235

Generate order number before save order

I have additional column in mshop_order => order_no
How can I generate unique an order number just before it is saved to the database?
by krzysiekp
23 Jan 2025, 18:39
Forum: Laravel package
Topic: Upgrade Laravel Aimeos from 2021.10 to 2024.10
Replies: 1
Views: 20791

Upgrade Laravel Aimeos from 2021.10 to 2024.10

How to upgrade from low version 2021.10 to high version 2024.10 ? Can you describe step by step how to do it so that I don't carry out unnecessary commands etc. ?
by krzysiekp
29 Jun 2023, 10:53
Forum: Laravel package
Topic: aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem
Replies: 3
Views: 7638

Re: aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem

aimeos-extensions/new-ext dev-master Aimeos new-ext extension aimeos/ai-admin-jqadm 2021.10.19 Aimeos Vue.js+Bootstrap admin interface aimeos/ai-admin-jsonadm 2021.10.5 Aimeos ai-admin-jsonadm extension aimeos/ai-client-html 2021.10.20 Aimeos ai-client-html extension aimeos/ai-client-jsonapi 2021.1...
by krzysiekp
29 Jun 2023, 09:38
Forum: Laravel package
Topic: aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem
Replies: 3
Views: 7638

aimeos/aimeos-laravel ver. 2021.10.7 => laminas/laminas-diactoros problem

I have aimeos/aimeos-laravel ver. 2021.10.7. After composer update appeared to me "Found 6 security vulnerability advisories affecting 3 packages". After doing composer audit i have something like this:
Image

How to fix it ?
by krzysiekp
09 Dec 2022, 10:36
Forum: Laravel package
Topic: Breakdown of products into individual entries in the mshop_order_base_product table
Replies: 1
Views: 1795

Breakdown of products into individual entries in the mshop_order_base_product table

Is it possible to do this if someone orders product A in the amount of 3 pieces, so that in the mshop_order_base_product table there will be 3 entries of 1 piece each instead of 1 entry with 3 pieces ?
by krzysiekp
21 Nov 2022, 20:13
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 7798

Re: Aimeos 2021.07 database transaction

So when will the release of the new version 2021.10 with these fixes be?
by krzysiekp
21 Nov 2022, 08:03
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 7798

Re: Aimeos 2021.07 database transaction

It's working but now I use:

Code: Select all

 "aimeos/aimeos-laravel": "2021.10.6"
and

Code: Select all

"aimeos/aimeos-core": "2021.10.x-dev"
Maybe I should update aimeos/aimeos-laravel to version 2021.10.x-dev as well ?
by krzysiekp
18 Nov 2022, 13:46
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 7798

Re: Aimeos 2021.07 database transaction

After composer update to 2021.10 version when I execute below command: php artisan aimeos:setup I receive error: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'statuspayment' in 'where clause': UPDATE "mshop_order_base_product" SET "statuspayment" = -1 WHERE "status...
by krzysiekp
18 Nov 2022, 07:57
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 7798

Re: Aimeos 2021.07 database transaction

What exact steps do I need to follow outside of composer to upgrade from 2021.07 to 2021.10?
How big are the differences between 2021.07 and 2021.10 ?
by krzysiekp
16 Nov 2022, 17:34
Forum: Laravel package
Topic: Aimeos 2021.07 database transaction
Replies: 8
Views: 7798

Aimeos 2021.07 database transaction

How to do database transaction in Aimeos 2021.07 ? I have a code: $orderCntl = \Aimeos\Controller\Frontend::create($this->context, 'order' ); $basketCntl = \Aimeos\Controller\Frontend::create($this->context, 'basket' ); $this->setAddress($req); $basket = $basketCntl->store(); //begin transaction $or...