Search found 40 matches

by jramirezgranada
07 May 2019, 16:25
Forum: Laravel package
Topic: Joins Queries
Replies: 5
Views: 1777

Re: Joins Queries

Thanks, for previous version is not there a way to do that ?
by jramirezgranada
07 May 2019, 14:07
Forum: Laravel package
Topic: Joins Queries
Replies: 5
Views: 1777

Re: Joins Queries

Yes, I've worked in that way, and it returns all users even if they don't have an assigned customer group. I want to get only users with an assigned customer group.
by jramirezgranada
06 May 2019, 18:54
Forum: Laravel package
Topic: Joins Queries
Replies: 5
Views: 1777

Joins Queries

Hi there; Is there a way to get users with an associated customer group? or is there a way to do joins queries? I need to do something like this but with managers select * from users as u inner join users_list ul on u.id = ul.parentid join mshop_customer_group mcg on cast(ul.refid as integer) = mcg....
by jramirezgranada
23 Feb 2019, 18:18
Forum: Laravel package
Topic: Compare/SQL.php
Replies: 4
Views: 1813

Re: Compare/SQL.php

I'm using postgres.

Thks
by jramirezgranada
22 Feb 2019, 17:52
Forum: Laravel package
Topic: Compare/SQL.php
Replies: 4
Views: 1813

Compare/SQL.php

Hi there; I need to extend /vendor/aimeos/aimeos-core/lib/mwlib/src/MW/Criteria/Expression/Compare/SQL.php what is the best way to do that. I need this, in the tables views in admin when you search a text it is camel case, so i want to add a new operator in that file to create a searc non-camel-case...
by jramirezgranada
04 Feb 2019, 19:45
Forum: Laravel package
Topic: Create manual order
Replies: 9
Views: 3605

Re: Create manual order

Thanks, I have a good progress with that. When I wnat to add a product to order/base with $baseManager->createItem()->addProduct( $orderProduct ); the product isn't added to order base neither order base product table, always the product should be a variant of a parent product, I've tried pass the p...
by jramirezgranada
29 Jan 2019, 21:39
Forum: Laravel package
Topic: Create manual order
Replies: 9
Views: 3605

Re: Create manual order

findItem doesn't exists, I used the manager instead of factory $prodcntl = \Aimeos\Controller\Frontend\Product\Factory::createController( $context ); $prodId = $prodcntl->findItem( '<sku>' )->getId(); When I sotre the basket with $basketcntl->store(), it creates a record in order_base, but it doesn'...
by jramirezgranada
28 Jan 2019, 20:52
Forum: Laravel package
Topic: Create manual order
Replies: 9
Views: 3605

Create manual order

Hi there;

Given a product code (SKU) how can I create a manual order with that ?

Thanks
by jramirezgranada
17 Jan 2019, 21:48
Forum: Laravel package
Topic: Override cupons providers
Replies: 1
Views: 856

Override cupons providers

Hi there;

So i need to change some logic from coupons providers, what is the way to override those files, is there a config file or setting to call my new classes ?

Thanks
by jramirezgranada
05 Dec 2018, 15:10
Forum: Laravel package
Topic: Remove shipping value for a product
Replies: 1
Views: 867

Remove shipping value for a product

Depending on some conditions I have to remove the shipping value for a products, Do i need to do id in each method that return data to the cart ?

Thanks