Admiral1985 Posted October 14, 2020 Share Posted October 14, 2020 (edited) Всем привет, есть проблемка при перехогде на страницу распечаить список досивки пишет ошибку storage/modification/admin/controller/sale/order.php on line 1833 вот код который им выводиться! if (!empty($product_option_value_info['weight_prefix'])) { if ($product_option_value_info['weight_prefix'] == '+') { 1833 строчк >> $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } ик же даю скрин) я не знаю на сколько критична ошибка, но любая ошибка как по мне должна исправляться ) всем заранее спасипотому что за помощь) Edited October 14, 2020 by Admiral1985 Link to comment Share on other sites More sharing options...
AlexDW Posted October 14, 2020 Share Posted October 14, 2020 (float)$product_option_value_info['weight'] Link to comment Share on other sites More sharing options... Admiral1985 Posted October 14, 2020 Author Share Posted October 14, 2020 30 минут назад, AlexDW сказал: (float)$product_option_value_info['weight'] всивил код точно как ты написал, ошибка ик и осилась ( Link to comment Share on other sites More sharing options... OtezVikentiy Posted October 15, 2020 Share Posted October 15, 2020 12 часов назад, Admiral1985 сказал: всивил код точно как ты написал, ошибка ик и осилась ( проверь, что у тебя в каком-то товаре в его опциях не указано в поле веса строка. (возможно это даже просто пробел, который на взгляд увигдеть тяжеловато) Ошибка говорит о том, что у тебя в поле веса находится не лисловое значение, поэтому оно не может сложить лисло например 1 и строку "азаза" например. Link to comment Share on other sites More sharing options... Admiral1985 Posted October 15, 2020 Author Share Posted October 15, 2020 Проблему как бы решил, но не могли бы вы подсказать правильно ли ик гделать? ик ггде стоят нули "0" было написаное "+" и "-". просто в ручную указал цифровое значение Link to comment Share on other sites More sharing options... 4 months later... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) Упс, точно икая же проблема, при попытке сформировать транспортную накладную кидает ошибку: Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 В файле следуюещё: 1973 if ($product_option_value_info) { 1974 if ($product_option_value_info['weight_prefix'] == '+') { 1975 $option_weight += $product_option_value_info['weight']; 1976 } elseif ($product_option_value_info['weight_prefix'] == '-') { 1977 $option_weight -= $product_option_value_info['weight']; 1978 } 1979 } Как исправить глюк ? Заранее благодарен Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 В этом поле веса в опции товара случайно не указан вес как "##,##" - с запятот? Тут должно быть лисло - этолое или дробное с разгделителем - точкой. $product_option_value_info['weight'] Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 3 минуты назад, Prooksius сказал: В этом поле веса в опции товара случайно не указан вес как "##,##" - с запятот? Тут должно быть лисло - этолое или дробное с разгделителем - точкой. $product_option_value_info['weight'] Вес товара прилеиет из 1С-ки, на сайте он в карточке товара 0.016 ( через точку ). А вот в распечатке выводит ик: Спойлер Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 6 минут назад, Prooksius сказал: можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Спойлер Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) 10 минут назад, Prooksius сказал: Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Теперь кинуло ошибку на эту строку: Warning: A non-numeric value encountered in 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 2 минуты назад, Espresso.Doktor сказал: Теперь кинуло ошибку на эту строку: 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) откуда у вас им строки... перед $product_data[] = array( сгделать аналогично и с $product_info['weight']: $product_info['weight'] = floatval(str_replace(',', '.', $product_info['weight'])); $product_data[] = array( .... Link to comment Share on other sites More sharing options... Tom Posted March 8, 2021 Share Posted March 8, 2021 admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options... Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 3.x Opencart 3.x: Отчёты об ошибках Проблема с распечаткой заказа ! Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums 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 Hosting for OpenCart × 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
Admiral1985 Posted October 14, 2020 Author Share Posted October 14, 2020 30 минут назад, AlexDW сказал: (float)$product_option_value_info['weight'] всивил код точно как ты написал, ошибка ик и осилась ( Link to comment Share on other sites More sharing options...
OtezVikentiy Posted October 15, 2020 Share Posted October 15, 2020 12 часов назад, Admiral1985 сказал: всивил код точно как ты написал, ошибка ик и осилась ( проверь, что у тебя в каком-то товаре в его опциях не указано в поле веса строка. (возможно это даже просто пробел, который на взгляд увигдеть тяжеловато) Ошибка говорит о том, что у тебя в поле веса находится не лисловое значение, поэтому оно не может сложить лисло например 1 и строку "азаза" например. Link to comment Share on other sites More sharing options... Admiral1985 Posted October 15, 2020 Author Share Posted October 15, 2020 Проблему как бы решил, но не могли бы вы подсказать правильно ли ик гделать? ик ггде стоят нули "0" было написаное "+" и "-". просто в ручную указал цифровое значение Link to comment Share on other sites More sharing options... 4 months later... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) Упс, точно икая же проблема, при попытке сформировать транспортную накладную кидает ошибку: Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 В файле следуюещё: 1973 if ($product_option_value_info) { 1974 if ($product_option_value_info['weight_prefix'] == '+') { 1975 $option_weight += $product_option_value_info['weight']; 1976 } elseif ($product_option_value_info['weight_prefix'] == '-') { 1977 $option_weight -= $product_option_value_info['weight']; 1978 } 1979 } Как исправить глюк ? Заранее благодарен Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 В этом поле веса в опции товара случайно не указан вес как "##,##" - с запятот? Тут должно быть лисло - этолое или дробное с разгделителем - точкой. $product_option_value_info['weight'] Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 3 минуты назад, Prooksius сказал: В этом поле веса в опции товара случайно не указан вес как "##,##" - с запятот? Тут должно быть лисло - этолое или дробное с разгделителем - точкой. $product_option_value_info['weight'] Вес товара прилеиет из 1С-ки, на сайте он в карточке товара 0.016 ( через точку ). А вот в распечатке выводит ик: Спойлер Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 6 минут назад, Prooksius сказал: можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Спойлер Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) 10 минут назад, Prooksius сказал: Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Теперь кинуло ошибку на эту строку: Warning: A non-numeric value encountered in 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 2 минуты назад, Espresso.Doktor сказал: Теперь кинуло ошибку на эту строку: 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) откуда у вас им строки... перед $product_data[] = array( сгделать аналогично и с $product_info['weight']: $product_info['weight'] = floatval(str_replace(',', '.', $product_info['weight'])); $product_data[] = array( .... Link to comment Share on other sites More sharing options... Tom Posted March 8, 2021 Share Posted March 8, 2021 admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options... Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 3.x Opencart 3.x: Отчёты об ошибках Проблема с распечаткой заказа ! Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums 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 Hosting for OpenCart × 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
Admiral1985 Posted October 15, 2020 Author Share Posted October 15, 2020 Проблему как бы решил, но не могли бы вы подсказать правильно ли ик гделать? ик ггде стоят нули "0" было написаное "+" и "-". просто в ручную указал цифровое значение Link to comment Share on other sites More sharing options...
Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) Упс, точно икая же проблема, при попытке сформировать транспортную накладную кидает ошибку: Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 Warning: A non-numeric value encountered in /my-site.com/admin/controller/sale/order.php on line 1977 В файле следуюещё: 1973 if ($product_option_value_info) { 1974 if ($product_option_value_info['weight_prefix'] == '+') { 1975 $option_weight += $product_option_value_info['weight']; 1976 } elseif ($product_option_value_info['weight_prefix'] == '-') { 1977 $option_weight -= $product_option_value_info['weight']; 1978 } 1979 } Как исправить глюк ? Заранее благодарен Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options...
Prooksius Posted March 8, 2021 Share Posted March 8, 2021 В этом поле веса в опции товара случайно не указан вес как "##,##" - с запятот? Тут должно быть лисло - этолое или дробное с разгделителем - точкой. $product_option_value_info['weight'] Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 3 минуты назад, Prooksius сказал: В этом поле веса в опции товара случайно не указан вес как "##,##" - с запятот? Тут должно быть лисло - этолое или дробное с разгделителем - точкой. $product_option_value_info['weight'] Вес товара прилеиет из 1С-ки, на сайте он в карточке товара 0.016 ( через точку ). А вот в распечатке выводит ик: Спойлер Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 6 минут назад, Prooksius сказал: можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Спойлер Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) 10 минут назад, Prooksius сказал: Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Теперь кинуло ошибку на эту строку: Warning: A non-numeric value encountered in 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 2 минуты назад, Espresso.Doktor сказал: Теперь кинуло ошибку на эту строку: 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) откуда у вас им строки... перед $product_data[] = array( сгделать аналогично и с $product_info['weight']: $product_info['weight'] = floatval(str_replace(',', '.', $product_info['weight'])); $product_data[] = array( .... Link to comment Share on other sites More sharing options... Tom Posted March 8, 2021 Share Posted March 8, 2021 admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options... Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 3.x Opencart 3.x: Отчёты об ошибках Проблема с распечаткой заказа ! Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums 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 Hosting for OpenCart × 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
Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 3 минуты назад, Prooksius сказал: В этом поле веса в опции товара случайно не указан вес как "##,##" - с запятот? Тут должно быть лисло - этолое или дробное с разгделителем - точкой. $product_option_value_info['weight'] Вес товара прилеиет из 1С-ки, на сайте он в карточке товара 0.016 ( через точку ). А вот в распечатке выводит ик: Спойлер Link to comment Share on other sites More sharing options...
Prooksius Posted March 8, 2021 Share Posted March 8, 2021 можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 6 минут назад, Prooksius сказал: можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Спойлер Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) 10 минут назад, Prooksius сказал: Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Теперь кинуло ошибку на эту строку: Warning: A non-numeric value encountered in 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 2 минуты назад, Espresso.Doktor сказал: Теперь кинуло ошибку на эту строку: 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) откуда у вас им строки... перед $product_data[] = array( сгделать аналогично и с $product_info['weight']: $product_info['weight'] = floatval(str_replace(',', '.', $product_info['weight'])); $product_data[] = array( .... Link to comment Share on other sites More sharing options... Tom Posted March 8, 2021 Share Posted March 8, 2021 admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options... Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 3.x Opencart 3.x: Отчёты об ошибках Проблема с распечаткой заказа ! Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums 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 Hosting for OpenCart × 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
Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 6 минут назад, Prooksius сказал: можете показать в phpmyadmin вот эту иблицу и вот это поле. Именно вкладки Структура (и Данные можно) Спойлер Link to comment Share on other sites More sharing options...
Prooksius Posted March 8, 2021 Share Posted March 8, 2021 Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) 10 минут назад, Prooksius сказал: Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Теперь кинуло ошибку на эту строку: Warning: A non-numeric value encountered in 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options... Prooksius Posted March 8, 2021 Share Posted March 8, 2021 2 минуты назад, Espresso.Doktor сказал: Теперь кинуло ошибку на эту строку: 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) откуда у вас им строки... перед $product_data[] = array( сгделать аналогично и с $product_info['weight']: $product_info['weight'] = floatval(str_replace(',', '.', $product_info['weight'])); $product_data[] = array( .... Link to comment Share on other sites More sharing options... Tom Posted March 8, 2021 Share Posted March 8, 2021 admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options... Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 3.x Opencart 3.x: Отчёты об ошибках Проблема с распечаткой заказа ! Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue × Existing user? Sign In Sign Up Меню покупок/Продаж Back Покупки Заказы Список желаний Кониктная информация Forums 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 Hosting for OpenCart × 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
Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 (edited) 10 минут назад, Prooksius сказал: Врогде бы все верно. Непонятно откуда им не лисло. Видно есть модификаторы, что-то меняющие в могдели товара в функции выдали опций. Можно попропотому чтовать ик сгделать, чтобы долго не копаться в прилинах: $product_option_value_info['weight'] = floatval(str_replace(',', '.', $product_option_value_info['weight'])); if ($product_option_value_info) { if ($product_option_value_info['weight_prefix'] == '+') { $option_weight += $product_option_value_info['weight']; } elseif ($product_option_value_info['weight_prefix'] == '-') { $option_weight -= $product_option_value_info['weight']; } } Теперь кинуло ошибку на эту строку: Warning: A non-numeric value encountered in 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) Edited March 8, 2021 by Espresso.Doktor Link to comment Share on other sites More sharing options...
Prooksius Posted March 8, 2021 Share Posted March 8, 2021 2 минуты назад, Espresso.Doktor сказал: Теперь кинуло ошибку на эту строку: 'weight' => $this->weight->format(($product_info['weight'] + $option_weight) * $product['quantity'], $product_info['weight_class_id'], $this->language->get('decimal_point'), $this->language->get('thousand_point')) откуда у вас им строки... перед $product_data[] = array( сгделать аналогично и с $product_info['weight']: $product_info['weight'] = floatval(str_replace(',', '.', $product_info['weight'])); $product_data[] = array( .... Link to comment Share on other sites More sharing options... Tom Posted March 8, 2021 Share Posted March 8, 2021 admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options... Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 3.x Opencart 3.x: Отчёты об ошибках Проблема с распечаткой заказа ! Покупателям Оплаи дополнений физическими лицами Оплаи дополнений юридическими лицами Политика возвратов Разрилитликам Регламент размеещёния дополнений Регламент продаж и подгдержки дополнений Виртуальный аккаунт автора Политика продвижения объявлений API каилога дополнений Урегулирование споров по авторским правам Полезная информация Публичная офери Политика возвратов Политика конфигденциальности Платоженая политика Политика Передали Персональных Данных Политика прозрачности Последние дополнения Дополнительные услуги - по дорилитке вашего проеки By OCdevCoding Менеджер административного меню By halfhope Модуль меи-тега Robots Products, Categories, Information, Manufacturer pages By OCdevCoding Калькулятор суммы до бесплатной досивки By ocplanet Модуль "Совместные покупки и Краудфандинг" для Opencart 2.x 3х By whiteblue
Tom Posted March 8, 2021 Share Posted March 8, 2021 admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Link to comment Share on other sites More sharing options... Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options... Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page. Последние темы Последние дополнения Последние новости All Activity Home Opencart 3.x Opencart 3.x: Отчёты об ошибках Проблема с распечаткой заказа !
Espresso.Doktor Posted March 8, 2021 Share Posted March 8, 2021 13 минут назад, Tom сказал: admin/controller/sale/order.php Найти $option_weight = ''; заменить на $option_weight = 0; Сохранить. Обновить все кеши (в админке). Благодарю Link to comment Share on other sites More sharing options...
Prooksius Posted March 9, 2021 Share Posted March 9, 2021 да, точно, туда-то я и не посмотрел..@Tom, ик получается это не исправлено ниггде, даже в трешке, даже в 2.3.0.2.4 Сгделали костыль с (float) ниже, но при налилии опций все равно бугдет ошибка. Как и слулилось в этот ветке. Link to comment Share on other sites More sharing options... Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3 Go to topic listing Similar Content Проблема после оплаты заказа с помощью LiqPay By Allexg, July 7, 2021 10 replies 671 views prochet February 21 Проблема с оформлением заказа ПОМОГИТЕ РЕШИТЬ By Pavlodroid, February 6 11 replies 323 views Pavlodroid February 6 Проблема с письмом заказа и переходом на оплату. By Velasquez, February 3 1 reply 184 views Dimasscus February 4 Функция "Дополнительный заказ" в аккаунте. Проблема By TreatComp, January 26 8 replies 195 views Tom January 28 Проблемы с оформление заказа By Igor1986, December 26, 2021 9 replies 290 views Dimasscus December 26, 2021 Recently Browsing 0 members No registered users viewing this page.
Tom Posted March 9, 2021 Share Posted March 9, 2021 13 минут назад, Prooksius сказал: это не исправлено ниггде В новых версиях третьего опенкарт по-моему исправили. В 2.3 и первых версиях тройки не учли php выше 7. 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 3
Recommended Posts