$(document).ready(function() {
$("#cost_analice_form_submit-edit").click(function(event){
event.preventDefault();
var formdata = $("#cost_analice_form").serialize();
var cost;
$.ajax({
method: "POST",
url: "/engine/classes/WebAppRaiser/ajax/cost_analise.php",
data: formdata,
success: function(data) {
const response = JSON.parse(data);
console.log(response);
if(response.status == 'error'){
alert(response.msg);
$("#cost_analice_form_submit-edit").html('Расчитать стоимость');
}
else {
$("#cost_analice_form_submit-edit").html('Расчитать стоимость');
var calculated = response.result['calculatedObjectValue'];
var calculated_text = new Intl.NumberFormat("ru-RU", { style: "currency", currency: "RUB" }).format(calculated,);
$("#cost_analice_button").parent().parent().append('