Commit 4cf3f981 authored by Elizaveta Kakhovskaya's avatar Elizaveta Kakhovskaya

Update Q3_massoperation

parent f052689e
...@@ -5,18 +5,29 @@ ...@@ -5,18 +5,29 @@
Имена компонентов должны быть сформированы по примеру: `itsm_form_incident_type` Имена компонентов должны быть сформированы по примеру: `itsm_form_incident_type`
.. figure:: _static/Q3_massopertion_1.png
Рис.
2. Добавить эти же поля на форму "Операции над выборкой" 2. Добавить эти же поля на форму "Операции над выборкой"
Имена компонентов должны быть сформированы по примеру: `itsm_form_incidents_operation_type` Имена компонентов должны быть сформированы по примеру: `itsm_form_incidents_operation_type`
3. В скрипт формы "Операции над выборкой" 3. В скрипт компонента статуса в форме "Операции над выборкой"
view.playerView.getViewWithId('itsm_form_incidents_operation_servicelink').setVisible(val==2); view.playerView.getViewWithId('itsm_form_incidents_operation_servicelink').setVisible(val==2);
view.playerView.getViewWithId('itsm_form_incidents_operation_type').setVisible(val==2); view.playerView.getViewWithId('itsm_form_incidents_operation_type').setVisible(val==2);
*Прим. В val==2 - указывается код нужного вам статуса* *Прим. В val==2 - указывается код нужного вам статуса*
.. figure:: _static/Q3_massopertion_2.png
Рис.
4. В скрипт `event.blocking.interpreter.incidents.operation` 4. В скрипт `event.blocking.interpreter.incidents.operation`
в раздел try добавить в раздел try добавить
...@@ -24,6 +35,10 @@ ...@@ -24,6 +35,10 @@
let operation_type = jSynergy.server.getValue('itsm_form_incidents_operation_type'); let operation_type = jSynergy.server.getValue('itsm_form_incidents_operation_type');
let operation_servicelink = jSynergy.server.getValue('itsm_form_incidents_operation_servicelink'); let operation_servicelink = jSynergy.server.getValue('itsm_form_incidents_operation_servicelink');
.. figure:: _static/Q3_massopertion_3.png
Рис.
и там же в раздел нужного статуса добавить: и там же в раздел нужного статуса добавить:
jSynergy.server.setValue('itsm_form_incident_type',{ jSynergy.server.setValue('itsm_form_incident_type',{
...@@ -37,3 +52,6 @@ ...@@ -37,3 +52,6 @@
}); });
.. figure:: _static/Q3_massopertion_4.png
Рис.
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment