Created
July 7, 2018 01:55
-
-
Save pavel-one/03978bbeeab10300fcaebc3cf6a9621f to your computer and use it in GitHub Desktop.
ms2 вывод уникальных производителей
This file contains hidden or 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
{set $parents = '!pdoResources' | snippet: [ | |
'returnIds' => 1, | |
'parents' => 9, | |
'depth'=> 15, | |
'limit' => 0, | |
'where' => [ | |
'class_key' => 'msCategory' | |
] | |
]} | |
{set $parentsArr = $parents | split} | |
{'!pdoResources' | snippet: [ | |
'class' => 'msVendor', | |
'sortby' => 'id', | |
'leftJoin' => [ | |
'Data' => [ | |
'class' => 'msProductData', | |
'on' => 'Data.vendor = msVendor.id' | |
], | |
'modResource' => [ | |
'class' => 'modResource', | |
'on' => 'Data.id = modResource.id' | |
] | |
], | |
'select' => 'msVendor.id, msVendor.name, Data.id as resourceId, modResource.parent', | |
'groupby' => 'msVendor.id', | |
'tpl' => 'test1', | |
'where' => [ | |
'modResource.parent:IN' => $parentsArr, | |
], | |
]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment