update Do 6. Feb 20:31:01 CET 2020

This commit is contained in:
Robert Richter 2020-02-06 20:31:01 +01:00
parent 22a3a6a9ce
commit 99037cc6ed

View File

@ -605,12 +605,11 @@ module.exports = function(db, async, app_cfg) {
};*/
function db_save_response(waip_id, responseobj, callback) {
//console.log(waip_id,responseobj);
db.run((`INSERT INTO waip_response
(waip_einsaetze_id, response_json)
VALUES (
\'` + waip_id + `\',
\'` + 'responseobj' + `\')`), function(err) {
\'` + JSON.stringify(responseobj) + `\')`), function(err) {
console.log(err);
if (err == null) {
callback && callback('OK');