Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
synergy-components
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
community
synergy-components
Commits
f796346e
Commit
f796346e
authored
Sep 09, 2022
by
Samir Sadyhov
🤔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add lib appAPI.js
parent
018d6104
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
532 additions
and
0 deletions
+532
-0
constructor/library/appAPI.js
constructor/library/appAPI.js
+532
-0
No files found.
constructor/library/appAPI.js
0 → 100644
View file @
f796346e
this
.
appAPI
=
{
getWorkInfo
:
async
function
(
actionID
){
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/works_by_id?workID=
${
actionID
}
`
,
res
=>
resolve
(
res
[
0
]),
err
=>
{
console
.
log
(
`ERROR [ getWorkInfo ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getCompletionForm
:
async
function
(
completionFormID
){
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/formPlayer/getCompletionForm?completionFormID=
${
completionFormID
}
`
,
res
=>
{
if
(
res
.
errorCode
&&
res
.
errorCode
!=
0
)
{
console
.
log
(
`ERROR [ getCompletionForm ]:
${
JSON
.
stringify
(
res
)}
`
);
resolve
(
null
);
}
else
{
resolve
(
res
);
}
},
err
=>
{
console
.
log
(
`ERROR [ getCompletionForm ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getFormForResult
:
async
function
(
formCode
,
workID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/work/get_form_for_result?formCode=
${
formCode
}
&workID=
${
workID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getFormForResult ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
setProgressWork
:
async
function
(
progress
,
workID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/work/set_progress?progress=
${
progress
}
&workID=
${
workID
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ setProgressWork ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
searchWork
:
async
function
(
value
)
{
const
url
=
`api/workflow/works/list_ext?userID=
${
AS
.
OPTIONS
.
currentUser
.
userid
}
&search=
${
encodeURIComponent
(
value
)}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
;
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
url
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ searchWork ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
finishWork
:
async
function
(
finishWorkBody
){
return
new
Promise
(
async
resolve
=>
{
AS
.
FORMS
.
ApiUtils
.
simpleAsyncPost
(
"
rest/api/workflow/work/set_result
"
,
result
=>
{
if
(
result
.
errorCode
&&
result
.
errorCode
!=
'
0
'
)
{
console
.
log
(
`ERROR [ finishWork ]:
${
JSON
.
stringify
(
result
)}
`
);
resolve
(
null
);
}
else
{
resolve
(
result
);
}
},
null
,
finishWorkBody
,
"
application/x-www-form-urlencoded; charset=UTF-8
"
,
err
=>
{
console
.
log
(
`ERROR [ finishWork ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
//Метод завершает процесс согласования/утверждения/ознакомления
finishProcess
:
async
function
(
data
){
return
new
Promise
(
async
resolve
=>
{
AS
.
FORMS
.
ApiUtils
.
simpleAsyncPost
(
"
rest/api/workflow/finish_process
"
,
result
=>
{
if
(
result
.
errorCode
&&
result
.
errorCode
!=
'
0
'
)
{
console
.
log
(
`ERROR [ finishProcess ]:
${
JSON
.
stringify
(
result
)}
`
);
resolve
(
null
);
}
else
{
resolve
(
result
);
}
},
null
,
data
,
"
application/x-www-form-urlencoded; charset=UTF-8
"
,
err
=>
{
console
.
log
(
`ERROR [ finishProcess ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
createWork
:
async
function
(
body
){
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
url
=
`../Synergy/rest/api/workflow/work/create?locale=
${
AS
.
OPTIONS
.
locale
}
`
;
const
headers
=
new
Headers
();
headers
.
append
(
"
Authorization
"
,
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
))));
headers
.
append
(
"
Content-Type
"
,
"
application/x-www-form-urlencoded; charset=UTF-8
"
);
const
response
=
await
fetch
(
url
,
{
method
:
'
POST
'
,
headers
,
body
});
resolve
(
response
.
json
());
}
catch
(
err
)
{
console
.
log
(
`ERROR [ createWork ]:
${
err
.
message
}
`
);
resolve
({
errorCode
:
666
,
errorMessage
:
err
.
message
});
}
});
},
startRouteWork
:
async
function
(
body
){
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
url
=
`../Synergy/rest/api/workflow/work/start_route?locale=
${
AS
.
OPTIONS
.
locale
}
`
;
const
headers
=
new
Headers
();
headers
.
append
(
"
Authorization
"
,
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
))));
headers
.
append
(
"
Content-Type
"
,
"
application/x-www-form-urlencoded; charset=UTF-8
"
);
const
response
=
await
fetch
(
url
,
{
method
:
'
POST
'
,
headers
,
body
});
resolve
(
response
.
json
());
}
catch
(
err
)
{
console
.
log
(
`ERROR [ startRouteWork ]:
${
err
.
message
}
`
);
resolve
({
errorCode
:
666
,
errorMessage
:
err
.
message
});
}
});
},
getExecutionProcess
:
async
function
(
workID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/get_execution_process?workID=
${
workID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getExecutionProcess ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getProcessInfo
:
async
function
(
workID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/process_info?workID=
${
workID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getProcessInfo ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getWorkDocument
:
async
function
(
actionID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/work/
${
actionID
}
/document`
,
res
=>
resolve
(
res
.
documentID
),
err
=>
{
console
.
log
(
`ERROR [ getWorkDocument ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getAsfDataUUID
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
AS
.
FORMS
.
ApiUtils
.
simpleAsyncGet
(
`rest/api/formPlayer/getAsfDataUUID?documentID=
${
documentID
}
`
,
resolve
,
'
text
'
,
null
,
err
=>
{
console
.
log
(
`ERROR [ getAsfDataUUID ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
}
);
});
},
getDocMeaningContent
:
async
function
(
asfDataUUID
)
{
return
new
Promise
(
async
resolve
=>
{
AS
.
FORMS
.
ApiUtils
.
simpleAsyncGet
(
`rest/api/formPlayer/getDocMeaningContent?asfDataUUID=
${
asfDataUUID
}
`
,
resolve
,
'
text
'
,
null
,
err
=>
{
console
.
log
(
`ERROR [ getDocMeaningContent ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
}
);
});
},
startUpload
:
async
function
()
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/storage/start_upload`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ startUpload ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
uploadPart
:
async
function
(
filePath
,
data
)
{
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
auth
=
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
)));
$
.
ajax
({
url
:
`
${
window
.
location
.
origin
}
/Synergy/rest/api/storage/upload_part?file=
${
encodeURIComponent
(
filePath
)}
`
,
data
:
data
,
cache
:
false
,
contentType
:
false
,
processData
:
false
,
type
:
'
POST
'
,
headers
:
{
"
Authorization
"
:
auth
}
}).
done
(
response
=>
{
resolve
(
response
);
}).
fail
((
jqXHR
,
textStatus
)
=>
{
console
.
log
(
`ERROR uploadPart`
,
textStatus
,
jqXHR
);
resolve
(
false
);
});
}
catch
(
e
)
{
console
.
log
(
`ERROR [ uploadPart ]:
${
e
.
message
}
`
);
resolve
(
false
);
}
});
},
getTranslate
:
async
function
(
value
,
locale
=
AS
.
OPTIONS
.
locale
)
{
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
auth
=
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
)));
const
url
=
`../Synergy/rest/api/formPlayer/translate?value=
${
encodeURIComponent
(
value
)}
&locale=
${
locale
}
`
;
const
response
=
await
fetch
(
url
,
{
method
:
'
GET
'
,
headers
:
{
"
Authorization
"
:
auth
}});
if
(
!
response
.
ok
)
throw
new
Error
(
`HTTP:
${
response
.
status
}
, message:
${
response
.
statusText
}
[
${
response
.
text
()}
]`
);
resolve
(
response
.
text
());
}
catch
(
err
)
{
console
.
log
(
`ERROR [ getTranslate ]:
${
err
.
message
}
`
);
resolve
(
value
);
}
});
},
getTranslateMultiple
:
async
function
(
values
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/formPlayer/translateMultiple?locale=
${
AS
.
OPTIONS
.
locale
}
&value=
${
values
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getTranslateMultiple ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getSystemSettings
:
async
function
()
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/settings/get?locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getSystemSettings ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getSystemLocales
:
async
function
()
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`translation/locales`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getSystemLocales ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDialogInfo
:
async
function
(
type
=
'
WORK
'
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/get_dialog_info?type=
${
type
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getDialogInfo ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getSendWorkInfo
:
async
function
(
params
)
{
return
new
Promise
(
async
resolve
=>
{
const
param
=
$
.
param
({...
params
,
locale
:
AS
.
OPTIONS
.
locale
});
rest
.
synergyGet
(
`api/workflow/send_work_info?
${
param
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getSendWorkInfo ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDefaultParamWork
:
async
function
()
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/work/create_defaults?locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getDefaultParamWork ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getWorkAttachments
:
async
function
(
workID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/work/
${
workID
}
/attachments?locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getWorkAttachments ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getWorkActions
:
async
function
(
workID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/workflow/work_actions?workID=
${
workID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getWorkActions ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
addFileToWork
:
async
function
(
workID
,
fileName
,
filePath
,
path
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyPost
(
`api/workflow/work/
${
workID
}
/attachment/create?locale=
${
AS
.
OPTIONS
.
locale
}
`
,
{
fileName
,
filePath
,
path
},
"
application/x-www-form-urlencoded; charset=UTF-8
"
,
resolve
,
resolve
);
});
},
getFile
:
async
function
(
identifier
,
type
=
'
blob
'
)
{
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
auth
=
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
)));
const
url
=
`../Synergy/rest/api/storage/file/get?identifier=
${
identifier
}
&inline=true`
;
const
response
=
await
fetch
(
url
,
{
method
:
'
GET
'
,
headers
:
{
"
Authorization
"
:
auth
}});
if
(
!
response
.
ok
)
throw
new
Error
(
`HTTP:
${
response
.
status
}
, message:
${
response
.
statusText
}
[
${
response
.
text
()}
]`
);
switch
(
type
)
{
case
'
json
'
:
resolve
(
response
.
json
());
break
;
default
:
resolve
(
response
.
blob
());
}
}
catch
(
err
)
{
console
.
log
(
`ERROR [ getFile ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
false
);
}
});
},
getPdfFile
:
async
function
(
identifier
)
{
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
auth
=
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
)));
const
url
=
`../Synergy/rest/api/storage/pdf/get?identifier=
${
identifier
}
&inline=true`
;
const
response
=
await
fetch
(
url
,
{
method
:
'
GET
'
,
headers
:
{
"
Authorization
"
:
auth
}});
if
(
!
response
.
ok
)
throw
new
Error
(
`HTTP:
${
response
.
status
}
, message:
${
response
.
statusText
}
[
${
response
.
text
()}
]`
);
resolve
(
response
.
blob
());
}
catch
(
err
)
{
console
.
log
(
`ERROR [ getPdfFile ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
false
);
}
});
},
getDocumentRCC
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/docflow/doc/rcc?documentID=
${
documentID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getDocumentRCC ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDocumentInfo
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/docflow/doc/document_info?documentID=
${
documentID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getDocumentInfo ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDoctypes
:
async
function
(
registerID
)
{
return
new
Promise
(
async
resolve
=>
{
let
url
=
`api/docflow/doctypes?locale=
${
AS
.
OPTIONS
.
locale
}
`
;
if
(
registerID
)
url
+=
`®isterID=
${
registerID
}
`
;
rest
.
synergyGet
(
url
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getDoctypes ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getSignList
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/docflow/doc/sign_list?documentID=
${
documentID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getSignList ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getSignListXML
:
async
function
(
docID
,
type
)
{
return
new
Promise
(
async
resolve
=>
{
const
response
=
await
fetch
(
`../Synergy/docsightings?docID=
${
docID
}
&type=
${
type
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
);
const
signxml
=
await
response
.
text
();
resolve
(
UTILS
.
parseSignXML
(
signxml
));
});
},
getDocumentHistory
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
AS
.
FORMS
.
ApiUtils
.
simpleAsyncPost
(
`rest/api/docflow/doc/getDocumentHistory?documentID=
${
documentID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
null
,
null
,
null
,
err
=>
{
console
.
log
(
`ERROR [ getDocumentHistory ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDocHistoryHTML
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
AS
.
FORMS
.
ApiUtils
.
simpleAsyncGet
(
`processhistory?documentID=
${
documentID
}
&QR=null&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
'
text
'
,
null
,
err
=>
{
console
.
log
(
`ERROR [ getDocHistoryHTML ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDocChangesHTML
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
AS
.
FORMS
.
ApiUtils
.
simpleAsyncGet
(
`printdocchanges?documentID=
${
documentID
}
&QR=null&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
'
text
'
,
null
,
err
=>
{
console
.
log
(
`ERROR [ getDocChangesHTML ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDocChanges
:
async
function
(
documentID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/docflow/doc/changes?documentID=
${
documentID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getDocChanges ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getDictionary
:
async
function
(
code
,
getColumns
=
true
,
getItems
=
true
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/dictionaries/
${
code
}
?getColumns=
${
getColumns
}
&getItems=
${
getItems
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getDictionary ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getFileDescription
:
async
function
(
elementID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/storage/description?elementID=
${
elementID
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getFileDescription ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
deleteFile
:
async
function
(
elementID
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyPost
(
`api/storage/remove?locale=
${
AS
.
OPTIONS
.
locale
}
`
,
{
elementID
},
"
application/x-www-form-urlencoded
"
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ deleteFile ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
createCorrespondentOrg
:
async
function
(
name
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyPost
(
`api/docflow/doc/create_correspondent_org`
,
{
name
},
"
application/x-www-form-urlencoded; charset=UTF-8
"
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ createCorrespondentOrg ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
saveRCC
:
async
function
(
data
)
{
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
auth
=
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
)));
const
url
=
`../Synergy/rest/api/docflow/doc/save`
;
const
response
=
await
fetch
(
url
,
{
method
:
'
POST
'
,
headers
:
{
"
Authorization
"
:
auth
,
"
Content-Type
"
:
"
application/json; charset=UTF-8
"
},
body
:
JSON
.
stringify
(
data
)
});
if
(
!
response
.
ok
)
throw
new
Error
(
`HTTP:
${
response
.
status
}
, message:
${
response
.
statusText
}
[
${
response
.
text
()}
]`
);
resolve
(
response
.
json
());
}
catch
(
err
)
{
console
.
log
(
`ERROR [ saveRCC ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
}
});
},
getRegistryList
:
async
function
()
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/registry/list?locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getRegistryList ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
getRegistryInfo
:
async
function
(
registryCode
)
{
return
new
Promise
(
async
resolve
=>
{
rest
.
synergyGet
(
`api/registry/info?code=
${
registryCode
}
&locale=
${
AS
.
OPTIONS
.
locale
}
`
,
resolve
,
err
=>
{
console
.
log
(
`ERROR [ getRegistryInfo ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
});
});
},
mergeFormData
:
async
function
(
data
)
{
return
new
Promise
(
async
resolve
=>
{
try
{
const
{
login
,
password
}
=
Cons
.
creds
;
const
auth
=
"
Basic
"
+
btoa
(
unescape
(
encodeURIComponent
(
`
${
login
}
:
${
password
}
`
)));
const
url
=
`../Synergy/rest/api/asforms/data/merge`
;
const
response
=
await
fetch
(
url
,
{
method
:
'
POST
'
,
headers
:
{
"
Authorization
"
:
auth
,
"
Content-Type
"
:
"
application/json; charset=UTF-8
"
},
body
:
JSON
.
stringify
(
data
)
});
if
(
!
response
.
ok
)
throw
new
Error
(
`HTTP:
${
response
.
status
}
, message:
${
response
.
statusText
}
[
${
response
.
text
()}
]`
);
resolve
(
response
.
json
());
}
catch
(
err
)
{
console
.
log
(
`ERROR [ mergeFormData ]:
${
JSON
.
stringify
(
err
)}
`
);
resolve
(
null
);
}
});
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment