[SimpleFLE] Logging fix

这个提交包含在:
Andreas 2023-10-27 12:35:07 +02:00
父节点 fe640da777
当前提交 5cb67b0ca9

查看文件

@ -661,6 +661,17 @@ $(".js-save-to-log").click(function () {
var mode = item[5];
var freq_display = item[3];
qsoList.forEach((item) => {
var callsign = item[2];
var rst_rcvd = item[7];
var rst_sent = item[6];
var start_date = item[0];
var start_time = item[1][0] +item[1][1] + ":" + item[1][2] + item[1][3];
var band = item[4];
var mode = item[5];
var freq_display = item[3];
var station_profile = $(".station_id").val();
$.ajax({
url: base_url + "index.php/qso/saveqso",
type: "post",
@ -672,18 +683,11 @@ $(".js-save-to-log").click(function () {
band: band,
mode: mode,
freq_display: freq_display,
start_time: start_time,
station_profile: station_profile,
},
success: function (debugCreateQSO) {
console.log("QSO Data:", {
callsign: callsign,
rst_rcvd: rst_rcvd,
rst_sent: rst_sent,
start_date: start_date,
band: band,
mode: mode,
freq_display: freq_display,
success: function (result) {},
});
}
});
});