Commit c7a9028a093b5bfb66830f2b32d9591c63b5f89b
1 parent
9f5f9ad2
products pick
Showing
2 changed files
with
4 additions
and
1 deletions
Show diff stats
src/app/backend/controllers/DiscountController.php
... | ... | @@ -198,6 +198,9 @@ class DiscountController extends Controller |
198 | 198 | |
199 | 199 | } |
200 | 200 | |
201 | + $data[0]['group_ids'] = $this->common->parseArray($data[0]['group_ids']); | |
202 | + $data[0]['catalog_ids'] = $this->common->parseArray($data[0]['catalog_ids']); | |
203 | + | |
201 | 204 | $catalog_temp = $this->common->getTypeSubtype1(NULL, $lang_id)['catalog']; |
202 | 205 | usort($catalog_temp, $titlecmp); |
203 | 206 | ... | ... |