ModuleClientFunctions.cs
1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
using System.Collections.Generic;
using System.Linq;
using Sungero.Core;
using Sungero.CoreEntities;
namespace Sungero.ExchangeCore.Client
{
public class ModuleFunctions
{
/// <summary>
/// Запуск фонового процесса "Электронный обмен. Синхронизация абонентских ящиков".
/// </summary>
public static void SyncBoxes()
{
Functions.Module.Remote.RequeueBoxSync();
}
/// <summary>
/// Запуск фонового процесса "Электронный обмен. Синхронизация контрагентов".
/// </summary>
public static void SyncCounterparties()
{
Functions.Module.Remote.RequeueCounterpartySync();
}
#region Сайт
/// <summary>
/// Перейти на сайт.
/// </summary>
/// <param name="website">Адрес сайта.</param>
/// <param name="e">Аргумент события.</param>
public static void GoToWebsite(string website, Sungero.Domain.Client.ExecuteActionArgs e)
{
website = website.ToLower();
if (!(website.StartsWith("http://") || website.StartsWith("https://")))
{
website = "http://" + website;
}
try
{
Hyperlinks.Open(website);
}
catch
{
e.AddError(Resources.WrongWebsite);
}
}
/// <summary>
/// Проверить возможность перейти на сайт.
/// </summary>
/// <param name="website">Адрес сайта.</param>
/// <returns>Возможность перейти на сайт.</returns>
public static bool CanGoToWebsite(string website)
{
return !string.IsNullOrWhiteSpace(website);
}
#endregion
}
}