Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with export Lens GroupBY #101

Open
litalboa opened this issue Dec 3, 2020 · 1 comment
Open

Problem with export Lens GroupBY #101

litalboa opened this issue Dec 3, 2020 · 1 comment

Comments

@litalboa
Copy link

litalboa commented Dec 3, 2020

I'm trying to export to excel and I'm getting an error:

image

my Lens code

public static function query(LensRequest $request, $query) { return $request->withOrdering($request->withFilters( $query->select(self::columns()) ->groupBy('products.variant_title') )); }

protected static function columns() { return [ 'products.variant_title', DB::raw('sum(products.variant_quantity) as quantity'), ]; }

please advise how to fix it. thanks :)

@patrickbrouwers
Copy link
Member

Perhaps good to check these: https://mattstauffer.com/blog/strict-mode-and-other-mysql-customizations-in-laravel-5-2/ The query you pass has some issues in strict mode

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants