Skip to content

Commit

Permalink
2.9.11: ????????? ?????? ??????? ??? ?????????? ??????? ????? ??? ???…
Browse files Browse the repository at this point in the history
…?????
  • Loading branch information
diev committed Mar 29, 2016
1 parent feec1e9 commit 794bd3a
Showing 1 changed file with 30 additions and 22 deletions.
52 changes: 30 additions & 22 deletions SVKTrans.hta
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
selection="no"
contextMenu="no"
singleinstance="yes"
version="2.9.10"
version="2.9.11"
author="mozers™"
email="mozers@mail.ru"
icq="256106175"
coauthor="Dmitrii Evdokimov, diev@mail.ru"
/>
<style type="text/css">
body, table {font-family:MS Sans Serif; font-size:8pt; background-color:threedface; overflow:hidden;}
Expand Down Expand Up @@ -517,27 +518,34 @@ function Connect() {

// Проверка наличия исходящих сообщений
function CheckOutbox() {
if (INI.Paths.pay_out) {
if (FSO.GetFolder(INI.Paths.pay_out).Files.Count > 0) return true;
}
if (INI.Paths.pay_test_out) {
if (FSO.GetFolder(INI.Paths.pay_test_out).Files.Count > 0) return true;
}
if (INI.Paths.stat_info_out) {
if (FSO.GetFolder(INI.Paths.stat_info_out).Files.Count > 0) return true;
}
if (INI.Paths.expl_info_out) {
if (FSO.GetFolder(INI.Paths.expl_info_out).Files.Count > 0) return true;
}
if (INI.Paths.lic_info_out) {
if (FSO.GetFolder(INI.Paths.lic_info_out).Files.Count > 0) return true;
}
if (INI.Paths.otzi_info_out) {
if (FSO.GetFolder(INI.Paths.otzi_info_out).Files.Count > 0) return true;
}
if (INI.Paths.upsir_info_out) {
if (FSO.GetFolder(INI.Paths.upsir_info_out).Files.Count > 0) return true;
}
if ((INI.Paths.pay_out)
&& (FSO.FolderExists(INI.Paths.pay_out))
&& (FSO.GetFolder(INI.Paths.pay_out).Files.Count > 0))
return true;
if ((INI.Paths.pay_test_out)
&& (FSO.FolderExists(INI.Paths.pay_test_out))
&& (FSO.GetFolder(INI.Paths.pay_test_out).Files.Count > 0))
return true;
if ((INI.Paths.stat_info_out)
&& (FSO.FolderExists(INI.Paths.stat_info_out))
&& (FSO.GetFolder(INI.Paths.stat_info_out).Files.Count > 0))
return true;
if ((INI.Paths.expl_info_out)
&& (FSO.FolderExists(INI.Paths.expl_info_out))
&& (FSO.GetFolder(INI.Paths.expl_info_out).Files.Count > 0))
return true;
if ((INI.Paths.lic_info_out)
&& (FSO.FolderExists(INI.Paths.lic_info_out))
&& (FSO.GetFolder(INI.Paths.lic_info_out).Files.Count > 0))
return true;
if ((INI.Paths.otzi_info_out)
&& (FSO.FolderExists(INI.Paths.otzi_info_out))
&& (FSO.GetFolder(INI.Paths.otzi_info_out).Files.Count > 0))
return true;
if ((INI.Paths.upsir_info_out)
&& (FSO.FolderExists(INI.Paths.upsir_info_out))
&& (FSO.GetFolder(INI.Paths.upsir_info_out).Files.Count > 0))
return true;
return false;
}

Expand Down

0 comments on commit 794bd3a

Please sign in to comment.