Search found 44 matches

by adityabanerjee
28 Feb 2022, 09:01
Forum: Help
Topic: Sub tota coming zero
Replies: 7
Views: 1772

Sub tota coming zero

Hi Aimeos,

We see that when the delivery status is 2 then our subtotal $basket->getPrice()->getValue() is coming zero for us.

Please assist.
by adityabanerjee
22 Jan 2022, 06:38
Forum: Laravel package
Topic: Ignore cancelled product pricing
Replies: 1
Views: 562

Ignore cancelled product pricing

Hi Aimeos,

So in the admin if a product is canceled then also it calculates it in the total. We want to ignore the pricing for the cancelled product. How could we do it? So when I do this $basket->getPrice()->getValue()

It calculates the price of the canceled product. Please assist.

Regards
by adityabanerjee
14 May 2021, 18:48
Forum: Help
Topic: JSON REST API Modifications
Replies: 1
Views: 1643

JSON REST API Modifications

I want to know if I have an api for the product ie http://aimeos.test/default/jsonapi/product?filter[f_catid]=23&include=media,price,text&page[offset]=1 and I want to make change in this particular api. How would I proceed with it? I am not able to find any documentation regarding making cha...
by adityabanerjee
29 Nov 2020, 09:39
Forum: Help
Topic: Retrieve Catalogs
Replies: 1
Views: 1074

Retrieve Catalogs

Hi guys, I am trying to retrieve the catalogs and in such a case I am using the below code. $context = app('aimeos.context')->get(); $manager = \Aimeos\MShop::create( $context, 'catalog' ); $items = $manager->search( $manager->filter(), ['media', 'text'] ); foreach( $items as $item ) { $textItem = $...
by adityabanerjee
31 Oct 2020, 09:25
Forum: Laravel package
Topic: Copy catalog
Replies: 1
Views: 934

Copy catalog

Hi, I want to know how could I copy catalog/categories from one store to another but giving it a different site id?
by adityabanerjee
06 Jun 2020, 07:13
Forum: Help
Topic: Extending MShop Price
Replies: 1
Views: 1283

Extending MShop Price

Hi, I am having a problem in extending this file-: https://github.com/aimeos/aimeos-core/blob/master/lib/mshoplib/src/MShop/Price/Item/Standard.php#L415 To extend this I have done the following -: 1. I have created a file named Ebdaa.php in the dir ebdaa/lib/custom/src/MShop/Price/Item/Ebdaa.php 2.I...
by adityabanerjee
04 Jun 2020, 14:47
Forum: Help
Topic: Admin account with multiple site
Replies: 1
Views: 1033

Admin account with multiple site

Hi Aimeos, I wanted to know if there is a way to assign multiple site ids with one admin account. For example, one email id which has --admin privileges and is been able to access for all site ids. php artisan aimeos:account --admin admin@admin.com site1,site2,site3 Please assist. Thank you in advan...
by adityabanerjee
16 May 2020, 12:15
Forum: Laravel package
Topic: Cannot change order status
Replies: 1
Views: 1200

Cannot change order status

Hi guys,

I am trying to change the order status. What I observe is that when I click on the save button It does nothing and shows red on the label. Also, I do not see any validation messages. What could be the reason?

https://imgur.com/a/K7TSukc
by adityabanerjee
17 Apr 2020, 16:56
Forum: Laravel package
Topic: Order.id not found
Replies: 1
Views: 1214

Order.id not found

Hi Aimeos, I am trying to get the order by id i.e order id 1. But it is throwing an exception -: Aimeos\MShop\Exception Item with ID "1" in "order.id" not found My code-: $context = app( 'aimeos.context' )->get(); $cntl = \Aimeos\Controller\Frontend::create( $context, 'order' )->...
by adityabanerjee
17 Apr 2020, 11:59
Forum: Laravel package
Topic: Getting order details
Replies: 1
Views: 1224

Getting order details

Hi Aimeos, I want to get the order details. I want to get the order details in a controller method of Laravel and pass it to a view. Could you please tell me how could I get the order details in the Laravel controller method? What would be the query? Is there a built-in method to get order details? ...