Files
2025-05-12 15:45:17 +00:00

25 lines
430 B
JavaScript
Executable File

var startCode;
$(document).ready(function () {
startCode = $('#code').val();
if ($('#code').val() == '') {
$('#code').val(genereteCode());
}
});
function genereteCode() {
var code;
$.ajax({
type: "POST",
url: "index.php?module=EcmProducts&action=indeksIncrement&to_pdf=1",
dataType: "json",
async: false,
data: {
job: "generateCode",
},
success: function (data) {
code = data;
}
});
return code;
}