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
Irina Oleynik
synergy-components
Commits
a1856483
Commit
a1856483
authored
Nov 18, 2019
by
Aigul Baimussayeva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update saveCustomValue
parent
79b3cbda
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
11 deletions
+4
-11
interpreter/saveCustomValue
interpreter/saveCustomValue
+4
-11
No files found.
interpreter/saveCustomValue
View file @
a1856483
/**
* Данны
е скрипт позволяет сохраняет произвольный формат данных в компоненты формы
* Данны
й скрипт позволяет сохранять произвольный формат данных в компоненты формы.
* Зачем это нужно: из коробки в данный момент невозможно сохранить значения компонентов типов ссылка на реестр, ссылка на файл.
* Обойти это органичение можно вызовом метода апи частичного сохранения данных по форме. Ниже приведен пример
* Обойти это органичение можно вызовом метода апи частичного сохранения данных по форме. Ниже приведен пример
:
*/
/**
* Код реестра в котором нужно создать запись
*/
var host = 'http://127.0.0.1:8080/Synergy/rest';
function api_post_form(req, options) {
let client = new org.apache.commons.httpclient.HttpClient();
...
...
@@ -38,7 +33,7 @@ function api_post_form(req, options) {
*/
let cData = [];
/*
сохранение ссылки на документ в текущей записи
*/
/*
задаем значение компонента ссылка на реестр
*/
cData.push({id: "contract_individual", type: "reglink", key:documentID, valueID:documentID});
let saveResponse = api_post_form('/api/asforms/data/merge', {
type: 'POST',
...
...
@@ -52,7 +47,5 @@ function api_post_form(req, options) {
}
)
});
console.error('\n\n\nREGISTRY CREATE RCC ' + registryCode + ' status: ' + JSON.stringify(response) + '\n\n\n');
result = true;
message = '
запись создана
';
message = '
данные сохранены
';
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