Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 443 | Rev 445 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 443 Rev 444
Línea 399... Línea 399...
399
        }).fail(function(jqXHR, textStatus, errorThrown) {
399
        }).fail(function(jqXHR, textStatus, errorThrown) {
400
            $.fn.showError(textStatus);
400
            $.fn.showError(textStatus);
401
        });
401
        });
402
    });
402
    });
403
    $('button.btn-form-save-close').click(function(e) {
403
    $('button.btn-form-save-close').click(function(e) {
404
        var formContinue = parseInt($('#form-main #form-continue').val());
404
        var formContinue = parseFloat($('#form-main #form-continue').val());
405
        var data = {
405
        var data = {
406
            'status': $('#form-main #form-status').val(),
406
            'status': $('#form-main #form-status').val(),
407
            'content': JSON.stringify(objFormGenerator.sections)
407
            'content': JSON.stringify(objFormGenerator.sections)
408
        }
408
        }
409
        $.ajax({
409
        $.ajax({
Línea 468... Línea 468...
468
            ptos = question_value ? question_value : 0;
468
            ptos = question_value ? question_value : 0;
469
        } else {
469
        } else {
470
            if (type == 'multiple') {
470
            if (type == 'multiple') {
471
                options.map((opt) => {
471
                options.map((opt) => {
472
                    if (answer.includes(opt.slug_option)) {
472
                    if (answer.includes(opt.slug_option)) {
473
                        ptos += parseInt(opt.value);
473
                        ptos += parseFloat(opt.value);
474
                    }
474
                    }
475
                })
475
                })
476
            } else {
476
            } else {
477
                options.map((opt) => {
477
                options.map((opt) => {
478
                    if (opt.slug_option == answer) {
478
                    if (opt.slug_option == answer) {
479
                        ptos = parseInt(opt.value);
479
                        ptos = parseFloat(opt.value);
480
                    }
480
                    }
481
                });
481
                });
482
            }
482
            }
483
        }
483
        }
484
        return  parseInt(ptos) + '/' + parseInt(value);
484
        return  parseFloat(ptos) + '/' + parseFloat(value);
485
    }
485
    }
486
    /**
486
    /**
487
     * Remove Html Tags
487
     * Remove Html Tags
488
     */
488
     */
489
    const removeTags = (str) => str.toString().replace(/(<([^>]+)>)/ig, '')
489
    const removeTags = (str) => str.toString().replace(/(<([^>]+)>)/ig, '')