okzdar Posted November 22, 2017 Share Posted November 22, 2017 1) Столкнулся с такой проблемой, подскажите возможно ли убрать ненужное предложение когда заказ оформлен - смотрите фото . если да то как заранее спасибо. и возможно ли удалить вкладку "Файлы для скачивания" 2) и вторая проблема со Счетом. можно ли как отредактировать счет? для печати .убрать дублирование адреса доставки и адрес оплаты?(адерс доставки и адрес доставки пишет одно и тоже) смотрите фото. и возможно ли добавить на СЧЕТ логотип магазина? заранее всем спасибо не судите строго новичок, все делаю с нуля) Link to comment Share on other sites More sharing options...
glum Posted November 22, 2017 Share Posted November 22, 2017 По первому пункту нужно отредактировать в language файл language/ru-ru/checkout/success.php. По второму во вьюшке mail/order.tpl Link to comment Share on other sites More sharing options...
okzdar Posted November 23, 2017 Author Share Posted November 23, 2017 9 часов назад, glum сказал: По первому пункту нужно отредактировать в language файл language/ru-ru/checkout/success.php это решил спасибо большое. а вот второе не могу понять .. во вьюшке это в : /public_html/catalog/view/theme/default/template/mail и order.tpl ? если да, то что там менять там ничего не понятно одни знаки - вот такого типа: ( <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title><?php echo $title; ?></title> </head> <body style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000;"> <div style="width: 680px;"><a href="<?php echo $store_url; ?>" title="<? ) и т.д и как вставить Логотип, и возможно ли менять цвет текста в этих текстовых файлах ? распишите более развернуто,как и где это делается,огромное вам спасибо. Link to comment Share on other sites More sharing options...
glum Posted November 23, 2017 Share Posted November 23, 2017 Без знаний html,css,php я советовал бы вам обратится в раздел платных услуг Link to comment Share on other sites More sharing options...
Allaur Posted December 16, 2017 Share Posted December 16, 2017 Добрый деньА есть ли вариант вывода фото при печати заказа?/admin/view/template/sale/order_invoice.tplсюда добавил<img src="<?php echo $product['image']; ?>" title="<?php echo $product['name']; ?>" style="float:left;" />Но фото не выводится. Что и где ещё надо добавить? Link to comment Share on other sites More sharing options...
fanatic Posted December 16, 2017 Share Posted December 16, 2017 8 часов назад, Allaur сказал: А есть ли вариант вывода фото при печати заказа? есть 8 часов назад, Allaur сказал: сюда добавил естественно. изображение не передается в шаблон, да и в контроллере его нет. как вариант, без заморочек 1. получить изображение в контроллере $sql = "select image from " . DB_PREFIX . "product where product_id = '".$product['product_id']."'"; $query = $this->db->query($sql); $query_res = $query->row; $image_product = $query_res['image']; 2. передать в шаблон $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); 3. вывести в шаблоне <img src="<?php echo $product['image_link']; ?>"> 1 Link to comment Share on other sites More sharing options... AlexDW Posted December 16, 2017 Share Posted December 16, 2017 как вариант есть такое Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 13 минут назад, AlexDW сказал: как вариант есть такое Посмотрел демку нет там фото при печати заказа 2 часа назад, fanatic сказал: есть естественно. изображение не передается в шаблон, да и в контроллере его нет. как вариант, без заморочек 1. получить изображение в контроллере $sql = "select image from " . DB_PREFIX . "product where product_id = '".$product['product_id']."'"; $query = $this->db->query($sql); $query_res = $query->row; $image_product = $query_res['image']; 2. передать в шаблон $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); 3. вывести в шаблоне <img src="<?php echo $product['image_link']; ?>"> Принял Сейчас буду пробовать, благодарю Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 2 часа назад, fanatic сказал: 2. передать в шаблон $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); Прописал тут /admin/controller/sale/order.php Получил вот такую ошибку Fatal error: Call to a member function resize() on a non-object in /www/site/vqmod/vqcache/vq2-admin_controller_sale_order.php on line 3574 Прошу прощения что немного протупил, сразу не написал. У меня версия 1.5.6, но по фото в заказе нашёл только эту тему потому здесь и отписал. Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 нужно подгрузить модель $this->load->model('tool/image'); перед $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); 1 Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 12 минут назад, Allaur сказал: У меня версия 1.5.6, мои советы для 2.3. Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 1 минуту назад, fanatic сказал: нужно подгрузить модель $this->load->model('tool/image'); Всё отлично встало, Благодарю! Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 Только что, fanatic сказал: мои советы для 2.3. Код идентичный в данном случае. Плюсанул репутацию. Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 p.s. для 1.5.6, тоже должно работать Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content печать счетов By zhizherinv, May 15 1 reply 81 views esculapra May 15 Как печатать счета на разных страницах By zhizherinv, April 10 2 replies 105 views zhizherinv April 11 PDF Счет-фактура - Расходная накладная (Украинская) By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 0 comments 3,624 views Speaker12 April 22, 2022 Модуль PDF Счет-фактура - Расходная накладная (Украинская) [Поддержка] By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 6 replies 1,064 views Speaker12 May 19 PDF Счет-фактура - Расходная накладная - Гарантия (Украинская) PRO By Speaker12, May 14 счет pdf рахунок-фактура (and 5 more) Tagged with: счет pdf рахунок-фактура счет-фактура расходная накладная видаткова накладна pdf українська 0 comments 4,428 views Speaker12 May 14 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 2.x Opencart 2.x: General questions Заказ/Счет Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Language Folders in URL (for ocStore 3.x) By SergeTkach HPMrr for OC 2.3/3 By kJlukOo OpenGram | Your store in Telegram By kevdev PDF Рахунок-фактура - Видаткова накладна - Гарантія (Українська) PRO By Speaker12 SAP - SMS / OTP By S_A_P × Existing user? Sign In Sign Up Shopping section Back Purchased extensions Invoices Whishlist Alternative Contacts Forums News ocStore Back Official site Demo ocStore 3.0.3.2 Demo ocStore 2.3.0.2.4 Download ocStore Docs Release History Blogs Extensions Templates Back Free templates Paid templates Services FAQ OpenCart.Pro Back Demo Buy Compare × Create New... Important Information On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice. I accept
AlexDW Posted December 16, 2017 Share Posted December 16, 2017 как вариант есть такое Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 13 минут назад, AlexDW сказал: как вариант есть такое Посмотрел демку нет там фото при печати заказа 2 часа назад, fanatic сказал: есть естественно. изображение не передается в шаблон, да и в контроллере его нет. как вариант, без заморочек 1. получить изображение в контроллере $sql = "select image from " . DB_PREFIX . "product where product_id = '".$product['product_id']."'"; $query = $this->db->query($sql); $query_res = $query->row; $image_product = $query_res['image']; 2. передать в шаблон $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); 3. вывести в шаблоне <img src="<?php echo $product['image_link']; ?>"> Принял Сейчас буду пробовать, благодарю Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 2 часа назад, fanatic сказал: 2. передать в шаблон $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); Прописал тут /admin/controller/sale/order.php Получил вот такую ошибку Fatal error: Call to a member function resize() on a non-object in /www/site/vqmod/vqcache/vq2-admin_controller_sale_order.php on line 3574 Прошу прощения что немного протупил, сразу не написал. У меня версия 1.5.6, но по фото в заказе нашёл только эту тему потому здесь и отписал. Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 нужно подгрузить модель $this->load->model('tool/image'); перед $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); 1 Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 12 минут назад, Allaur сказал: У меня версия 1.5.6, мои советы для 2.3. Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 1 минуту назад, fanatic сказал: нужно подгрузить модель $this->load->model('tool/image'); Всё отлично встало, Благодарю! Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 Только что, fanatic сказал: мои советы для 2.3. Код идентичный в данном случае. Плюсанул репутацию. Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 p.s. для 1.5.6, тоже должно работать Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content печать счетов By zhizherinv, May 15 1 reply 81 views esculapra May 15 Как печатать счета на разных страницах By zhizherinv, April 10 2 replies 105 views zhizherinv April 11 PDF Счет-фактура - Расходная накладная (Украинская) By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 0 comments 3,624 views Speaker12 April 22, 2022 Модуль PDF Счет-фактура - Расходная накладная (Украинская) [Поддержка] By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 6 replies 1,064 views Speaker12 May 19 PDF Счет-фактура - Расходная накладная - Гарантия (Украинская) PRO By Speaker12, May 14 счет pdf рахунок-фактура (and 5 more) Tagged with: счет pdf рахунок-фактура счет-фактура расходная накладная видаткова накладна pdf українська 0 comments 4,428 views Speaker12 May 14 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 2.x Opencart 2.x: General questions Заказ/Счет Покупателям Оплата дополнений физическими лицами Оплата дополнений юридическими лицами Политика возвратов Разработчикам Регламент размещения дополнений Регламент продаж и поддержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каталога дополнений Урегулирование споров по авторским правам Полезная информация Публичная оферта Политика возвратов Политика конфиденциальности Платежная политика Политика Передачи Персональных Данных Политика прозрачности Последние дополнения Language Folders in URL (for ocStore 3.x) By SergeTkach HPMrr for OC 2.3/3 By kJlukOo OpenGram | Your store in Telegram By kevdev PDF Рахунок-фактура - Видаткова накладна - Гарантія (Українська) PRO By Speaker12 SAP - SMS / OTP By S_A_P
Allaur Posted December 16, 2017 Share Posted December 16, 2017 13 минут назад, AlexDW сказал: как вариант есть такое Посмотрел демку нет там фото при печати заказа 2 часа назад, fanatic сказал: есть естественно. изображение не передается в шаблон, да и в контроллере его нет. как вариант, без заморочек 1. получить изображение в контроллере $sql = "select image from " . DB_PREFIX . "product where product_id = '".$product['product_id']."'"; $query = $this->db->query($sql); $query_res = $query->row; $image_product = $query_res['image']; 2. передать в шаблон $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); 3. вывести в шаблоне <img src="<?php echo $product['image_link']; ?>"> Принял Сейчас буду пробовать, благодарю Link to comment Share on other sites More sharing options...
Allaur Posted December 16, 2017 Share Posted December 16, 2017 2 часа назад, fanatic сказал: 2. передать в шаблон $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); Прописал тут /admin/controller/sale/order.php Получил вот такую ошибку Fatal error: Call to a member function resize() on a non-object in /www/site/vqmod/vqcache/vq2-admin_controller_sale_order.php on line 3574 Прошу прощения что немного протупил, сразу не написал. У меня версия 1.5.6, но по фото в заказе нашёл только эту тему потому здесь и отписал. Link to comment Share on other sites More sharing options...
fanatic Posted December 16, 2017 Share Posted December 16, 2017 нужно подгрузить модель $this->load->model('tool/image'); перед $product_data[] = array( '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']), 'image_link' => $this->model_tool_image->resize( $image_product, 50, 50) ); 1 Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 12 минут назад, Allaur сказал: У меня версия 1.5.6, мои советы для 2.3. Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 1 минуту назад, fanatic сказал: нужно подгрузить модель $this->load->model('tool/image'); Всё отлично встало, Благодарю! Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 Только что, fanatic сказал: мои советы для 2.3. Код идентичный в данном случае. Плюсанул репутацию. Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 p.s. для 1.5.6, тоже должно работать Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content печать счетов By zhizherinv, May 15 1 reply 81 views esculapra May 15 Как печатать счета на разных страницах By zhizherinv, April 10 2 replies 105 views zhizherinv April 11 PDF Счет-фактура - Расходная накладная (Украинская) By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 0 comments 3,624 views Speaker12 April 22, 2022 Модуль PDF Счет-фактура - Расходная накладная (Украинская) [Поддержка] By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 6 replies 1,064 views Speaker12 May 19 PDF Счет-фактура - Расходная накладная - Гарантия (Украинская) PRO By Speaker12, May 14 счет pdf рахунок-фактура (and 5 more) Tagged with: счет pdf рахунок-фактура счет-фактура расходная накладная видаткова накладна pdf українська 0 comments 4,428 views Speaker12 May 14 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 2.x Opencart 2.x: General questions Заказ/Счет
fanatic Posted December 16, 2017 Share Posted December 16, 2017 12 минут назад, Allaur сказал: У меня версия 1.5.6, мои советы для 2.3. Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 1 минуту назад, fanatic сказал: нужно подгрузить модель $this->load->model('tool/image'); Всё отлично встало, Благодарю! Link to comment Share on other sites More sharing options... Allaur Posted December 16, 2017 Share Posted December 16, 2017 Только что, fanatic сказал: мои советы для 2.3. Код идентичный в данном случае. Плюсанул репутацию. Link to comment Share on other sites More sharing options... fanatic Posted December 16, 2017 Share Posted December 16, 2017 p.s. для 1.5.6, тоже должно работать Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0 Go to topic listing Similar Content печать счетов By zhizherinv, May 15 1 reply 81 views esculapra May 15 Как печатать счета на разных страницах By zhizherinv, April 10 2 replies 105 views zhizherinv April 11 PDF Счет-фактура - Расходная накладная (Украинская) By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 0 comments 3,624 views Speaker12 April 22, 2022 Модуль PDF Счет-фактура - Расходная накладная (Украинская) [Поддержка] By Speaker12, April 22, 2022 счет pdf pdf (and 3 more) Tagged with: счет pdf pdf рахунок-фактура видаткова накладна українська 6 replies 1,064 views Speaker12 May 19 PDF Счет-фактура - Расходная накладная - Гарантия (Украинская) PRO By Speaker12, May 14 счет pdf рахунок-фактура (and 5 more) Tagged with: счет pdf рахунок-фактура счет-фактура расходная накладная видаткова накладна pdf українська 0 comments 4,428 views Speaker12 May 14 Recently Browsing 0 members No registered users viewing this page.
Allaur Posted December 16, 2017 Share Posted December 16, 2017 1 минуту назад, fanatic сказал: нужно подгрузить модель $this->load->model('tool/image'); Всё отлично встало, Благодарю! Link to comment Share on other sites More sharing options...
Allaur Posted December 16, 2017 Share Posted December 16, 2017 Только что, fanatic сказал: мои советы для 2.3. Код идентичный в данном случае. Плюсанул репутацию. Link to comment Share on other sites More sharing options...
fanatic Posted December 16, 2017 Share Posted December 16, 2017 p.s. для 1.5.6, тоже должно работать Link to comment Share on other sites More sharing options... Create an account or sign in to comment You need to be a member in order to leave a comment Create an account Sign up for a new account in our community. It's easy! Register a new account Sign in Already have an account? Sign in here. Sign In Now Share More sharing options... Followers 0
Recommended Posts