From 62f92b5dde152855638dd0de8d89e2ef19a61a7a Mon Sep 17 00:00:00 2001 From: Grisha Pomadchin Date: Thu, 25 Jul 2013 18:15:24 +0400 Subject: [PATCH] general fixes; +handle server error on step3 installation; --- intaro.intarocrm/install/step3.php | 9 +++++++++ intaro.intarocrm/install/version.php | 2 +- intaro.intarocrm/lang/ru/install/step3.php | 3 ++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/intaro.intarocrm/install/step3.php b/intaro.intarocrm/install/step3.php index b58fb1fc..956ff73c 100755 --- a/intaro.intarocrm/install/step3.php +++ b/intaro.intarocrm/install/step3.php @@ -73,6 +73,8 @@ IncludeModuleLangFile(__FILE__); $(document).ready(function() { var globStop = false; + $('#percent').width($('.instal-progress-bar-outer').width()); + $(window).resize(function(){ // strechin progress bar $('#percent').width($('.instal-progress-bar-outer').width()); }); @@ -111,6 +113,13 @@ IncludeModuleLangFile(__FILE__); orderUpload(response.finish); // wait until next response + }, + error: function () { + $('input[name="inst"]').css('opacity', '1').removeAttr('disabled'); + $('input[name="stop"]').attr('name', 'start'); + $('input[name="stop"]').attr('value', ''); + $('#status').text(''); + globStop = true; } }); } diff --git a/intaro.intarocrm/install/version.php b/intaro.intarocrm/install/version.php index a7dcb4fb..47b89181 100755 --- a/intaro.intarocrm/install/version.php +++ b/intaro.intarocrm/install/version.php @@ -1,5 +1,5 @@ '0.3.6', - 'VERSION_DATE' => '2013-07-25 16:55:00', + 'VERSION_DATE' => '2013-07-25 18:14:00', ); diff --git a/intaro.intarocrm/lang/ru/install/step3.php b/intaro.intarocrm/lang/ru/install/step3.php index a4762583..7a867a9a 100755 --- a/intaro.intarocrm/lang/ru/install/step3.php +++ b/intaro.intarocrm/lang/ru/install/step3.php @@ -4,8 +4,9 @@ $MESS ['MESS_1'] = 'Нажмите кнопку для экспорта офор $MESS ['MESS_2'] = 'Экспорт...'; $MESS ['MESS_3'] = 'Экспорт заказов успешно завершён.'; $MESS ['MESS_4'] = 'Экспорт заказов приостановлен.'; +$MESS ['MESS_5'] = 'Произошла ошибка сервера, обратитесь в Интаро Софт.'; $MESS ['STOP'] = 'Приостановить выгрузку'; $MESS ['START_1'] = 'Начать выгрузку'; $MESS ['START_2'] = 'Приостановить выгрузку'; -$MESS ['START_3'] = 'Вообновить выгрузку'; +$MESS ['START_3'] = 'Возобновить выгрузку'; $MESS ['MOD_NEXT_STEP'] = 'Завершить установку'; \ No newline at end of file