Commit 16c4792a authored by Samir Sadyhov's avatar Samir Sadyhov 🤔

канбан-доска - сохранение перед активацией при переносе в финишный статус

parent 2474b848
...@@ -371,9 +371,16 @@ const KanbanBoard = { ...@@ -371,9 +371,16 @@ const KanbanBoard = {
showMessage(i18n.tr('Заполните обязательные поля'), 'error'); showMessage(i18n.tr('Заполните обязательные поля'), 'error');
} else { } else {
Cons.showLoader(); Cons.showLoader();
const activateResult = await appAPI.activateDoc(dataUUID);
Cons.hideLoader(); player.saveFormData(async asfDataId => {
UIkit.modal(dialog).hide(); await appAPI.activateDoc(asfDataId);
Cons.hideLoader();
UIkit.modal(dialog).hide();
}, (status, responseText) => {
console.log('ERROR [saveFormData]', {status, responseText});
throw new Error(responseText);
});
} }
} }
); );
......
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