You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
18 lines
565 B
Plaintext
Vendored
18 lines
565 B
Plaintext
Vendored
URL = FunctionParameters["Bitrix24_URL"];
|
|
TaskID = FunctionParameters["Bitrix24_ElapsedTaskID"];
|
|
|
|
Time = 3600;
|
|
|
|
Result = OPI_Bitrix24.AddTaskTimeAccounting(URL, TaskID, Time);
|
|
|
|
URL = FunctionParameters["Bitrix24_Domain"];
|
|
Token = FunctionParameters["Bitrix24_Token"];
|
|
|
|
Text = "Time spent on work";
|
|
UserID = 10;
|
|
Time = 7200;
|
|
SetupDate = AddMonth(OPI_Tools.GetCurrentDate(), -1);
|
|
|
|
Result = OPI_Bitrix24.AddTaskTimeAccounting(URL, TaskID, Time, UserID, Text, SetupDate,
|
|
Token);
|