Created
October 15, 2018 05:55
-
-
Save kitt-vl/81314f5a23166a49f5c0a04a9d1aacd6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my @cart_items = $self->table->find( | |
where=>[ $self->_c->session_condition ], | |
with => [ | |
{ | |
name => 'Catalog.Image', | |
columns => [ 'url'] | |
}, | |
{ | |
name => 'Catalog', | |
columns => [ 'name', 'url_uniq'] | |
}, | |
{ | |
name => 'Catalog.Parent', | |
columns => ['url_uniq'] | |
}, | |
], | |
columns => [qw/unit price quantity summa catalog_id/], | |
rows_as_hashes => 1 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment