Как вывести производителя в заказе в админке Opencart 3?
Подскажите, почему не выводит производителя в таблицу? Правила самостоятельно, руками, но что-то где-то видно не так сделала. Помогите разобраться Подозреваю, что еще в файл admin/controller/sale/order.php не добавлена строка про manufacturer на этом участке кода:
$data['products'][] = array(
'order_product_id' => $product['order_product_id'],
'product_id' => $product['product_id'],
'name' => $product['name'],
'model' => $product['model'],
'option' => $option_data,
'quantity' => $product['quantity'],
'price' => $this->currency->format($product['price'] + ($this->config->get('config_tax') ? $product['tax'] : 0), $order_info['currency_code'], $order_info['currency_value']),
'total' => $this->currency->format($product['total'] + ($this->config->get('config_tax') ? ($product['tax'] * $product['quantity']) : 0), $order_info['currency_code'], $order_info['currency_value']),
'href' => $this->url->link('catalog/product/edit', 'user_token=' . $this->session->data['user_token'] . '&product_id=' . $product['product_id'], true)
);
